change delegation for to_read_description
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / commands.exp
CommitLineData
ecd75fc8 1# Copyright 1988-2014 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c
SS
16#
17# test special commands (if, while, etc)
18#
c906108c 19
f76495c8
TT
20standard_testfile
21
aa81e255
JK
22if { [prepare_for_testing commands.exp commands run.c {debug additional_flags=-DFAKEARGV}] } {
23 return -1
c906108c
SS
24}
25
c906108c
SS
26proc gdbvar_simple_if_test {} {
27 global gdb_prompt
28
27d3a1a2 29 gdb_test_no_output "set \$foo = 0" "set foo in gdbvar_simple_if_test"
c906108c 30 # All this test should do is print 0xdeadbeef once.
42f5c13f
MS
31 gdb_test "if \$foo == 1\np/x 0xfeedface\nelse\np/x 0xdeadbeef\nend" \
32 "\\\$\[0-9\]* = 0xdeadbeef" "gdbvar_simple_if_test #1"
c906108c 33 # All this test should do is print 0xfeedface once.
42f5c13f
MS
34 gdb_test "if \$foo == 0\np/x 0xfeedface\nelse\np/x 0xdeadbeef\nend" \
35 "\\\$\[0-9\]* = 0xfeedface" "gdbvar_simple_if_test #2"
c906108c
SS
36}
37
38proc gdbvar_simple_while_test {} {
39 global gdb_prompt
40
27d3a1a2 41 gdb_test_no_output "set \$foo = 5" "set foo in gdbvar_simple_while_test"
c906108c 42 # This test should print 0xfeedface five times.
42f5c13f
MS
43 gdb_test "while \$foo > 0\np/x 0xfeedface\nset \$foo -= 1\nend" \
44 "\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface" \
45 "gdbvar_simple_while_test #1"
c906108c
SS
46}
47
48proc gdbvar_complex_if_while_test {} {
49 global gdb_prompt
50
27d3a1a2
MS
51 gdb_test_no_output "set \$foo = 4" \
52 "set foo in gdbvar complex_if_while_test"
c906108c 53 # This test should alternate between 0xdeadbeef and 0xfeedface two times.
42f5c13f
MS
54 gdb_test "while \$foo > 0\nset \$foo -= 1\nif \(\$foo % 2\) == 1\np/x 0xdeadbeef\nelse\np/x 0xfeedface\nend\nend" \
55 "\\\$\[0-9\]* = 0xdeadbeef\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xdeadbeef\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface" \
56 "gdbvar_complex_if_while_test #1"
c906108c
SS
57}
58
59proc progvar_simple_if_test {} {
60 global gdb_prompt
61
beb998c6 62 if [target_info exists noargs] {
c906108c
SS
63 verbose "Skipping progvar_simple_if_test because of noargs."
64 return
65 }
66
67 if { ![runto factorial] } then { gdb_suppress_tests; }
42f5c13f
MS
68 # Don't depend upon argument passing, since most simulators don't
69 # currently support it. Bash value variable to be what we want.
f6978de9 70 gdb_test "p value=5" ".*" "set value to 5 in progvar_simple_if_test #1"
c906108c 71 # All this test should do is print 0xdeadbeef once.
42f5c13f
MS
72 gdb_test "if value == 1\np/x 0xfeedface\nelse\np/x 0xdeadbeef\nend" \
73 "\\\$\[0-9\]* = 0xdeadbeef" \
74 "progvar_simple_if_test #1"
c906108c 75 # All this test should do is print 0xfeedface once.
42f5c13f
MS
76 gdb_test "if value == 5\np/x 0xfeedface\nelse\np/x 0xdeadbeef\nend" \
77 "\\\$\[0-9\]* = 0xfeedface" \
78 "progvar_simple_if_test #2"
4ec70201 79 gdb_stop_suppressing_tests
c906108c
SS
80}
81
82proc progvar_simple_while_test {} {
83 global gdb_prompt
84
beb998c6 85 if [target_info exists noargs] {
c906108c
SS
86 verbose "Skipping progvar_simple_while_test because of noargs."
87 return
88 }
89
27d3a1a2 90 gdb_test_no_output "set args 5" "set args in progvar_simple_while_test"
c906108c 91 if { ![runto factorial] } then { gdb_suppress_tests }
42f5c13f
MS
92 # Don't depend upon argument passing, since most simulators don't
93 # currently support it. Bash value variable to be what we want.
f6978de9 94 gdb_test "p value=5" ".*" "set value to 5 in progvar_simple_if_test #2"
c906108c 95 # This test should print 0xfeedface five times.
42f5c13f
MS
96 gdb_test "while value > 0\np/x 0xfeedface\nset value -= 1\nend" \
97 "\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface" \
98 "progvar_simple_while_test #1"
4ec70201 99 gdb_stop_suppressing_tests
c906108c
SS
100}
101
102proc progvar_complex_if_while_test {} {
103 global gdb_prompt
104
beb998c6 105 if [target_info exists noargs] {
c906108c
SS
106 verbose "Skipping progvar_simple_if_while_test because of noargs."
107 return
108 }
109
27d3a1a2
MS
110 gdb_test_no_output "set args 4" \
111 "set args in progvar_complex_if_while_test"
c906108c 112 if { ![runto factorial] } then { gdb_suppress_tests }
42f5c13f
MS
113 # Don't depend upon argument passing, since most simulators don't
114 # currently support it. Bash value variable to be what we want.
f6978de9 115 gdb_test "p value=4" ".*" "set value to 4 in progvar_simple_if_test"
c906108c 116 # This test should alternate between 0xdeadbeef and 0xfeedface two times.
42f5c13f
MS
117 gdb_test "while value > 0\nset value -= 1\nif \(value % 2\) == 1\np/x 0xdeadbeef\nelse\np/x 0xfeedface\nend\nend" \
118 "\\\$\[0-9\]* = 0xdeadbeef\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xdeadbeef\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface" \
119 "progvar_complex_if_while_test #1"
4ec70201 120 gdb_stop_suppressing_tests
c906108c
SS
121}
122
123proc if_while_breakpoint_command_test {} {
beb998c6 124 if [target_info exists noargs] {
c906108c
SS
125 verbose "Skipping if_while_breakpoint_command_test because of noargs."
126 return
127 }
128
27d3a1a2
MS
129 gdb_test_no_output "set args 5" \
130 "set args in if_while_breakpoint_command_test"
c906108c 131 if { ![runto factorial] } then { gdb_suppress_tests }
42f5c13f
MS
132 # Don't depend upon argument passing, since most simulators don't
133 # currently support it. Bash value variable to be what we want.
f6978de9 134 gdb_test "p value=5" ".*" "set value to 5 in progvar_simple_if_test"
c906108c
SS
135 delete_breakpoints
136 gdb_test "break factorial" "Breakpoint.*at.*" "break factorial #1"
137
ad3986f0
MS
138 gdb_test_multiple "commands" \
139 "commands in if_while_breakpoint_command_test" {
140 -re "End with" {
141 pass "commands in if_while_breakpoint_command_test"
142 }
c906108c 143 }
ad3986f0 144
c906108c 145 # This test should alternate between 0xdeadbeef and 0xfeedface two times.
42f5c13f
MS
146 gdb_test "while value > 0\nset value -= 1\nif \(value % 2\) == 1\np/x 0xdeadbeef\nelse\np/x 0xfeedface\nend\nend\nend" \
147 "" \
148 "commands part 2 in if_while_breakpoint_command_test"
149 gdb_test "continue" \
150 "\\\$\[0-9\]* = 0xdeadbeef\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xdeadbeef\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface" \
151 "if_while_breakpoint_command_test #1"
152 gdb_test "info break" \
153 "while.*set.*if.*p/x.*else.*p/x.*end.*" \
154 "info break in if_while_breakpoint_command_test"
4ec70201 155 gdb_stop_suppressing_tests
c906108c
SS
156}
157
158# Test that we can run the inferior from breakpoint commands.
02aa71d5
MC
159#
160# The expected behavior is that all commands after the first "step"
161# shall be ignored. See the gdb manual, "Break Commands",
162# subsection "Breakpoint command lists".
163
c906108c 164proc infrun_breakpoint_command_test {} {
beb998c6 165 if [target_info exists noargs] {
c906108c
SS
166 verbose "Skipping infrun_breakpoint_command_test because of noargs."
167 return
168 }
169
27d3a1a2
MS
170 gdb_test_no_output "set args 6" \
171 "set args in infrun_breakpoint_command_test"
c906108c 172 if { ![runto factorial] } then { gdb_suppress_tests }
42f5c13f
MS
173 # Don't depend upon argument passing, since most simulators don't
174 # currently support it. Bash value variable to be what we want.
f6978de9 175 gdb_test "p value=6" ".*" "set value to 6 in progvar_simple_if_test #1"
c906108c
SS
176 delete_breakpoints
177 gdb_test "break factorial if value == 5" "Breakpoint.*at.*"
178
beb998c6 179# infrun_breakpoint_command_test - This test was broken into two parts
c906108c
SS
180# to get around a synchronization problem in expect.
181# part1: issue the gdb command "commands"
182# part2: send the list of commands
ad3986f0
MS
183 gdb_test_multiple "commands" \
184 "commands in infrun_breakpoint_command_test #1" {
185 -re "End with" {
186 pass "commands in infrun_breakpoint_command_test #1"
187 }
c906108c 188 }
02aa71d5 189 gdb_test "step\nstep\nstep\nstep\nend" "" \
c906108c 190 "commands in infrun_breakpoint_command_test #2"
085dd6e6 191
ad3986f0
MS
192 gdb_test "continue" \
193 "Continuing.*.*.*Breakpoint \[0-9\]*, factorial \\(value=5\\).*at.*\[0-9\]*\[ \]*if \\(value > 1\\) \{.*\[0-9\]*\[ \]*value \\*= factorial \\(value - 1\\);.*" \
194 "continue in infrun_breakpoint_command_test"
085dd6e6 195
4ec70201 196 gdb_stop_suppressing_tests
c906108c
SS
197}
198
199proc breakpoint_command_test {} {
beb998c6 200 if [target_info exists noargs] {
c906108c
SS
201 verbose "Skipping breakpoint_command_test because of noargs."
202 return
203 }
204
27d3a1a2 205 gdb_test_no_output "set args 6" "set args in breakpoint_command_test"
c906108c 206 if { ![runto factorial] } then { gdb_suppress_tests; }
42f5c13f
MS
207 # Don't depend upon argument passing, since most simulators don't
208 # currently support it. Bash value variable to be what we want.
f6978de9 209 gdb_test "p value=6" ".*" "set value to 6 in progvar_simple_if_test #2"
c906108c
SS
210 delete_breakpoints
211 gdb_test "break factorial" "Breakpoint.*at.*" "break factorial #2"
212 gdb_test "commands\nprintf \"Now the value is %d\\n\", value\nend" \
085dd6e6 213 "End with.*" "commands in breakpoint_command_test"
42f5c13f
MS
214 gdb_test "continue" \
215 "Breakpoint \[0-9\]*, factorial.*Now the value is 5" \
c906108c
SS
216 "continue in breakpoint_command_test"
217 gdb_test "print value" " = 5" "print value in breakpoint_command_test"
4ec70201 218 gdb_stop_suppressing_tests
c906108c
SS
219}
220
221# Test a simple user defined command (with arguments)
222proc user_defined_command_test {} {
223 global gdb_prompt
224
27d3a1a2
MS
225 gdb_test_no_output "set \$foo = 4" \
226 "set foo in user_defined_command_test"
c906108c 227
ad3986f0
MS
228 gdb_test_multiple "define mycommand" \
229 "define mycommand in user_defined_command_test" {
230 -re "End with" {
231 pass "define mycommand in user_defined_command_test"
232 }
c906108c 233 }
ad3986f0 234
c906108c 235 # This test should alternate between 0xdeadbeef and 0xfeedface two times.
42f5c13f
MS
236 gdb_test "while \$arg0 > 0\nset \$arg0 -= 1\nif \(\$arg0 % 2\) == 1\np/x 0xdeadbeef\nelse\np/x 0xfeedface\nend\nend\nend" \
237 "" \
238 "enter commands in user_defined_command_test"
239
240 gdb_test "mycommand \$foo" \
241 "\\\$\[0-9\]* = 0xdeadbeef\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface\[^\n\]*\n\\\$\[0-9\]* = 0xdeadbeef\[^\n\]*\n\\\$\[0-9\]* = 0xfeedface" \
242 "execute user defined command in user_defined_command_test"
243 gdb_test "show user mycommand" \
e6ccd35f 244 " while \\\$arg0.*set.* if \\\(\\\$arg0.*p/x.* else\[^\n\].*p/x.* end\[^\n\].* end\[^\n\].*" \
42f5c13f 245 "display user command in user_defined_command_test"
c906108c
SS
246}
247
085dd6e6
JM
248proc watchpoint_command_test {} {
249 global noargs
250 global gdb_prompt
251
beb998c6 252 if [target_info exists noargs] {
085dd6e6
JM
253 verbose "Skipping watchpoint_command_test because of noargs."
254 return
255 }
256
bd5ddfe8
DJ
257 # Disable hardware watchpoints if necessary.
258 if [target_info exists gdb,no_hardware_watchpoints] {
35ec993f 259 gdb_test_no_output "set can-use-hw-watchpoints 0" ""
bd5ddfe8
DJ
260 }
261
27d3a1a2 262 gdb_test_no_output "set args 6" "set args in watchpoint_command_test"
085dd6e6
JM
263 if { ![runto factorial] } then { return }
264 delete_breakpoints
265
266 # Verify that we can create a watchpoint, and give it a commands
267 # list that continues the inferior. We set the watchpoint on a
268 # local variable, too, so that it self-deletes when the watched
269 # data goes out of scope.
270 #
271 # What should happen is: Each time the watchpoint triggers, it
272 # continues the inferior. Eventually, the watchpoint will self-
273 # delete, when the watched variable is out of scope. But by that
274 # time, the inferior should have exited. GDB shouldn't crash or
275 # anything untoward as a result of this.
276 #
277 set wp_id -1
278
ad3986f0
MS
279 gdb_test_multiple "watch local_var" "watch local_var" {
280 -re "\[Ww\]atchpoint (\[0-9\]*): local_var.*$gdb_prompt $" {
085dd6e6
JM
281 set wp_id $expect_out(1,string)
282 pass "watch local_var"
283 }
085dd6e6 284 }
7a292a7a 285
085dd6e6
JM
286 if {$wp_id == -1} {return}
287
3f9e0d32 288 gdb_test_multiple "commands $wp_id" "begin commands on watch" {
ad3986f0
MS
289 -re "Type commands for breakpoint.*, one per line.*>$" {
290 pass "begin commands on watch"
291 }
085dd6e6 292 }
cdac0397
PA
293 # See the 'No symbol "value...' fail below. This command will
294 # fail if it's executed in the wrong frame. If adjusting the
295 # test, make sure this property holds.
ad3986f0
MS
296 gdb_test_multiple "print value" "add print command to watch" {
297 -re ">$" {
298 pass "add print command to watch"
299 }
085dd6e6 300 }
ad3986f0
MS
301 gdb_test_multiple "continue" "add continue command to watch" {
302 -re ">$" {
303 pass "add continue command to watch"
42f5c13f 304 }
085dd6e6 305 }
ad3986f0
MS
306 gdb_test "end" \
307 "" \
308 "end commands on watch"
309
cdac0397 310 set test "continue with watch"
95e4302a
JM
311 set lno_1 [gdb_get_line_number "commands.exp: hw local_var out of scope" "run.c"]
312 set lno_2 [gdb_get_line_number "commands.exp: local_var out of scope" "run.c"]
cdac0397
PA
313 gdb_test_multiple "continue" "$test" {
314 -re "No symbol \"value\" in current context.\r\n$gdb_prompt $" {
315 # Happens if GDB actually runs the watchpoints commands,
316 # even though the watchpoint was deleted for not being in
317 # scope.
318 fail $test
319 }
95e4302a 320 -re "Continuing.*\[Ww\]atchpoint $wp_id deleted because the program has left the block in.*which its expression is valid.*run.c:($lno_1|$lno_2).*$gdb_prompt $" {
cdac0397
PA
321 pass $test
322 }
323 }
085dd6e6 324}
7a292a7a
SS
325
326proc test_command_prompt_position {} {
327 global gdb_prompt
328
beb998c6 329 if [target_info exists noargs] {
7a292a7a
SS
330 verbose "Skipping test_command_prompt_position because of noargs."
331 return
332 }
333
334 if { ![runto factorial] } then { gdb_suppress_tests; }
42f5c13f
MS
335 # Don't depend upon argument passing, since most simulators don't
336 # currently support it. Bash value variable to be what we want.
7a292a7a 337 delete_breakpoints
7dbd117d 338 gdb_test "break factorial" "Breakpoint.*at.*" "break factorial #3"
f6978de9 339 gdb_test "p value=5" ".*" "set value to 5 in test_command_prompt_position"
7a292a7a 340 # All this test should do is print 0xdeadbeef once.
42f5c13f
MS
341 gdb_test "if value == 1\np/x 0xfeedface\nelse\np/x 0xdeadbeef\nend" \
342 "\\\$\[0-9\]* = 0xdeadbeef" \
343 "if test in test_command_prompt_position"
344
345 # Now let's test for the correct position of the '>' in gdb's
346 # prompt for commands. It should be at the beginning of the line,
347 # and not after one space.
7a292a7a
SS
348
349 send_gdb "commands\n"
350 gdb_expect {
42f5c13f
MS
351 -re "Type commands.*End with.*\[\r\n\]>$" {
352 send_gdb "printf \"Now the value is %d\\n\", value\n"
353 gdb_expect {
354 -re "^printf.*value\r\n>$" {
355 send_gdb "end\n"
356 gdb_expect {
357 -re "^end\r\n$gdb_prompt $" {
358 pass "> OK in test_command_prompt_position"
359 }
360 -re ".*$gdb_prompt $" {
361 fail "some other message in test_command_prompt_position"
362 }
363 timeout {
364 fail "(timeout) 1 in test_command_prompt_position"
365 }
366 }
367 }
368 -re "^ >$" { fail "> not OK in test_command_prompt_position" }
369 -re ".*$gdb_prompt $" {
370 fail "wrong message in test_command_prompt_position"
371 }
372 timeout {
373 fail "(timeout) 2 in test_command_prompt_position "
374 }
375 }
376 }
377 -re "Type commands.*End with.*\[\r\n\] >$" {
378 fail "prompt not OK in test_command_prompt_position"
379 }
380 -re ".*$gdb_prompt $" {
381 fail "commands in test_command_prompt_position"
7a292a7a 382 }
42f5c13f
MS
383 timeout { fail "(timeout) 3 commands in test_command_prompt_position" }
384 }
7a292a7a 385
4ec70201 386 gdb_stop_suppressing_tests
7a292a7a
SS
387}
388
389
003ba290
FN
390
391proc deprecated_command_test {} {
003ba290 392 gdb_test "maintenance deprecate blah" "Can't find command.*" \
7dbd117d 393 "tried to deprecate non-existing command"
003ba290 394
27d3a1a2 395 gdb_test_no_output "maintenance deprecate p \"new_p\"" "maintenance deprecate p \"new_p\" /1/"
42f5c13f
MS
396 gdb_test "p 5" \
397 "Warning: 'p', an alias for the command 'print' is deprecated.*Use 'new_p'.*" \
398 "p deprecated warning, with replacement"
7dbd117d 399 gdb_test "p 5" ".\[0-9\]* = 5.*" "Deprecated warning goes away /1/"
003ba290 400
27d3a1a2
MS
401 gdb_test_no_output "maintenance deprecate p \"new_p\"" "maintenance deprecate p \"new_p\" /2/"
402 gdb_test_no_output "maintenance deprecate print \"new_print\""
42f5c13f
MS
403 gdb_test "p 5" \
404 "Warning: command 'print' \\(p\\) is deprecated.*Use 'new_print'.*" \
405 "both alias and command are deprecated"
7dbd117d 406 gdb_test "p 5" ".\[0-9\]* = 5.*" "Deprecated warning goes away /2/"
003ba290 407
27d3a1a2 408 gdb_test_no_output "maintenance deprecate set remote memory-read-packet-size \"srm\" " \
7dbd117d 409 "deprecate long command /1/"
42f5c13f
MS
410 gdb_test "set remote memory-read-packet-size" \
411 "Warning: command 'set remote memory-read-packet-size' is deprecated.*Use 'srm'.*" \
7dbd117d 412 "long command deprecated /1/"
42f5c13f 413
27d3a1a2 414 gdb_test_no_output "maintenance deprecate set remote memory-read-packet-size" \
7dbd117d 415 "deprecate long command /2/"
42f5c13f
MS
416 gdb_test "set remote memory-read-packet-size" \
417 "Warning: command 'set remote memory-read-packet-size' is deprecated.*No alternative known.*" \
7dbd117d 418 "long command deprecated with no alternative /2/"
42f5c13f
MS
419
420 gdb_test "maintenance deprecate" \
421 "\"maintenance deprecate\".*" \
422 "deprecate with no arguments"
003ba290
FN
423}
424
c2b8ed2c
MS
425proc bp_deleted_in_command_test {} {
426 global gdb_prompt
427
c9d37158
DJ
428 if [target_info exists noargs] {
429 verbose "Skipping bp_deleted_in_command_test because of noargs."
430 return
431 }
432
27d3a1a2
MS
433 gdb_test_no_output "set args 1" \
434 "set args in bp_deleted_in_command_test"
c2b8ed2c
MS
435 delete_breakpoints
436
437 # Create a breakpoint, and associate a command-list to it, with
438 # one command that deletes this breakpoint.
439 gdb_test "break factorial" \
42c0c4f1 440 "Breakpoint \[0-9\]+ at .*: file .*run.c, line \[0-9\]+\." \
c2b8ed2c
MS
441 "breakpoint in bp_deleted_in_command_test"
442
ad3986f0
MS
443 gdb_test_multiple "commands" "begin commands in bp_deleted_in_command_test" {
444 -re "Type commands for breakpoint.*>$" {
c2b8ed2c
MS
445 pass "begin commands in bp_deleted_in_command_test"
446 }
c2b8ed2c 447 }
ad3986f0
MS
448 gdb_test_multiple "silent" "add silent command" {
449 -re ">$" {
450 pass "add silent command"
451 }
c2b8ed2c 452 }
ad3986f0
MS
453 gdb_test_multiple "clear factorial" "add clear command" {
454 -re ">$" {
455 pass "add clear command"
456 }
c2b8ed2c 457 }
ad3986f0
MS
458 gdb_test_multiple "printf \"factorial command-list executed\\n\"" \
459 "add printf command" {
460 -re ">$" {
461 pass "add printf command"
462 }
c2b8ed2c 463 }
ad3986f0
MS
464 gdb_test_multiple "cont" "add cont command" {
465 -re ">$" {
466 pass "add cont command"
467 }
468 }
469 gdb_test "end" \
470 "" \
471 "end commands"
003ba290 472
c2b8ed2c
MS
473 gdb_run_cmd
474 gdb_expect {
759f0f0b 475 -re ".*factorial command-list executed.*$gdb_prompt $" {
c2b8ed2c
MS
476 pass "run factorial until breakpoint"
477 }
478 -re ".*$gdb_prompt $" {
479 fail "run factorial until breakpoint"
480 }
481 default { fail "(timeout) run factorial until breakpoint" }
482 timeout { fail "(timeout) run factorial until breakpoint" }
483 }
484}
485
486proc temporary_breakpoint_commands {} {
487 global gdb_prompt
488
c9d37158
DJ
489 if [target_info exists noargs] {
490 verbose "Skipping temporary_breakpoint_commands because of noargs."
491 return
492 }
493
27d3a1a2
MS
494 gdb_test_no_output "set args 1" \
495 "set args in temporary_breakpoint_commands"
c2b8ed2c
MS
496 delete_breakpoints
497
498 # Create a temporary breakpoint, and associate a commands list to it.
499 # This test will verify that this commands list is executed when the
500 # breakpoint is hit.
501 gdb_test "tbreak factorial" \
42c0c4f1 502 "Temporary breakpoint \[0-9\]+ at .*: file .*run.c, line \[0-9\]+\." \
c2b8ed2c
MS
503 "breakpoint in temporary_breakpoint_commands"
504
ad3986f0
MS
505 gdb_test_multiple "commands" \
506 "begin commands in bp_deleted_in_command_test" {
507 -re "Type commands for breakpoint.*>$" {
508 pass "begin commands in bp_deleted_in_command_test"
509 }
510 }
511 gdb_test_multiple "silent" "add silent tbreak command" {
512 -re ">$" {
513 pass "add silent tbreak command"
c2b8ed2c 514 }
c2b8ed2c 515 }
38979823 516 gdb_test_multiple "printf \"factorial tbreak commands executed\\n\"" \
ad3986f0
MS
517 "add printf tbreak command" {
518 -re ">$" {
519 pass "add printf tbreak command"
520 }
521 }
522 gdb_test_multiple "cont" "add cont tbreak command" {
523 -re ">$" {
524 pass "add cont tbreak command"
525 }
526 }
527 gdb_test "end" \
528 "" \
529 "end tbreak commands"
c2b8ed2c
MS
530
531 gdb_run_cmd
532 gdb_expect {
759f0f0b 533 -re ".*factorial tbreak commands executed.*$gdb_prompt $" {
c2b8ed2c
MS
534 pass "run factorial until temporary breakpoint"
535 }
536 timeout { fail "(timeout) run factorial until temporary breakpoint" }
537 }
538}
61d9b92f
DJ
539
540# Test that GDB can handle $arg0 outside of user functions without
541# crashing.
542proc stray_arg0_test { } {
543 gdb_test "print \$arg0" \
544 "\\\$\[0-9\]* = void" \
545 "stray_arg0_test #1"
546
547 gdb_test "if 1 == 1\nprint \$arg0\nend" \
548 "\\\$\[0-9\]* = void" \
549 "stray_arg0_test #2"
550
551 gdb_test "print \$arg0 = 1" \
552 "\\\$\[0-9\]* = 1" \
553 "stray_arg0_test #3"
554
555 gdb_test "print \$arg0" \
556 "\\\$\[0-9\]* = 1" \
557 "stray_arg0_test #4"
558}
e28493f2 559
02e7ef19
JB
560# Test that GDB is able to source a file with an indented comment.
561proc source_file_with_indented_comment {} {
f76495c8
TT
562 set file1 [standard_output_file file1]
563
564 set fd [open "$file1" w]
02e7ef19
JB
565 puts $fd \
566{define my_fun
567 #indented comment
568end
569echo Done!\n}
570 close $fd
571
f76495c8 572 gdb_test "source $file1" "Done!" "source file with indented comment"
02e7ef19
JB
573}
574
e28493f2
AS
575# Test that GDB can handle arguments when sourcing files recursively.
576# If the arguments are overwritten with ####### then the test has failed.
577proc recursive_source_test {} {
f76495c8
TT
578 set file1 [standard_output_file file1]
579 set file2 [standard_output_file file2]
580 set file3 [standard_output_file file3]
581
582 set fd [open "$file1" w]
e28493f2 583 puts $fd \
f76495c8
TT
584"source $file2
585abcdef qwerty"
e28493f2
AS
586 close $fd
587
f76495c8 588 set fd [open "$file2" w]
e28493f2 589 puts $fd \
f76495c8
TT
590"define abcdef
591 echo 1: <<<\$arg0>>>\\n
592 source $file3
593 echo 2: <<<\$arg0>>>\\n
594end"
e28493f2
AS
595 close $fd
596
f76495c8 597 set fd [open "$file3" w]
e28493f2
AS
598 puts $fd \
599"echo in file3\\n
600#################################################################"
601 close $fd
602
f76495c8 603 gdb_test "source $file1" \
e28493f2
AS
604 "1: <<<qwerty>>>\[\r\n]+in file3\[\r\n]+2: <<<qwerty>>>" \
605 "recursive source test"
606
f76495c8
TT
607 file delete $file1
608 file delete $file2
609 file delete $file3
e28493f2
AS
610}
611
704a4f78
DJ
612proc gdb_test_no_prompt { command result msg } {
613 global gdb_prompt
614
615 set msg "$command - $msg"
616 set result "^[string_to_regexp $command]\r\n$result$"
617 gdb_test_multiple $command $msg {
618 -re "$result" {
619 pass $msg
620 return 1
621 }
622 -re "\r\n *>$" {
623 fail $msg
624 return 0
625 }
626 }
627 return 0
628}
629
630proc if_commands_test {} {
631 global gdb_prompt
632
27d3a1a2 633 gdb_test_no_output "set \$tem = 1" "set \$tem in if_commands_test"
704a4f78
DJ
634
635 set test "if_commands_test 1"
636 gdb_test_no_prompt "if \$tem == 2" { >} $test
637 gdb_test_no_prompt "break main" { >} $test
638 gdb_test_no_prompt "else" { >} $test
639 gdb_test_no_prompt "break factorial" { >} $test
640 gdb_test_no_prompt "commands" { >} $test
641 gdb_test_no_prompt "silent" { >} $test
642 gdb_test_no_prompt "set \$tem = 3" { >} $test
643 gdb_test_no_prompt "continue" { >} $test
644 gdb_test_multiple "end" "first end - $test" {
645 -re " >\$" {
646 pass "first end - $test"
647 }
648 -re "\r\n>\$" {
649 fail "first end - $test"
650 }
651 }
652 gdb_test_multiple "end" "second end - $test" {
42c0c4f1 653 -re "Breakpoint \[0-9\]+ at .*: file .*run.c, line \[0-9\]+\.\r\n$gdb_prompt $" {
704a4f78
DJ
654 pass "second end - $test"
655 }
656 -re "Undefined command: \"silent\".*$gdb_prompt $" {
657 fail "second end - $test"
658 }
659 }
660
661 set test "if_commands_test 2"
662 gdb_test_no_prompt "if \$tem == 1" { >} $test
663 gdb_test_no_prompt "break main" { >} $test
664 gdb_test_no_prompt "else" { >} $test
665 gdb_test_no_prompt "break factorial" { >} $test
666 gdb_test_no_prompt "commands" { >} $test
667 gdb_test_no_prompt "silent" { >} $test
668 gdb_test_no_prompt "set \$tem = 3" { >} $test
669 gdb_test_no_prompt "continue" { >} $test
670 gdb_test_multiple "end" "first end - $test" {
671 -re " >\$" {
672 pass "first end - $test"
673 }
674 -re "\r\n>\$" {
675 fail "first end - $test"
676 }
677 }
678 gdb_test_multiple "end" "second end - $test" {
42c0c4f1 679 -re "Breakpoint \[0-9\]+ at .*: file .*run.c, line \[0-9\]+\.\r\n$gdb_prompt $" {
704a4f78
DJ
680 pass "second end - $test"
681 }
682 }
683}
684
353d1d73
JK
685# Verify an error during "commands" commands execution will prevent any other
686# "commands" from other breakpoints at the same location to be executed.
687
688proc error_clears_commands_left {} {
689 set test "hook-stop 1"
690 gdb_test_multiple {define hook-stop} $test {
691 -re "End with a line saying just \"end\"\\.\r\n>$" {
692 pass $test
693 }
694 }
695 set test "hook-stop 1a"
696 gdb_test_multiple {echo hook-stop1\n} $test {
697 -re "\r\n>$" {
698 pass $test
699 }
700 }
701 gdb_test_no_output "end" "hook-stop 1b"
702
703 delete_breakpoints
704 gdb_breakpoint "main"
705
706 set test "main commands 1"
707 gdb_test_multiple {commands $bpnum} $test {
708 -re "End with a line saying just \"end\"\\.\r\n>$" {
709 pass $test
710 }
711 }
712 set test "main commands 1a"
713 gdb_test_multiple {echo cmd1\n} $test {
714 -re "\r\n>$" {
715 pass $test
716 }
717 }
718 set test "main commands 1b"
719 gdb_test_multiple {errorcommandxy\n} $test {
720 -re "\r\n>$" {
721 pass $test
722 }
723 }
724 gdb_test_no_output "end" "main commands 1c"
725
726 gdb_breakpoint "main"
727 set test "main commands 2"
728 gdb_test_multiple {commands $bpnum} $test {
729 -re "End with a line saying just \"end\"\\.\r\n>$" {
730 pass $test
731 }
732 }
733 set test "main commands 2a"
734 gdb_test_multiple {echo cmd2\n} $test {
735 -re "\r\n>$" {
736 pass $test
737 }
738 }
739 set test "main commands 2b"
740 gdb_test_multiple {errorcommandyz\n} $test {
741 -re "\r\n>$" {
742 pass $test
743 }
744 }
745 gdb_test_no_output "end" "main commands 2c"
746
747 gdb_run_cmd
87769f59 748 gdb_test "" "hook-stop1\r\n.*\r\ncmd1\r\nUndefined command: \"errorcommandxy\"\\. Try \"help\"\\." "cmd1 error"
353d1d73
JK
749
750 gdb_test {echo idle\n} "\r\nidle" "no cmd2"
751}
752
fad6eecd
TT
753proc redefine_hook_test {} {
754 global gdb_prompt
755
756 gdb_test "define one\nend" \
757 "" \
758 "define one"
759
760 gdb_test "define hook-one\necho hibob\\n\nend" \
761 "" \
762 "define hook-one"
763
764 gdb_test_multiple "define one" "redefine one" {
765 -re "Redefine command .one.. .y or n. $" {
766 send_gdb "y\n"
767 exp_continue
768 }
769
770 -re "End with" {
771 pass "define one in redefine_hook_test"
772 }
773 default {
774 fail "(timeout or eof) define one in redefine_hook_test"
775 }
776 }
777
778 gdb_test "end" \
779 "" \
780 "enter commands for one redefinition in redefine_hook_test"
781
782 gdb_test "one" \
783 "hibob" \
784 "execute one command in redefine_hook_test"
785}
786
b05dcbb7
TT
787proc redefine_backtrace_test {} {
788 global gdb_prompt
789
790 gdb_test_multiple "define backtrace" "define backtrace" {
d26ccb4f
JK
791 -re "Really redefine built-in command \"backtrace\"\\? \\(y or n\\) $" {
792 pass "define backtrace"
b05dcbb7 793 }
d26ccb4f 794 }
b05dcbb7 795
d26ccb4f
JK
796 gdb_test_multiple "y" "expect response to define backtrace" {
797 -re "End with a line saying just \"end\"\\.\r\n>$" {
798 pass "expect response to define backtrace"
b05dcbb7
TT
799 }
800 }
d26ccb4f 801
b05dcbb7
TT
802 gdb_test "echo hibob\\n\nend" \
803 "" \
804 "enter commands in redefine_backtrace_test"
805
806 gdb_test "backtrace" \
807 "hibob" \
808 "execute backtrace command in redefine_backtrace_test"
809 gdb_test "bt" \
810 "hibob" \
811 "execute bt command in redefine_backtrace_test"
812}
813
c906108c
SS
814gdbvar_simple_if_test
815gdbvar_simple_while_test
816gdbvar_complex_if_while_test
817progvar_simple_if_test
818progvar_simple_while_test
819progvar_complex_if_while_test
820if_while_breakpoint_command_test
821infrun_breakpoint_command_test
822breakpoint_command_test
823user_defined_command_test
085dd6e6 824watchpoint_command_test
7a292a7a 825test_command_prompt_position
003ba290 826deprecated_command_test
c2b8ed2c
MS
827bp_deleted_in_command_test
828temporary_breakpoint_commands
61d9b92f 829stray_arg0_test
02e7ef19 830source_file_with_indented_comment
e28493f2 831recursive_source_test
704a4f78 832if_commands_test
353d1d73 833error_clears_commands_left
fad6eecd 834redefine_hook_test
b05dcbb7
TT
835# This one should come last, as it redefines "backtrace".
836redefine_backtrace_test
This page took 2.216524 seconds and 4 git commands to generate.