Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-break.exp
CommitLineData
88b9d363 1# Copyright 1999-2022 Free Software Foundation, Inc.
fb40c209
AC
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
fb40c209 6# (at your option) any later version.
e22f8b7c 7#
fb40c209
AC
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#
fb40c209 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/>.
fb40c209 15
17282693 16# Test Machine interface (MI) operations
fb40c209 17#
17282693 18# Test MI breakpoint commands.
fb40c209 19#
17282693
PA
20# The goal is not to test gdb functionality, which is done by other
21# tests, but to verify the correct output response to MI operations.
fb40c209
AC
22
23load_lib mi-support.exp
b30bf9ee 24set MIFLAGS "-i=mi"
fb40c209 25
298a9cf0
TT
26standard_testfile basics.c
27
9357e021 28if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
5b362f04 29 untested "failed to compile"
b60f0898 30 return -1
fb40c209
AC
31}
32
deea8bb0
MC
33# Locate line numbers in basics.c.
34set line_callee4_head [gdb_get_line_number "callee4 ("]
35set line_callee4_body [expr $line_callee4_head + 2]
36set line_callee3_head [gdb_get_line_number "callee3 ("]
37set line_callee3_body [expr $line_callee3_head + 2]
38set line_callee2_head [gdb_get_line_number "callee2 ("]
39set line_callee2_body [expr $line_callee2_head + 2]
40set line_callee1_head [gdb_get_line_number "callee1 ("]
41set line_callee1_body [expr $line_callee1_head + 2]
42set line_main_head [gdb_get_line_number "main ("]
43set line_main_body [expr $line_main_head + 2]
dd322c54
JK
44set line_callme_head [gdb_get_line_number "callme ("]
45set line_callme_body [expr $line_callme_head + 2]
deea8bb0 46
38fcd64c
DJ
47set fullname "fullname=\"${fullname_syntax}${srcfile}\""
48
98e713ab 49proc_with_prefix test_tbreak_creation_and_listing {} {
fb40c209 50 global srcfile
5da151d4 51 global line_callee4_head
a9e40818 52 global line_callee4_body
5da151d4 53 global line_callee3_head
a9e40818 54 global line_callee3_body
5da151d4
KS
55 global line_callee2_body
56 global line_main_body
fb40c209
AC
57
58 # Insert some breakpoints and list them
59 # Also, disable some so they do not interfere with other tests
60 # Tests:
61 # -break-insert -t main
62 # -break-insert -t basics.c:callee2
deea8bb0
MC
63 # -break-insert -t basics.c:$line_callee3_head
64 # -break-insert -t srcfile:$line_callee4_head
fb40c209
AC
65 # -break-list
66
4b48d439
KS
67 set bps {}
68 lappend bps [mi_create_breakpoint "-t main" "break-insert -t operation" \
69 -number 1 -disp del -func main -file ".*basics.c" \
70 -line $line_main_body]
71
72 lappend bps [mi_create_breakpoint "-t basics.c:callee2" \
73 "insert temp breakpoint at basics.c:callee2" \
74 -number 2 -disp del -func callee2 -file ".*basics.c" \
75 -line $line_callee2_body]
76
77 lappend bps [mi_create_breakpoint "-t basics.c:$line_callee3_head" \
78 "insert temp breakpoint at basics.c:\$line_callee3_head" \
79 -number 3 -disp del -func callee3 -file ".*basics.c" \
a9e40818 80 -line $line_callee3_body]
4b48d439
KS
81
82 # Getting the quoting right is tricky.
83 # That is "\"<file>\":$line_callee4_head"
84 lappend bps [mi_create_breakpoint \
85 "-t \"\\\"${srcfile}\\\":$line_callee4_head\"" \
86 "insert temp breakpoint at \"<fullfilename>\":\$line_callee4_head" \
87 -number 4 -disp del -func callee4 -file ".*basics.c" \
a9e40818 88 -line $line_callee4_body]
fb40c209
AC
89
90 mi_gdb_test "666-break-list" \
4b48d439
KS
91 "666\\\^done,[mi_make_breakpoint_table $bps]" \
92 "list of breakpoints"
fb40c209
AC
93
94 mi_gdb_test "777-break-delete" \
95 "777\\^done" \
96 "delete temp breakpoints"
97}
98
98e713ab 99proc_with_prefix test_rbreak_creation_and_listing {} {
5da151d4
KS
100 global line_callee4_body
101 global line_callee3_body
102 global line_callee2_body
103 global line_callee1_body
104 global line_main_body
fb40c209
AC
105
106 # Insert some breakpoints and list them
107 # Also, disable some so they do not interfere with other tests
108 # Tests:
109 # -break-insert -r main
110 # -break-insert -r callee2
111 # -break-insert -r callee
112 # -break-insert -r .*llee
113 # -break-list
114
18b5ff1b 115 setup_kfail "*-*-*" mi/14270
4b48d439
KS
116 set bps {}
117 lappend bps [mi_make_breakpoint -number 5 -file ".*basics.c" \
118 -line $line_main_body]
fb40c209 119 mi_gdb_test "122-break-insert -r main" \
4b48d439
KS
120 "122\\^done,[lindex $bps end]" \
121 "break-insert -r operation"
fb40c209 122
18b5ff1b 123 setup_kfail "*-*-*" mi/14270
4b48d439
KS
124 lappend bps [mi_make_breakpoint -number 6 -file ".*basics.c" \
125 -line $line_callee2_body]
fb40c209 126 mi_gdb_test "133-break-insert -r callee2" \
4b48d439
KS
127 "133\\^done,[lindex $bps end]" \
128 "insert breakpoint with regexp callee2"
fb40c209 129
18b5ff1b 130 setup_kfail "*-*-*" mi/14270
4b48d439
KS
131 set start [llength $bps]
132 lappend bps [mi_make_breakpoint -number 7 -file ".*basics.c" \
133 -line $line_callee1_body]
134 lappend bps [mi_make_breakpoint -number 8 -file ".*basics.c" \
135 -line $line_callee2_body]
136 lappend bps [mi_make_breakpoint -number 9 -file ".*basics.c" \
137 -line $line_callee3_body]
138 lappend bps [mi_make_breakpoint -number 10 -file ".*basics.c" \
139 -line $line_callee4_body]
fb40c209 140 mi_gdb_test "144-break-insert -r callee" \
4b48d439
KS
141 "144\\^done,[join [lrange $bps $start end] ,]" \
142 "insert breakpoint with regexp callee"
fb40c209 143
18b5ff1b 144 setup_kfail "*-*-*" mi/14270
4b48d439
KS
145 set start [llength $bps]
146 lappend bps [mi_make_breakpoint -number 11 -file ".*basics.c" \
147 -line $line_callee1_body]
148 lappend bps [mi_make_breakpoint -number 12 -file ".*basics.c" \
149 -line $line_callee2_body]
150 lappend bps [mi_make_breakpoint -number 13 -file ".*basics.c" \
151 -line $line_callee3_body]
152 lappend bps [mi_make_breakpoint -number 14 -file ".*basics.c" \
153 -line $line_callee4_body]
fb40c209 154 mi_gdb_test "155-break-insert -r \.\*llee" \
4b48d439
KS
155 "155\\^done,[join [lrange $bps $start end] ,]" \
156 "insert breakpoint with regexp .*llee"
fb40c209 157
18b5ff1b 158 setup_kfail "*-*-*" mi/14270
fb40c209 159 mi_gdb_test "166-break-list" \
4b48d439
KS
160 "166\\^done,[mi_make_breakpoint_table $bps]" \
161 "list of breakpoints"
fb40c209
AC
162
163 mi_gdb_test "177-break-delete" \
164 "177\\^done" \
165 "delete temp breakpoints"
166}
167
98e713ab 168proc_with_prefix test_abreak_creation {} {
558a9d82
YQ
169 mi_create_varobj tpnum \$tpnum "create local variable tpnum"
170 # Test that $tpnum is not set before creating a tracepoint.
171 mi_gdb_test "521-var-evaluate-expression tpnum" \
172 "521\\^done,value=\"void\"" "eval tpnum before tracepoint"
173
174 mi_gdb_test "522-break-insert -a main" \
4b48d439 175 "522\\^done,[mi_make_breakpoint -number 10 -type tracepoint]" \
558a9d82
YQ
176 "break-insert -a operation"
177
178 mi_gdb_test "523-var-update tpnum" \
179 "523\\^done,changelist=\\\[\{name=\"tpnum\",in_scope=\"true\",type_changed=\"false\",has_more=\"0\"\}\\\]" \
180 "update tpnum"
181 # Test that $tpnum is updated after creating a tracepoint.
182 mi_gdb_test "524-var-evaluate-expression tpnum" \
183 "524\\^done,value=\"10\"" "eval tpnum after tracepoint"
184}
185
98e713ab 186proc_with_prefix test_ignore_count {} {
dd322c54 187 global line_callme_body
60c46647
VP
188
189 mi_gdb_test "-break-insert -i 1 callme" \
4b48d439 190 "\\^done,[mi_make_breakpoint -ignore 1]" \
60c46647
VP
191 "insert breakpoint with ignore count at callme"
192
193 mi_run_cmd
194
dd322c54 195 mi_expect_stop "breakpoint-hit" "callme" "\{name=\"i\",value=\"2\"\}" ".*basics.c" $line_callme_body \
83408de7 196 {"" "disp=\"keep\"" } "run to breakpoint with ignore count"
60c46647
VP
197}
198
98e713ab 199proc_with_prefix test_error {} {
723a2275
VP
200 mi_gdb_test "-break-insert function_that_does_not_exist" \
201 ".*\\^error,msg=\"Function \\\\\"function_that_does_not_exist\\\\\" not defined.\"" \
202 "breakpoint at nonexistent function"
98deb0da
VP
203
204 # We used to have a bug whereby -break-insert that failed would not
205 # clear some event hooks. As result, whenever we evaluate expression
206 # containing function call, the internal breakpoint created to handle
207 # function call would be reported, messing up MI output.
208 mi_gdb_test "-var-create V * return_1()" \
0cc7d26f 209 "\\^done,name=\"V\",numchild=\"0\",value=\"1\",type=\"int\",has_more=\"0\"" \
98deb0da
VP
210 "create varobj for function call"
211
212 mi_gdb_test "-var-update *" \
213 "\\^done,changelist=\\\[\\\]" \
214 "update varobj for function call"
f6de8ec2
PA
215
216 # Try setting breakpoints with garbage after the location.
217
218 # "if" only works in the CLI. It's not supposed to be accepted by
219 # MI. The way to specify a condition is with -c.
220 mi_gdb_test "-break-insert \"callme if i < 4\"" \
221 ".*\\^error,msg=\"Garbage 'if i < 4' at end of location\"" \
222 "breakpoint with garbage after location"
223
224 mi_gdb_test "-break-insert -c i==4 \"callme if i < 4\"" \
225 ".*\\^error,msg=\"Garbage 'if i < 4' at end of location\"" \
226 "conditional breakpoint with garbage after location"
10a636cc
TBA
227
228 # Try using an invalid condition.
229 mi_gdb_test "-break-insert -c bad callme" \
230 ".*\\^error,msg=\"No symbol \\\\\"bad\\\\\" in current context.\"" \
231 "breakpoint with bad condition"
232
233 mi_gdb_test "-dprintf-insert -c bad callme \"Hello\"" \
234 ".*\\^error,msg=\"No symbol \\\\\"bad\\\\\" in current context.\"" \
235 "dprintf with bad condition"
236
237 mi_gdb_test "-break-condition 5 bad" \
238 ".*\\^error,msg=\"No symbol \\\\\"bad\\\\\" in current context.\"" \
239 "invalid condition"
723a2275
VP
240}
241
98e713ab 242proc_with_prefix test_disabled_creation {} {
41447f92
VP
243 global line_callee2_body
244
4b48d439
KS
245 set bp [mi_make_breakpoint -number 6 -type breakpoint -disp keep \
246 -enabled n -func callee2 -file ".*basics.c" \
247 -line $line_callee2_body]
41447f92 248 mi_gdb_test "-break-insert -d basics.c:callee2" \
4b48d439
KS
249 "\\^done,$bp" \
250 "test disabled creation"
41447f92
VP
251
252 mi_gdb_test "-break-delete" \
253 "\\^done" \
254 "test disabled creation: cleanup"
255}
256
98e713ab 257proc_with_prefix test_breakpoint_commands {} {
48cb2d85 258 global line_callee2_body
48cb2d85 259
4b48d439
KS
260 set bp_no_script \
261 [mi_create_breakpoint "basics.c:callee2" \
262 "breakpoint commands: insert breakpoint at basics.c:callee2" \
263 -number 7 -disp keep -func callee2 -file ".*basics.c" \
264 -line $line_callee2_body]
48cb2d85
VP
265
266 mi_gdb_test "-break-commands 7 \"print 10\" \"continue\"" \
267 "\\^done" \
268 "breakpoint commands: set commands"
269
4b48d439
KS
270 # Rebuild the breakpoint regexp instead of using the one returned
271 # by mi_create_breakpoint. Only in -break-info is the actual script
272 # seen.
273 set bp_script [mi_make_breakpoint -number 7 -disp keep -func callee2 \
274 -file ".*basics.c" -line $line_callee2_body \
275 -script {\{"print 10","continue"\}}]
48cb2d85 276 mi_gdb_test "-break-info 7" \
4b48d439 277 "\\^done,[mi_make_breakpoint_table [list $bp_script]]" \
48cb2d85
VP
278 "breakpoint commands: check that commands are set"
279
280 mi_gdb_test "-break-commands 7" \
281 "\\^done" \
282 "breakpoint commands: clear commands"
283
4b48d439
KS
284 mi_gdb_test "-break-info" \
285 "\\^done,[mi_make_breakpoint_table [list $bp_no_script]]" \
48cb2d85 286 "breakpoint commands: check that commands are cleared"
5d4e2b76 287
b75d55d4 288 mi_runto_main
5d4e2b76 289
4b48d439
KS
290 mi_create_breakpoint "basics.c:callee2" \
291 "breakpoint commands: insert breakpoint at basics.c:callee2, again" \
292 -number 9 -disp keep -func callee2 -file ".*basics.c" \
293 -line $line_callee2_body
5d4e2b76 294
3a87ae65 295 mi_gdb_test "-break-commands 9 \"bt\" \"set \$i=0\" \"while \$i<10\" \"print \$i\" \"set \$i=\$i+1\" \"end\" \"continue\" " \
5d4e2b76 296 "\\^done" \
98e713ab 297 "breakpoint commands: set more commands"
5d4e2b76 298
4a07b7da
PA
299 mi_send_resuming_command "exec-continue" "breakpoint commands: continue"
300
ef274d26
PA
301
302 # The breakpoint command's output is always sent to the main UI,
303 # even when testing with MI running on a secondary UI.
304 global gdb_main_spawn_id
305
306 set test "intermediate stop and continue, bp commands"
4a07b7da 307 gdb_expect {
ef274d26 308 -i $gdb_main_spawn_id
3a87ae65 309 -re ".*callee2.*callee1.*main.*\\\$1 = 0.*\\\$10 = 9" {
ef274d26
PA
310 pass $test
311 }
312 timeout {
313 fail $test
314 }
315 }
316
317 set test "intermediate stop and continue, mi running"
318 gdb_expect {
319 -re "\\*running" {
4a07b7da
PA
320 pass $test
321 }
322 timeout {
323 fail $test
324 }
325 }
326
327 mi_expect_stop "exited-normally" "" "" "" "" "" "test hitting breakpoint with commands"
48cb2d85
VP
328}
329
eb8c4e2e
KS
330# Test explicit breakpoints. These tests only test the MI portion of the
331# code. In-depth testing of explicit breakpoints is accomplished in
332# gdb.linespec tests.
333
98e713ab 334proc_with_prefix test_explicit_breakpoints {} {
eb8c4e2e
KS
335 global srcfile
336 global line_callee3_head line_callee4_head
a9e40818 337 global line_callee3_body line_callee4_body
eb8c4e2e
KS
338 global line_callee2_body line_main_body
339
340 mi_delete_breakpoints
341
342 # First check mixed explicit/parsed linespecs.
343 mi_gdb_test "-break-insert --function main $srcfile:$line_callee3_head" \
344 ".*Garbage following explicit linespec"
345
346 # Insert some breakpoints and list them
347 # Also, disable some so they do not interfere with other tests
348 # Tests:
349 # -break-insert -t --function main
350 # -break-insert -t --source basics.c --function callee2
351 # -break-insert -t --source basics.c --line $line_callee3_head
352 # -break-insert -t --source srcfile --line $line_callee4_head
353 # -break-list
354
355 set bps {}
356 lappend bps [mi_create_breakpoint "-t --function main" \
357 "insert temp explicit breakpoint in main" \
358 -func main -file ".*$srcfile" -line $line_main_body]
359
360 lappend bps \
361 [mi_create_breakpoint "-t --source $srcfile --function callee2" \
362 "insert temp explicit breakpoint at $srcfile:callee2" \
363 -func callee2 -file ".*$srcfile" -line $line_callee2_body]
364
365 lappend bps \
366 [mi_create_breakpoint "-t --source $srcfile --line $line_callee3_head" \
367 "insert temp explicit breakpoint at $srcfile:$line_callee3_head" \
a9e40818 368 -func callee3 -file ".*$srcfile" -line $line_callee3_body]
eb8c4e2e
KS
369
370 lappend bps \
371 [mi_create_breakpoint \
372 "-t --source \"$srcfile\" --line $line_callee4_head" \
373 "insert temp explicit breakpoint at \"$srcfile\":$line_callee4_head" \
a9e40818 374 -func callee4 -file ".*$srcfile" -line $line_callee4_body]
eb8c4e2e
KS
375
376 mi_gdb_test "-break-list" "\\^done,[mi_make_breakpoint_table $bps]" \
377 "list of explicit breakpoints"
378
379 mi_gdb_test "-break-delete" \
380 "\\^done" \
381 "delete temp breakpoints"
382
383 mi_create_breakpoint "-c \"intarg == 3\" --function callee2" \
384 "insert explicit conditional breakpoint in callee2" \
385 -func callee2 ".*$srcfile" -line $line_callee2_body \
386 -cond "intarg == 3"
387
388 # mi_create_breakpoint cannot deal with displaying canonical
389 # linespecs.
390 mi_gdb_test \
391 "-break-insert -c \"foo == 3\" --source $srcfile --function main --label label" \
392 ".*No symbol \"foo\" in current context.*"
393
394 mi_gdb_test \
395 "-break-insert --source foobar.c --line 3" \
396 ".*No source file named foobar.c.*"
397
398 mi_gdb_test \
399 "-break-insert --source $srcfile --function foobar" \
400 ".*Function \"foobar\" not defined in \"$srcfile\".*"
401
402 mi_gdb_test \
403 "-break-insert --source $srcfile --function main --label foobar" \
404 ".*No label \"foobar\" defined in function \"main\".*"
405
406 mi_gdb_test \
407 "-break-insert --source $srcfile" \
408 ".*Source filename requires function, label, or line offset.*"
409}
410
10e578d7
TBA
411# Test forcing an invalid condition.
412
413proc_with_prefix test_forced_conditions {} {
414 set warning ".*warning: failed to validate condition .* disabling.*"
415
416 set loc [mi_make_breakpoint_loc -enabled "N"]
417 set args [list -cond "bad" -locations "\\\[$loc\\\]"]
418 set bp [eval mi_make_breakpoint_multi $args]
419
420 mi_gdb_test "-break-insert -c bad --force-condition callme" \
421 "${warning}\\^done,$bp" \
422 "breakpoint with forced condition"
423
424 mi_gdb_test "-dprintf-insert -c bad --force-condition callme \"Hello\"" \
425 "${warning}\\^done,$bp" \
426 "dprintf with forced condition"
79aabb73
TBA
427
428 # Define a plain breakpoint first, and a condition later.
429 mi_create_breakpoint "callme" "define a bp" ""
430 mi_gdb_test "-break-condition --force 16 bad == 42" \
431 "${warning}\\^done" \
432 "invalid condition is forced"
433 set args [list -cond "bad == 42" -locations "\\\[$loc\\\]"]
434 set bp [eval mi_make_breakpoint_multi $args]
435 mi_gdb_test "-break-info 16" \
436 "\\^done,[mi_make_breakpoint_table [list $bp]]" \
437 "invalid condition is defined"
86271cfa
TBA
438
439 # No cond argument should clear the condition.
440 mi_gdb_test "-break-condition 16" \
441 "~\"Breakpoint 16's condition is now valid at location 1, enabling.*\\^done" \
442 "clear the condition"
443 set bp [mi_make_breakpoint -number 16]
444 mi_gdb_test "-break-info 16" \
445 "\\^done,[mi_make_breakpoint_table [list $bp]]" \
446 "condition is cleared"
447
448 # Zero-argument is an error.
449 mi_gdb_test "-break-condition" \
450 "\\^error,msg=\"-break-condition: Missing the <number> argument\"" \
451 "no arguments to -break-condition"
452
453 # Passing --force with no condition should not crash or raise an error.
454 mi_gdb_test "-break-condition --force 16" \
455 "\\^done" \
456 "clear the condition with --force"
457 mi_gdb_test "-break-condition --force" \
458 "\\^error,msg=\"-break-condition: Missing the <number> argument\"" \
459 "no arguments with --force"
10e578d7
TBA
460}
461
ef274d26
PA
462proc test_break {mi_mode} {
463 global srcdir subdir binfile
464
465 mi_gdb_exit
466
467 if {$mi_mode == "separate"} {
468 set start_ops "separate-mi-tty"
469 } else {
470 set start_ops ""
471 }
472 if [mi_gdb_start $start_ops] {
473 return
474 }
475
476 mi_delete_breakpoints
477 mi_gdb_reinitialize_dir $srcdir/$subdir
478 mi_gdb_load ${binfile}
fb40c209 479
ef274d26
PA
480 test_tbreak_creation_and_listing
481 test_rbreak_creation_and_listing
60c46647 482
ef274d26 483 test_ignore_count
723a2275 484
ef274d26 485 test_error
41447f92 486
ef274d26 487 test_disabled_creation
48cb2d85 488
ef274d26 489 test_breakpoint_commands
558a9d82 490
ef274d26 491 test_abreak_creation
eb8c4e2e 492
ef274d26 493 test_explicit_breakpoints
10e578d7
TBA
494
495 test_forced_conditions
ef274d26
PA
496}
497
81f47ac2
AH
498if [gdb_debug_enabled] {
499 # gdb debug doesn't work for separate-mi-tty.
500 set modes {"main"}
501} else {
502 set modes {"main" "separate"}
503}
504
505foreach_with_prefix mi-mode $modes {
ef274d26
PA
506 test_break ${mi-mode}
507}
This page took 2.314536 seconds and 4 git commands to generate.