Update the copyright notice of some of the files I missed
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-break.exp
CommitLineData
0fb0cc75
JB
1# Copyright 1999, 2001, 2004, 2006, 2007, 2008, 2009
2# Free Software Foundation, Inc.
fb40c209
AC
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
fb40c209 7# (at your option) any later version.
e22f8b7c 8#
fb40c209
AC
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
fb40c209 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
fb40c209 16
fb40c209
AC
17#
18# Test essential Machine interface (MI) operations
19#
20# Verify that, using the MI, we can run a simple program and perform basic
21# debugging activities like: insert breakpoints, run the program,
22# step, next, continue until it ends and, last but not least, quit.
23#
24# The goal is not to test gdb functionality, which is done by other tests,
25# but to verify the correct output response to MI operations.
26#
27
28load_lib mi-support.exp
b30bf9ee 29set MIFLAGS "-i=mi"
fb40c209
AC
30
31gdb_exit
32if [mi_gdb_start] {
33 continue
34}
35
36set testfile "basics"
37set srcfile ${testfile}.c
38set binfile ${objdir}/${subdir}/${testfile}
39if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
b60f0898
JB
40 untested mi-break.exp
41 return -1
fb40c209
AC
42}
43
44mi_delete_breakpoints
45mi_gdb_reinitialize_dir $srcdir/$subdir
46mi_gdb_load ${binfile}
47
deea8bb0
MC
48# Locate line numbers in basics.c.
49set line_callee4_head [gdb_get_line_number "callee4 ("]
50set line_callee4_body [expr $line_callee4_head + 2]
51set line_callee3_head [gdb_get_line_number "callee3 ("]
52set line_callee3_body [expr $line_callee3_head + 2]
53set line_callee2_head [gdb_get_line_number "callee2 ("]
54set line_callee2_body [expr $line_callee2_head + 2]
55set line_callee1_head [gdb_get_line_number "callee1 ("]
56set line_callee1_body [expr $line_callee1_head + 2]
57set line_main_head [gdb_get_line_number "main ("]
58set line_main_body [expr $line_main_head + 2]
59
38fcd64c
DJ
60set fullname "fullname=\"${fullname_syntax}${srcfile}\""
61
fb40c209
AC
62proc test_tbreak_creation_and_listing {} {
63 global mi_gdb_prompt
64 global srcfile
65 global hex
deea8bb0
MC
66 global line_callee4_head line_callee4_body
67 global line_callee3_head line_callee3_body
68 global line_callee2_head line_callee2_body
69 global line_callee1_head line_callee1_body
70 global line_main_head line_main_body
38fcd64c 71 global fullname
fb40c209
AC
72
73 # Insert some breakpoints and list them
74 # Also, disable some so they do not interfere with other tests
75 # Tests:
76 # -break-insert -t main
77 # -break-insert -t basics.c:callee2
deea8bb0
MC
78 # -break-insert -t basics.c:$line_callee3_head
79 # -break-insert -t srcfile:$line_callee4_head
fb40c209
AC
80 # -break-list
81
d24317b4 82 mi_create_breakpoint "-t main" 1 del main ".*basics.c" $line_main_body $hex \
fb40c209
AC
83 "break-insert -t operation"
84
d24317b4 85 mi_create_breakpoint "-t basics.c:callee2" 2 del callee2 ".*basics.c" $line_callee2_body $hex \
fb40c209
AC
86 "insert temp breakpoint at basics.c:callee2"
87
d24317b4 88 mi_create_breakpoint "-t basics.c:$line_callee3_head" 3 del callee3 ".*basics.c" $line_callee3_body $hex \
b40e7bf3 89 "insert temp breakpoint at basics.c:\$line_callee3_head"
fb40c209 90
deea8bb0 91 # Getting the quoting right is tricky. That is "\"<file>\":$line_callee4_head"
d24317b4 92 mi_create_breakpoint "-t \"\\\"${srcfile}\\\":$line_callee4_head\"" 4 del callee4 ".*basics.c" $line_callee4_body $hex \
deea8bb0 93 "insert temp breakpoint at \"<fullfilename>\":\$line_callee4_head"
fb40c209
AC
94
95 mi_gdb_test "666-break-list" \
d24317b4 96 "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
97 "list of breakpoints"
98
99 mi_gdb_test "777-break-delete" \
100 "777\\^done" \
101 "delete temp breakpoints"
102}
103
104proc test_rbreak_creation_and_listing {} {
105 global mi_gdb_prompt
106 global srcfile
107 global hex
deea8bb0
MC
108 global line_callee4_head line_callee4_body
109 global line_callee3_head line_callee3_body
110 global line_callee2_head line_callee2_body
111 global line_callee1_head line_callee1_body
112 global line_main_head line_main_body
fb40c209
AC
113
114 # Insert some breakpoints and list them
115 # Also, disable some so they do not interfere with other tests
116 # Tests:
117 # -break-insert -r main
118 # -break-insert -r callee2
119 # -break-insert -r callee
120 # -break-insert -r .*llee
121 # -break-list
122
123 setup_xfail "*-*-*"
124 mi_gdb_test "122-break-insert -r main" \
deea8bb0 125 "122\\^done,bkpt=\{number=\"5\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_main_body\"\}" \
fb40c209
AC
126 "break-insert -r operation"
127
128 setup_xfail "*-*-*"
129 mi_gdb_test "133-break-insert -r callee2" \
deea8bb0 130 "133\\^done,bkpt=\{number=\"6\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee2_body\"\}" \
fb40c209
AC
131 "insert breakpoint with regexp callee2"
132
133 setup_xfail "*-*-*"
134 mi_gdb_test "144-break-insert -r callee" \
deea8bb0 135 "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
136 "insert breakpoint with regexp callee"
137
138 setup_xfail "*-*-*"
139 mi_gdb_test "155-break-insert -r \.\*llee" \
deea8bb0 140 "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
141 "insert breakpoint with regexp .*llee"
142
143 setup_xfail "*-*-*"
144 mi_gdb_test "166-break-list" \
deea8bb0 145 "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
146 "list of breakpoints"
147
148 mi_gdb_test "177-break-delete" \
149 "177\\^done" \
150 "delete temp breakpoints"
151}
152
60c46647
VP
153proc test_ignore_count {} {
154 global mi_gdb_prompt
155
156 mi_gdb_test "-break-insert -i 1 callme" \
157 "\\^done.*ignore=\"1\".*" \
158 "insert breakpoint with ignore count at callme"
159
160 mi_run_cmd
161
6ae37fef 162 mi_expect_stop "breakpoint-hit" "callme" "\{name=\"i\",value=\"2\"\}" ".*basics.c" "52" \
83408de7 163 {"" "disp=\"keep\"" } "run to breakpoint with ignore count"
60c46647
VP
164}
165
723a2275
VP
166proc test_error {} {
167 global mi_gdb_prompt
168
169 mi_gdb_test "-break-insert function_that_does_not_exist" \
170 ".*\\^error,msg=\"Function \\\\\"function_that_does_not_exist\\\\\" not defined.\"" \
171 "breakpoint at nonexistent function"
98deb0da
VP
172
173 # We used to have a bug whereby -break-insert that failed would not
174 # clear some event hooks. As result, whenever we evaluate expression
175 # containing function call, the internal breakpoint created to handle
176 # function call would be reported, messing up MI output.
177 mi_gdb_test "-var-create V * return_1()" \
178 "\\^done,name=\"V\",numchild=\"0\",value=\"1\",type=\"int\"" \
179 "create varobj for function call"
180
181 mi_gdb_test "-var-update *" \
182 "\\^done,changelist=\\\[\\\]" \
183 "update varobj for function call"
723a2275
VP
184}
185
fb40c209
AC
186test_tbreak_creation_and_listing
187test_rbreak_creation_and_listing
188
60c46647
VP
189test_ignore_count
190
723a2275
VP
191test_error
192
fb40c209
AC
193mi_gdb_exit
194return 0
This page took 1.35743 seconds and 4 git commands to generate.