gdb/testsuite:
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-break.exp
CommitLineData
0b302171 1# Copyright 1999, 2001, 2004, 2006-2012 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
fb40c209
AC
16#
17# Test essential Machine interface (MI) operations
18#
19# Verify that, using the MI, we can run a simple program and perform basic
20# debugging activities like: insert breakpoints, run the program,
21# step, next, continue until it ends and, last but not least, quit.
22#
23# The goal is not to test gdb functionality, which is done by other tests,
24# but to verify the correct output response to MI operations.
25#
26
27load_lib mi-support.exp
b30bf9ee 28set MIFLAGS "-i=mi"
fb40c209
AC
29
30gdb_exit
31if [mi_gdb_start] {
32 continue
33}
34
35set testfile "basics"
36set srcfile ${testfile}.c
3788363d 37set binfile ${objdir}/${subdir}/mi-break
9357e021 38if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
39 untested mi-break.exp
40 return -1
fb40c209
AC
41}
42
43mi_delete_breakpoints
44mi_gdb_reinitialize_dir $srcdir/$subdir
45mi_gdb_load ${binfile}
46
deea8bb0
MC
47# Locate line numbers in basics.c.
48set line_callee4_head [gdb_get_line_number "callee4 ("]
49set line_callee4_body [expr $line_callee4_head + 2]
50set line_callee3_head [gdb_get_line_number "callee3 ("]
51set line_callee3_body [expr $line_callee3_head + 2]
52set line_callee2_head [gdb_get_line_number "callee2 ("]
53set line_callee2_body [expr $line_callee2_head + 2]
54set line_callee1_head [gdb_get_line_number "callee1 ("]
55set line_callee1_body [expr $line_callee1_head + 2]
56set line_main_head [gdb_get_line_number "main ("]
57set line_main_body [expr $line_main_head + 2]
dd322c54
JK
58set line_callme_head [gdb_get_line_number "callme ("]
59set line_callme_body [expr $line_callme_head + 2]
deea8bb0 60
38fcd64c
DJ
61set fullname "fullname=\"${fullname_syntax}${srcfile}\""
62
fb40c209
AC
63proc test_tbreak_creation_and_listing {} {
64 global mi_gdb_prompt
65 global srcfile
66 global hex
deea8bb0
MC
67 global line_callee4_head line_callee4_body
68 global line_callee3_head line_callee3_body
69 global line_callee2_head line_callee2_body
70 global line_callee1_head line_callee1_body
71 global line_main_head line_main_body
38fcd64c 72 global fullname
fb40c209
AC
73
74 # Insert some breakpoints and list them
75 # Also, disable some so they do not interfere with other tests
76 # Tests:
77 # -break-insert -t main
78 # -break-insert -t basics.c:callee2
deea8bb0
MC
79 # -break-insert -t basics.c:$line_callee3_head
80 # -break-insert -t srcfile:$line_callee4_head
fb40c209
AC
81 # -break-list
82
d24317b4 83 mi_create_breakpoint "-t main" 1 del main ".*basics.c" $line_main_body $hex \
fb40c209
AC
84 "break-insert -t operation"
85
d24317b4 86 mi_create_breakpoint "-t basics.c:callee2" 2 del callee2 ".*basics.c" $line_callee2_body $hex \
fb40c209
AC
87 "insert temp breakpoint at basics.c:callee2"
88
56ef84b1 89 mi_create_breakpoint "-t basics.c:$line_callee3_head" 3 del callee3 ".*basics.c" $line_callee3_head $hex \
b40e7bf3 90 "insert temp breakpoint at basics.c:\$line_callee3_head"
fb40c209 91
deea8bb0 92 # Getting the quoting right is tricky. That is "\"<file>\":$line_callee4_head"
56ef84b1 93 mi_create_breakpoint "-t \"\\\"${srcfile}\\\":$line_callee4_head\"" 4 del callee4 ".*basics.c" $line_callee4_head $hex \
deea8bb0 94 "insert temp breakpoint at \"<fullfilename>\":\$line_callee4_head"
fb40c209
AC
95
96 mi_gdb_test "666-break-list" \
d24317b4 97 "666\\\^done,BreakpointTable=\{nr_rows=\".\",nr_cols=\".\",hdr=\\\[\{width=\".*\",alignment=\".*\",col_name=\"number\",colhdr=\"Num\"\}.*colhdr=\"Type\".*colhdr=\"Disp\".*colhdr=\"Enb\".*colhdr=\"Address\".*colhdr=\"What\".*\\\],body=\\\[bkpt=\{number=\"1\",type=\"breakpoint\",disp=\"del\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",${fullname},line=\"$line_main_body\",times=\"0\",original-location=\".*\"\}.*\\\]\}" \
fb40c209
AC
98 "list of breakpoints"
99
100 mi_gdb_test "777-break-delete" \
101 "777\\^done" \
102 "delete temp breakpoints"
103}
104
105proc test_rbreak_creation_and_listing {} {
106 global mi_gdb_prompt
107 global srcfile
108 global hex
deea8bb0
MC
109 global line_callee4_head line_callee4_body
110 global line_callee3_head line_callee3_body
111 global line_callee2_head line_callee2_body
112 global line_callee1_head line_callee1_body
113 global line_main_head line_main_body
fb40c209
AC
114
115 # Insert some breakpoints and list them
116 # Also, disable some so they do not interfere with other tests
117 # Tests:
118 # -break-insert -r main
119 # -break-insert -r callee2
120 # -break-insert -r callee
121 # -break-insert -r .*llee
122 # -break-list
123
18b5ff1b 124 setup_kfail "*-*-*" mi/14270
fb40c209 125 mi_gdb_test "122-break-insert -r main" \
deea8bb0 126 "122\\^done,bkpt=\{number=\"5\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_main_body\"\}" \
fb40c209
AC
127 "break-insert -r operation"
128
18b5ff1b 129 setup_kfail "*-*-*" mi/14270
fb40c209 130 mi_gdb_test "133-break-insert -r callee2" \
deea8bb0 131 "133\\^done,bkpt=\{number=\"6\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee2_body\"\}" \
fb40c209
AC
132 "insert breakpoint with regexp callee2"
133
18b5ff1b 134 setup_kfail "*-*-*" mi/14270
fb40c209 135 mi_gdb_test "144-break-insert -r callee" \
deea8bb0 136 "144\\^done,bkpt=\{number=\"7\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee1_body\"\},bkpt=\{number=\"8\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee2_body\"\},bkpt=\{number=\"9\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee3_body\"\},bkpt=\{number=\"10\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee4_body\"\}" \
fb40c209
AC
137 "insert breakpoint with regexp callee"
138
18b5ff1b 139 setup_kfail "*-*-*" mi/14270
fb40c209 140 mi_gdb_test "155-break-insert -r \.\*llee" \
deea8bb0 141 "155\\^done,bkpt=\{number=\"11\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee1_body\"\},bkpt=\{number=\"12\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee2_body\"\},bkpt=\{number=\"13\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee3_body\"\},bkpt=\{number=\"14\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee4_body\"\}" \
fb40c209
AC
142 "insert breakpoint with regexp .*llee"
143
18b5ff1b 144 setup_kfail "*-*-*" mi/14270
fb40c209 145 mi_gdb_test "166-break-list" \
deea8bb0 146 "1\\\^done,BreakpointTable=\{nr_rows=\".\",nr_cols=\".\",hdr=\\\[\{width=\".*\",alignment=\".*\",col_name=\"number\",colhdr=\"Num\"\}.*colhdr=\"Type\".*colhdr=\"Disp\".*colhdr=\"Enb\".*colhdr=\"Address\".*colhdr=\"What\".*\\\],body=\\\[bkpt=\{number=\"5\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"$line_main_body\",times=\"0\"\},.*\}\\\]\}" \
fb40c209
AC
147 "list of breakpoints"
148
149 mi_gdb_test "177-break-delete" \
150 "177\\^done" \
151 "delete temp breakpoints"
152}
153
60c46647
VP
154proc test_ignore_count {} {
155 global mi_gdb_prompt
dd322c54 156 global line_callme_body
60c46647
VP
157
158 mi_gdb_test "-break-insert -i 1 callme" \
159 "\\^done.*ignore=\"1\".*" \
160 "insert breakpoint with ignore count at callme"
161
162 mi_run_cmd
163
dd322c54 164 mi_expect_stop "breakpoint-hit" "callme" "\{name=\"i\",value=\"2\"\}" ".*basics.c" $line_callme_body \
83408de7 165 {"" "disp=\"keep\"" } "run to breakpoint with ignore count"
60c46647
VP
166}
167
723a2275
VP
168proc test_error {} {
169 global mi_gdb_prompt
170
171 mi_gdb_test "-break-insert function_that_does_not_exist" \
172 ".*\\^error,msg=\"Function \\\\\"function_that_does_not_exist\\\\\" not defined.\"" \
173 "breakpoint at nonexistent function"
98deb0da
VP
174
175 # We used to have a bug whereby -break-insert that failed would not
176 # clear some event hooks. As result, whenever we evaluate expression
177 # containing function call, the internal breakpoint created to handle
178 # function call would be reported, messing up MI output.
179 mi_gdb_test "-var-create V * return_1()" \
0cc7d26f 180 "\\^done,name=\"V\",numchild=\"0\",value=\"1\",type=\"int\",has_more=\"0\"" \
98deb0da
VP
181 "create varobj for function call"
182
183 mi_gdb_test "-var-update *" \
184 "\\^done,changelist=\\\[\\\]" \
185 "update varobj for function call"
723a2275
VP
186}
187
41447f92
VP
188proc test_disabled_creation {} {
189 global mi_gdb_prompt
190 global hex
191 global line_callee2_body
192
193 mi_gdb_test "-break-insert -d basics.c:callee2" \
194 "\\^done,bkpt=\{number=\"6\",type=\"breakpoint\",disp=\"keep\",enabled=\"n\",addr=\"$hex\",func=\"callee2\",file=\".*basics.c\",fullname=\".*\",line=\"$line_callee2_body\",times=\"0\",original-location=\".*\"\}" \
195 "test disabled creation"
196
197 mi_gdb_test "-break-delete" \
198 "\\^done" \
199 "test disabled creation: cleanup"
200}
201
48cb2d85
VP
202proc test_breakpoint_commands {} {
203 global line_callee2_body
204 global hex
205 global fullname
206
207 mi_create_breakpoint "basics.c:callee2" 7 keep callee2 ".*basics.c" $line_callee2_body $hex \
208 "breakpoint commands: insert breakpoint at basics.c:callee2"
209
210 mi_gdb_test "-break-commands 7 \"print 10\" \"continue\"" \
211 "\\^done" \
212 "breakpoint commands: set commands"
213
214 mi_gdb_test "-break-info 7" \
215 "\\^done,BreakpointTable=\{nr_rows=\".\",nr_cols=\".\",hdr=\\\[\{width=\".*\",alignment=\".*\",col_name=\"number\",colhdr=\"Num\"\}.*colhdr=\"Type\".*colhdr=\"Disp\".*colhdr=\"Enb\".*colhdr=\"Address\".*colhdr=\"What\".*\\\],body=\\\[bkpt=\{number=\"7\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"callee2\",file=\".*basics.c\",${fullname},line=\"$line_callee2_body\",times=\"0\",script=\{\"print 10\",\"continue\"\},original-location=\".*\"\}.*\\\]\}" \
216 "breakpoint commands: check that commands are set"
217
218 mi_gdb_test "-break-commands 7" \
219 "\\^done" \
220 "breakpoint commands: clear commands"
221
222 mi_list_breakpoints [list [list 7 "keep" "callee2" "basics.c" "$line_callee2_body" $hex]] \
223 "breakpoint commands: check that commands are cleared"
5d4e2b76
VP
224
225 mi_run_to_main
226
227 mi_create_breakpoint "basics.c:callee2" 9 keep callee2 ".*basics.c" $line_callee2_body $hex \
228 "breakpoint commands: insert breakpoint at basics.c:callee2, again"
229
230 mi_gdb_test "-break-commands 9 \"set \$i=0\" \"while \$i<10\" \"print \$i\" \"set \$i=\$i+1\" \"end\" \"continue\" " \
231 "\\^done" \
232 "breakpoint commands: set commands"
233
4a07b7da
PA
234 mi_send_resuming_command "exec-continue" "breakpoint commands: continue"
235
236 set test "intermediate stop and continue"
237 gdb_expect {
238 -re ".*\\\$1 = 0.*\\\$10 = 9.*\\*running" {
239 pass $test
240 }
241 timeout {
242 fail $test
243 }
244 }
245
246 mi_expect_stop "exited-normally" "" "" "" "" "" "test hitting breakpoint with commands"
48cb2d85
VP
247}
248
fb40c209
AC
249test_tbreak_creation_and_listing
250test_rbreak_creation_and_listing
251
60c46647
VP
252test_ignore_count
253
723a2275
VP
254test_error
255
41447f92
VP
256test_disabled_creation
257
48cb2d85
VP
258test_breakpoint_commands
259
fb40c209
AC
260mi_gdb_exit
261return 0
This page took 1.237572 seconds and 4 git commands to generate.