Emit ^running via observer.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-break.exp
CommitLineData
9b254dd1 1# Copyright 1999, 2001, 2004, 2006, 2007, 2008 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
37set binfile ${objdir}/${subdir}/${testfile}
38if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
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]
58
38fcd64c
DJ
59set fullname "fullname=\"${fullname_syntax}${srcfile}\""
60
fb40c209
AC
61proc test_tbreak_creation_and_listing {} {
62 global mi_gdb_prompt
63 global srcfile
64 global hex
deea8bb0
MC
65 global line_callee4_head line_callee4_body
66 global line_callee3_head line_callee3_body
67 global line_callee2_head line_callee2_body
68 global line_callee1_head line_callee1_body
69 global line_main_head line_main_body
38fcd64c 70 global fullname
fb40c209
AC
71
72 # Insert some breakpoints and list them
73 # Also, disable some so they do not interfere with other tests
74 # Tests:
75 # -break-insert -t main
76 # -break-insert -t basics.c:callee2
deea8bb0
MC
77 # -break-insert -t basics.c:$line_callee3_head
78 # -break-insert -t srcfile:$line_callee4_head
fb40c209
AC
79 # -break-list
80
d24317b4 81 mi_create_breakpoint "-t main" 1 del main ".*basics.c" $line_main_body $hex \
fb40c209
AC
82 "break-insert -t operation"
83
d24317b4 84 mi_create_breakpoint "-t basics.c:callee2" 2 del callee2 ".*basics.c" $line_callee2_body $hex \
fb40c209
AC
85 "insert temp breakpoint at basics.c:callee2"
86
d24317b4 87 mi_create_breakpoint "-t basics.c:$line_callee3_head" 3 del callee3 ".*basics.c" $line_callee3_body $hex \
b40e7bf3 88 "insert temp breakpoint at basics.c:\$line_callee3_head"
fb40c209 89
deea8bb0 90 # Getting the quoting right is tricky. That is "\"<file>\":$line_callee4_head"
d24317b4 91 mi_create_breakpoint "-t \"\\\"${srcfile}\\\":$line_callee4_head\"" 4 del callee4 ".*basics.c" $line_callee4_body $hex \
deea8bb0 92 "insert temp breakpoint at \"<fullfilename>\":\$line_callee4_head"
fb40c209
AC
93
94 mi_gdb_test "666-break-list" \
d24317b4 95 "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
96 "list of breakpoints"
97
98 mi_gdb_test "777-break-delete" \
99 "777\\^done" \
100 "delete temp breakpoints"
101}
102
103proc test_rbreak_creation_and_listing {} {
104 global mi_gdb_prompt
105 global srcfile
106 global hex
deea8bb0
MC
107 global line_callee4_head line_callee4_body
108 global line_callee3_head line_callee3_body
109 global line_callee2_head line_callee2_body
110 global line_callee1_head line_callee1_body
111 global line_main_head line_main_body
fb40c209
AC
112
113 # Insert some breakpoints and list them
114 # Also, disable some so they do not interfere with other tests
115 # Tests:
116 # -break-insert -r main
117 # -break-insert -r callee2
118 # -break-insert -r callee
119 # -break-insert -r .*llee
120 # -break-list
121
122 setup_xfail "*-*-*"
123 mi_gdb_test "122-break-insert -r main" \
deea8bb0 124 "122\\^done,bkpt=\{number=\"5\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_main_body\"\}" \
fb40c209
AC
125 "break-insert -r operation"
126
127 setup_xfail "*-*-*"
128 mi_gdb_test "133-break-insert -r callee2" \
deea8bb0 129 "133\\^done,bkpt=\{number=\"6\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee2_body\"\}" \
fb40c209
AC
130 "insert breakpoint with regexp callee2"
131
132 setup_xfail "*-*-*"
133 mi_gdb_test "144-break-insert -r callee" \
deea8bb0 134 "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
135 "insert breakpoint with regexp callee"
136
137 setup_xfail "*-*-*"
138 mi_gdb_test "155-break-insert -r \.\*llee" \
deea8bb0 139 "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
140 "insert breakpoint with regexp .*llee"
141
142 setup_xfail "*-*-*"
143 mi_gdb_test "166-break-list" \
deea8bb0 144 "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
145 "list of breakpoints"
146
147 mi_gdb_test "177-break-delete" \
148 "177\\^done" \
149 "delete temp breakpoints"
150}
151
60c46647
VP
152proc test_ignore_count {} {
153 global mi_gdb_prompt
154
155 mi_gdb_test "-break-insert -i 1 callme" \
156 "\\^done.*ignore=\"1\".*" \
157 "insert breakpoint with ignore count at callme"
158
159 mi_run_cmd
160
6ae37fef 161 mi_expect_stop "breakpoint-hit" "callme" "\{name=\"i\",value=\"2\"\}" ".*basics.c" "52" \
83408de7 162 {"" "disp=\"keep\"" } "run to breakpoint with ignore count"
60c46647
VP
163}
164
723a2275
VP
165proc test_error {} {
166 global mi_gdb_prompt
167
168 mi_gdb_test "-break-insert function_that_does_not_exist" \
169 ".*\\^error,msg=\"Function \\\\\"function_that_does_not_exist\\\\\" not defined.\"" \
170 "breakpoint at nonexistent function"
98deb0da
VP
171
172 # We used to have a bug whereby -break-insert that failed would not
173 # clear some event hooks. As result, whenever we evaluate expression
174 # containing function call, the internal breakpoint created to handle
175 # function call would be reported, messing up MI output.
176 mi_gdb_test "-var-create V * return_1()" \
177 "\\^done,name=\"V\",numchild=\"0\",value=\"1\",type=\"int\"" \
178 "create varobj for function call"
179
180 mi_gdb_test "-var-update *" \
181 "\\^done,changelist=\\\[\\\]" \
182 "update varobj for function call"
723a2275
VP
183}
184
fb40c209
AC
185test_tbreak_creation_and_listing
186test_rbreak_creation_and_listing
187
60c46647
VP
188test_ignore_count
189
723a2275
VP
190test_error
191
fb40c209
AC
192mi_gdb_exit
193return 0
This page took 0.741281 seconds and 4 git commands to generate.