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