]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.hp/xdb3.exp
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.hp / xdb3.exp
1 # Copyright (C) 1998 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7 #
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.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-gdb@prep.ai.mit.edu
19
20
21 if $tracelevel then {
22 strace $tracelevel
23 }
24
25
26 set testfile1 "average"
27 set testfile2 "sum"
28 set testfile "xdb-test"
29 set binfile1 ${objdir}/${subdir}/${testfile1}
30 set binfile2 ${objdir}/${subdir}/${testfile2}
31 set binfile ${objdir}/${subdir}/${testfile}
32
33 if { [gdb_compile "${srcdir}/${subdir}/average.c" "${binfile1}.o" object {debug}] != "" } {
34 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
35 }
36
37 if { [gdb_compile "${srcdir}/${subdir}/sum.c" "${binfile2}.o" object {debug}] != "" } {
38 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
39 }
40
41 if { [gdb_compile "${binfile1}.o ${binfile2}.o" ${binfile} executable {debug}] != "" } {
42 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
43 }
44
45 if [get_compiler_info ${binfile}] {
46 return -1;
47 }
48 if {[skip_hp_tests $gcc_compiled]} then { continue }
49
50
51 proc xdb_reinitialize_dir { subdir } {
52 global gdb_prompt
53
54 send_gdb "D\n"
55 gdb_expect {
56 -re "Reinitialize source path to empty.*y or n. " {
57 send_gdb "y\n"
58 gdb_expect {
59 -re "Source directories searched.*$gdb_prompt $" {
60 send_gdb "D $subdir\n"
61 gdb_expect {
62 -re "Source directories searched.*$gdb_prompt $" {
63 verbose "Dir set to $subdir"
64 }
65 -re ".*$gdb_prompt $" {
66 perror "Dir \"$subdir\" failed."
67 }
68 }
69 }
70 -re ".*$gdb_prompt $" {
71 perror "Dir \"$subdir\" failed."
72 }
73 }
74 }
75 -re ".*$gdb_prompt $" {
76 perror "Dir \"$subdir\" failed."
77 }
78 }
79 }
80
81 #
82 #test_search
83 #
84 proc test_search { } {
85 gdb_test "set listsize 4" ""
86 gdb_test "list average.c:1" "1\[ \t\]+/. This is a sample .*"
87 gdb_test "/ print_average" "10\[ \t\]+void print_average\\(int list.*"
88 gdb_test "/ print_average" "12\[ \t\]+void print_average\\(list, low, high\\)"
89 gdb_test "/ print_average" "35\[ \t\]+print_average \\(my_list, first, last\\);"
90 gdb_test "? print_average" "12\[ \t\]+void print_average\\(list, low, high\\)"
91 gdb_test "? sum" "Expression not found"
92 }
93
94 #
95 #test_viewing_loc
96 #
97 proc test_viewing_loc { } {
98 gdb_test "L" "No stack."
99 gdb_test "break main" ""
100 gdb_test "R" ""
101 gdb_test "L" "#0\[ \t\]+main \\(\\) at.*average.c:31\r\n31\[ \t\]+int first = 0;"
102 }
103
104 #
105 #test_dir_list
106 #
107 proc test_dir_list { } {
108 gdb_test "ld" "Source directories searched: .*"
109 }
110
111 #
112 #test_list_sources
113 #
114 proc test_list_sources { } {
115 gdb_test "lf" "Source files for which symbols have been read in:.*average\\.c,.*Source files for which symbols will be read in on demand:.*sum\\.c"
116 }
117
118 #
119 #test_vlist
120 #
121 proc test_vlist { } {
122 gdb_test "v main" "27\[ \t\]+main \\(\\)\r\n28\[ \t\]+#endif\r\n29\[ \t\]+.\r\n30\[ \t\]+char c;"
123 }
124
125 #
126 #test_va
127 #
128 proc test_va { } {
129 gdb_test "va main" "Dump of assembler code for function main:.*End of assembler dump\."
130 }
131
132 #
133 #test_list_globals
134 #
135 proc test_list_globals { } {
136 gdb_test "lg" "All defined variables:\r\n\r\nFile globals:.*"
137 # gdb_test "lg" "All defined variables:\r\n\r\nFile globals:\r\nchar __buffer.512.;\r\nint __d_eh_catch_catch;\r\nint __d_eh_catch_throw;.*"
138 }
139
140 #
141 #test_list_registers
142 #
143 proc test_list_registers { } {
144 gdb_test "lr" "\[ \t\]+flags:.*r18:.*pcsqt:.*ccr:.*\r\n\[ \t\]+r1:.*r19:.*eiem:.*cr12:.*"
145 gdb_test "lr r1" "r1 .*"
146 }
147
148 #
149 #test_backtrace
150 #
151 proc test_backtrace { } {
152 gdb_test "t" "#0 main \\(\\) at.*average.c:31"
153 gdb_test "T" "#0 main \\(\\) at.*average.c:31\r\n\[ \t\]+c = 0.*\r\n\[ \t\]+first = 0\r\n\[ \t\]+last = 0"
154
155 gdb_test "break sum" ""
156 gdb_test "cont" ""
157
158 gdb_test "t" "#0 sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:11\r\n#1 0x.* in print_average \\(list=0x.*, low=0, high=9\\) at.*average\.c:17\r\n#2 0x.* in main \\(\\) at.*average\.c:35"
159 gdb_test "t 1" "#0 sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:11\r\n\\(More stack frames follow\.\.\.\\)"
160 gdb_test "T" "#0 sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:11\r\n\[ \t\]+i = 0\r\n\[ \t\]+s = 0\r\n#1 0x.* in print_average \\(list=0x.*, low=0, high=9\\) at.*average\.c:17\r\n\[ \t\]+total = 0\r\n\[ \t\]+num_elements = 0\r\n\[ \t\]+average = 0\r\n#2 0x.* in main \\(\\) at.*average\.c:35\r\n\[ \t\]+c = 0 '.000'\r\n\[ \t\]+first = 0\r\n\[ \t\]+last = 9"
161 gdb_test "T 1" "#0 sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:11\r\n\[ \t\]+i = 0\r\n\[ \t\]+s = 0\r\n\\(More stack frames follow\.\.\.\\)"
162
163 gdb_test "V" "#0 sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:11\r\n\\11\[ \t\]+int i, s = 0;"
164 gdb_test "V 1" "#1 0x.* in print_average \\(list=0x.*, low=0, high=9\\) at.*average\.c:17\r\n17\[ \t\]+total = sum\\(list, low, high\\);"
165 }
166
167 #
168 # test_go
169 #
170 proc test_go { } {
171 gdb_test "break main" ""
172 gdb_test "R" ""
173
174 gdb_test "g +1" "Breakpoint.*at 0x.*: file.*average\.c, line 32\.\r\nContinuing at 0x.*\.\r\nmain \\(\\) at.*average\.c:32\r\n32\[ \t\]+int last = num-1;"
175 gdb_test "g 35" "Breakpoint.*at 0x.*: file.*average\.c, line 35\.\r\nContinuing at 0x.*\.\r\nmain \\(\\) at.*average\.c:35\r\n35\[ \t\]+print_average \\(my_list, first, last\\);"
176
177 }
178
179 #
180 #test_breakpoints
181 #
182 proc test_breakpoints { } {
183 global gdb_prompt
184
185 gdb_test "sb" ""
186 gdb_test "lb" "Num.*Type.*Disp.*Enb.*Address.*What\r\n1\[ \r\]+breakpoint\[ \r\]+keep n.*in main at.*average\.c:31.*"
187 gdb_test "ab" ""
188 gdb_test "lb" "Num.*Type.*Disp.*Enb.*Address.*What\r\n1\[ \r\]+breakpoint\[ \r\]+keep y.*in main at.*average\.c:31.*"
189 gdb_test "ba sum" "Breakpoint.*at.*: file.*sum\.c, line 11\."
190 gdb_test "cont" ""
191 gdb_test "bx" "Breakpoint.*at.*: file.*sum.c, line 15\."
192 gdb_test "bx if (1)" "Breakpoint.*at.*: file.*sum.c, line 15\."
193 gdb_test "bx 1" "Breakpoint.*at.*: file.*average.c, line 22\."
194 gdb_test "bx 1 if (1)" "Breakpoint.*at.*: file.*average.c, line 22\."
195 gdb_test "bc 1 2" "Will ignore next 2 crossings of breakpoint 1\."
196 gdb_test "lb 1" "Num.*Type.*Disp.*Enb.*Address.*What\r\n1\[ \r\]+breakpoint\[ \r\]+keep y.*in main at.*average\.c:31\r\n.*breakpoint already hit 1 time\r\n.*ignore next 2 hits.*"
197
198 send_gdb "db\n"
199 gdb_expect {
200 -re "Delete all breakpoints.*y or n. $" {
201 send_gdb "y\n"
202 exp_continue
203 }
204 -re "y\r\n$gdb_prompt $" {}
205 -re ".*$gdb_prompt $" { # This happens if there were no breakpoints
206 }
207 timeout { perror "Delete all breakpoints (timeout)" ; return }
208 }
209 send_gdb "lb\n"
210 gdb_expect {
211 -re "No breakpoints or watchpoints..*$gdb_prompt $" {}
212 -re ".*$gdb_prompt $" { perror "breakpoints not deleted" ; return }
213 timeout { perror "info breakpoints (timeout)" ; return }
214 }
215 gdb_test "xbreak" "Breakpoint.*at.*file.*sum.c, line 15."
216 gdb_test "xbreak print_average" "Breakpoint.*at.*file.*average.c, line 22."
217 gdb_test "xbreak if (1)" "Note: breakpoint.*also set at pc.*Breakpoint.*at.*file.*sum.c, line 15."
218 gdb_test "xbreak print_average if (1)" "Note: breakpoint.*also set at pc.*Breakpoint.*at.*file.*average.c, line 22."
219
220 send_gdb "lb\n"
221 gdb_expect {
222 -re "Num Type Disp Enb Address What.*breakpoint keep y.*in sum at.*sum.c:15.*breakpoint keep y.*in print_average at.*average.c:22.*breakpoint keep y.*in sum at.*sum.c:15.*stop only if 1.*breakpoint keep y.*in print_average at.*average.c:22.*stop only if 1.*$gdb_prompt $" {pass "lb on xbreaks"}
223 -re ".*$gdb_prompt $" { fail "breakpoints not deleted"}
224 timeout { fail "info breakpoints (timeout)" }
225 }
226
227 }
228
229 #
230 # test_signals
231 #
232 proc test_signals { } {
233 gdb_test "handle SIGTERM nostop noprint" ""
234 gdb_test "z SIGTERM s" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*Yes.*Yes.*Yes.*Terminated"
235 gdb_test "z SIGTERM r" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*No.*No.*Yes.*Terminated"
236 gdb_test "z SIGTERM i" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*No.*No.*No.*Terminated"
237 gdb_test "z SIGTERM r" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*No.*Yes.*No.*Terminated"
238 gdb_test "z SIGTERM Q" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*No.*No.*No.*Terminated"
239 gdb_test "lz" "Signal.*Stop.*Print.*Pass to program.*Description\r\n\r\nSIGHUP.*Yes.*"
240 }
241
242
243
244 # Start with a fresh gdb.
245 global GDBFLAGS
246 set saved_gdbflags $GDBFLAGS
247
248 set GDBFLAGS "$GDBFLAGS --xdb"
249
250 gdb_exit
251 gdb_start
252
253 xdb_reinitialize_dir $srcdir/$subdir
254
255 gdb_load ${binfile}
256 send_gdb "set width 0\n"
257 gdb_expect -re "$gdb_prompt $"
258 test_search
259 test_viewing_loc
260 test_dir_list
261 test_list_sources
262 test_vlist
263 test_va
264 gdb_test "l" "No arguments.\r\nc = 0.*\r\nfirst = 0\r\nlast = 0"
265 #test_list_globals
266 test_list_registers
267 test_backtrace
268
269 # Start with a fresh gdb.
270
271 gdb_exit
272 gdb_start
273 xdb_reinitialize_dir $srcdir/$subdir
274
275 gdb_load ${binfile}
276 send_gdb "set width 0\n"
277 gdb_expect -re "$gdb_prompt $"
278 test_go
279
280
281 gdb_exit
282 gdb_start
283 xdb_reinitialize_dir $srcdir/$subdir
284
285 gdb_load ${binfile}
286 send_gdb "set width 0\n"
287 gdb_expect -re "$gdb_prompt $"
288 gdb_test "break main" ""
289 gdb_test "R" ""
290 gdb_test "S" "32\[ \t\]+int last = num-1;"
291 test_breakpoints
292 test_signals
293 gdb_test "sm" ""
294 gdb_test "info set" ".*pagination: State of pagination is off.*"
295 gdb_test "am" ""
296 gdb_test "info set" ".*pagination: State of pagination is on.*"
297 gdb_exit
298
299 set GDBFLAGS $saved_gdbflags
300
301 return 0
302
303
304
305
306
307