]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/mb-inline.exp
run copyright.sh for 2011.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / mb-inline.exp
CommitLineData
7b6bb8da 1# Copyright 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
776592bf
DE
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# This file is part of the gdb testsuite.
17
18# This test verifies that setting breakpoint on line in inline
19# function will fire in all instantiations of that function.
20
21if $tracelevel then {
22 strace $tracelevel
23}
24
25if { [skip_cplus_tests] } { continue }
26
776592bf
DE
27
28set testfile "mb-inline"
29set hdrfile "${testfile}.h"
30set srcfile1 "${testfile}1.cc"
31set objfile1 "${testfile}1.o"
32set srcfile2 "${testfile}2.cc"
33set objfile2 "${testfile}2.o"
34set binfile "${objdir}/${subdir}/${testfile}"
35
36if { [gdb_compile "$srcdir/$subdir/$srcfile1" "$objdir/$subdir/$objfile1" object {debug c++}] != "" } {
37 untested mb-inline.exp
38 return -1
39}
40
41if { [gdb_compile "$srcdir/$subdir/$srcfile2" "$objdir/$subdir/$objfile2" object {debug c++}] != "" } {
42 untested mb-inline.exp
43 return -1
44}
45
46if { [gdb_compile "$objdir/$subdir/$objfile1 $objdir/$subdir/$objfile2" "${binfile}" executable {debug c++}] != "" } {
47 untested mb-inline.exp
48 return -1
49}
50
51if [get_compiler_info ${binfile} "c++"] {
52 return -1
53}
54
55gdb_exit
56gdb_start
57gdb_reinitialize_dir $srcdir/$subdir
58gdb_load ${binfile}
59
60set bp_location [gdb_get_line_number "set breakpoint here" $hdrfile]
61
62# Set a breakpoint with multiple locations.
63
64gdb_test "break $hdrfile:$bp_location" \
65 "Breakpoint.*at.* file .*$hdrfile, line.*\\(2 locations\\).*" \
66 "set breakpoint"
67
68gdb_run_cmd
69gdb_expect {
70 -re "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*$gdb_prompt $" {
71 pass "run to breakpoint"
72 }
73 -re "$gdb_prompt $" {
74 fail "run to breakpoint"
75 }
76 timeout {
77 fail "run to breakpoint (timeout)"
78 }
79}
80
81gdb_test "continue" \
82 ".*Breakpoint.*foo \\(i=1\\).*" \
83 "run to breakpoint 2"
84
85# Try disabling a single location. We also test
86# that at least in simple cases, the enable/disable
87# state of locations survive "run".
88# Early bug would disable 1.1 and enable 1.2 when program is run.
a8d52276 89gdb_test_no_output "disable 1.2" "disabling location: disable"
776592bf
DE
90
91gdb_run_cmd
92gdb_expect {
93 -re "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*$gdb_prompt $" {
94 pass "disabling location: run to breakpoint"
95 }
96 -re "$gdb_prompt $" {
97 fail "disabling location: run to breakpoint"
98 }
99 timeout {
100 fail "disabling location: run to breakpoint (timeout)"
101 }
102}
103
104gdb_test "continue" \
105 ".*Program exited normally.*" \
106 "continue with disabled breakpoint 1.2"
9ab4e744
DE
107
108# Make sure we can set a breakpoint on a source statement that spans
109# multiple lines.
110
111delete_breakpoints
112
113set bp_location [gdb_get_line_number "set multi-line breakpoint here" $hdrfile]
114
115if { ![runto_main] } {
116 fail "Can't run to main for multi_line_foo tests."
117 return 0
118}
119
120gdb_test "break $hdrfile:$bp_location" \
121 "Breakpoint.*at.* file .*$hdrfile, line.*\\(2 locations\\).*" \
122 "set multi_line_foo breakpoint"
123gdb_test "continue" \
124 ".*Breakpoint.*multi_line_foo \\(i=0\\).*" \
125 "run to multi_line_foo breakpoint 4 afn"
126gdb_test "continue" \
127 ".*Breakpoint.*multi_line_foo \\(i=1\\).*" \
128 "run to multi_line_foo breakpoint 4 bfn"