GDB copyright headers update after running GDB's copyright.py script.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / mb-templates.exp
CommitLineData
618f726f 1# Copyright 2007-2016 Free Software Foundation, Inc.
ed0616c6
VP
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 test verifies that setting breakpoint on line in template
17# function will fire in all instantiations of that template.
18
759f0f0b 19if { [skip_stl_tests] } { continue }
c3ea9a14 20
62172bb9
UW
21# On SPU this test fails because the executable exceeds local storage size.
22if { [istarget "spu*-*-*"] } {
23 return 0
24}
25
ed0616c6 26
f5f3a911 27standard_testfile .cc
ed0616c6 28
4c93b1db 29if [get_compiler_info "c++"] {
ed0616c6
VP
30 return -1
31}
32
f5f3a911
TT
33if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} {
34 return -1
ed0616c6
VP
35}
36
d6b6bbb7 37set bp_location [gdb_get_line_number "set breakpoint here"]
ed0616c6 38
d6b6bbb7
LM
39# Set a breakpoint with multiple locations
40# and a condition.
ed0616c6 41
d6b6bbb7
LM
42gdb_test "break $srcfile:$bp_location if i==1" \
43 "Breakpoint.*at.*: $srcfile:$bp_location. \\(2 locations\\).*" \
44 "initial condition: set breakpoint"
ed0616c6 45
d6b6bbb7 46gdb_run_cmd
a06715f8 47
d6b6bbb7
LM
48set test "initial condition: run to breakpoint"
49gdb_test_multiple "" $test {
50 -re "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*$gdb_prompt $" {
51 pass $test
52 break
ed0616c6
VP
53 }
54}
55
56gdb_test "continue" \
57 ".*Breakpoint.*foo<double> \\(i=1\\).*" \
58 "initial condition: run to breakpoint 2"
59
60# Set breakpoint with multiple locations.
61# Separately set the condition.
a06715f8
JK
62
63delete_breakpoints
64gdb_test "kill" "" "kill" \
65 {Kill the program being debugged\? \(y or n\) } "y"
ed0616c6
VP
66
67gdb_test "break $srcfile:$bp_location" \
f8eba3c6 68 "Breakpoint.*at.*: $srcfile:$bp_location. \\(2 locations\\).*" \
ed0616c6
VP
69 "separate condition: set breakpoint"
70
a06715f8 71gdb_test_no_output {condition $bpnum i==1} \
ed0616c6
VP
72 "separate condition: set condition"
73
74gdb_run_cmd
fa43b1d7 75gdb_test "" "Breakpoint \[0-9\]+,.*foo<int> \\(i=1\\).*" "separate condition: run to breakpoint"
ed0616c6
VP
76
77gdb_test "continue" \
78 ".*Breakpoint.*foo<double> \\(i=1\\).*" \
79 "separate condition: run to breakpoint 2"
80
81# Try disabling a single location. We also test
82# that at least in simple cases, the enable/disable
83# state of locations surive "run".
a06715f8 84gdb_test_no_output {disable $bpnum.1} "disabling location: disable"
ed0616c6
VP
85
86gdb_run_cmd
fa43b1d7 87gdb_test "" "Breakpoint \[0-9\]+,.*foo<double> \\(i=1\\).*" "disabling location: run to breakpoint"
ed0616c6
VP
88
89# Try disabling entire breakpoint
a06715f8 90gdb_test_no_output {enable $bpnum.1} "disabling location: enable"
ed0616c6
VP
91
92
a06715f8 93gdb_test_no_output {disable $bpnum} "disable breakpoint: disable"
ed0616c6
VP
94
95gdb_run_cmd
fa43b1d7 96gdb_test "" "$inferior_exited_re normally.*" "disable breakpoint: run to breakpoint"
ed0616c6
VP
97
98# Make sure breakpoint can be set on a specific instantion.
99delete_breakpoints
100gdb_test "break 'void foo<int>(int)'" ".*" \
101 "instantiation: set breakpoint"
102
103
104gdb_run_cmd
fa43b1d7 105gdb_test "" "Breakpoint \[0-9\]+,.*foo<int> \\(i=0\\).*" "instantiation: run to breakpoint"
ed0616c6
VP
106
107gdb_test "continue" \
108 ".*Breakpoint.*foo<int> \\(i=1\\).*" \
109 "instantiation: run to breakpoint 2"
110
9ab4e744
DE
111
112# Make sure we can set a breakpoint on a source statement that spans
113# multiple lines.
114
115delete_breakpoints
116
117set bp_location [gdb_get_line_number "set multi-line breakpoint here"]
118
119if { ![runto_main] } {
120 fail "Can't run to main for multi_line_foo tests."
121 return 0
122}
123
124gdb_test "break $srcfile:$bp_location" \
f8eba3c6 125 "Breakpoint.*at.*: $srcfile:$bp_location. \\(2 locations\\).*" \
9ab4e744
DE
126 "set multi_line_foo breakpoint"
127gdb_test "continue" \
128 ".*Breakpoint.*multi_line_foo<int> \\(i=0\\).*" \
129 "run to multi_line_foo breakpoint 2 <int>"
130gdb_test "continue" \
131 ".*Breakpoint.*multi_line_foo<double> \\(i=0\\).*" \
132 "run to multi_line_foo breakpoint 2 <double>"
This page took 0.925492 seconds and 4 git commands to generate.