c20d6413419d99753ac3f21835eff7a40bd503b3
[external/binutils.git] / gdb / testsuite / gdb.base / annota3.exp
1 # Copyright 2003-2012 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 3 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, see <http://www.gnu.org/licenses/>.
15
16 # This file was written by Elena Zannoni (ezannoni@cygnus.com)
17
18 if $tracelevel then {
19     strace $tracelevel
20 }
21
22
23 # are we on a target board? If so, don't run these tests.
24 # note: this is necessary because we cannot use runto_main (which would
25 # work for remote targets too) because of the different prompt we get
26 # when using annotation level 2.
27 #
28 if [is_remote target] then {
29     return 0
30 }
31
32
33 #
34 # test running programs
35 #
36
37 set testfile "annota3"
38 set srcfile ${testfile}.c
39 set binfile ${objdir}/${subdir}/${testfile}$EXEEXT
40
41 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
42     untested annota3.exp
43     return -1
44 }
45
46
47 gdb_exit
48 gdb_start
49 gdb_reinitialize_dir $srcdir/$subdir
50 gdb_load ${binfile}
51
52 #
53 # the line at which break main will put the breakpoint
54 #
55 set main_line 32
56
57 # The commands we test here produce many lines of output; disable "press 
58 # <return> to continue" prompts.
59 gdb_test_no_output "set height 0"
60
61 #
62 # break at main
63 #
64 gdb_test "break main" \
65     "Breakpoint.*at.* file .*$srcfile, line.*" \
66     "breakpoint main"
67
68
69 # NOTE: this prompt is OK only when the annotation level is > 1
70
71 # NOTE: When this prompt is in use the gdb_test procedure cannot be
72 # used because it assumes that the last char after the gdb_prompt is a
73 # white space. This is not true with this annotated prompt. So we must
74 # use send_gdb and gdb_expect or gdb_expect_list.
75
76 set old_gdb_prompt $gdb_prompt
77 set gdb_prompt "\r\n\032\032pre-prompt\r\n$gdb_prompt \r\n\032\032prompt\r\n"
78
79
80
81 #
82 # set the annotation level to 3
83 #
84 # of course, this will test:
85 # annotate-pre-prompt
86 # annotate-prompt
87 # annotate-post-prompt (in the next block)
88 #
89 send_gdb "set annotate 3\n" 
90 gdb_expect_list "annotation set at level 3" "\r\n$gdb_prompt$" {
91     "set annotate 3"
92 }
93
94 #
95 # if construct:
96 #
97 gdb_test_multiple "if 1" "start if construct" {
98     -re "^if 1\r\n\r\n\032\032post-prompt\r\n\r\n\032\032pre-commands\r\n >\r\n\032\032commands\r\n$" {
99         pass "start if construct"
100     }
101 }
102
103 gdb_test_multiple "end" "end if construct" {
104     -re "^end\r\n\r\n\032\032post-commands\r\n$gdb_prompt$" {
105         pass "end if construct"
106     }
107 }
108
109 #
110 # info break:
111 #
112 send_gdb "info break\n" 
113 gdb_expect_list "breakpoint info" "$gdb_prompt$" {
114     "\r\n\032\032post-prompt\r\n"
115     "Num     Type           Disp Enb Address    +What\r\n"
116     "1       breakpoint     keep y   0x\[0-9a-zA-Z\]+ +in main at .*annota3.c:32\r\n"
117 }
118
119
120 #
121 # run to a break point will test:
122 #
123 #exp_internal 1
124 send_gdb "run\n"
125 gdb_expect_list "run until main breakpoint" "$gdb_prompt$" {
126     "\r\n\032\032post-prompt\r\n"
127     "Starting program: .*annota3(|\.exe) \r\n"
128     "\r\n\032\032starting\r\n"
129     "\r\n\032\032breakpoint 1\r\n"
130     "\r\n"
131     "Breakpoint 1, "
132     "\r\n\032\032frame-begin 0 0x\[0-9a-z\]+\r\n"
133     "main \\(\\) at .*annota3.c:32\r\n"
134     "\r\n\032\032source.*annota3.c:32:.*:beg:0x\[0-9a-z\]+\r\n"
135     "\r\n\032\032stopped\r\n"
136 }
137 #exp_internal 0
138 #exit 0
139
140 #
141 # Let's do a next, to get to a point where the array is initialized
142 # We don't care about the annotated output for this operation, it is the same as
143 # the one produced by run above
144 #
145 send_gdb "next\n" 
146 gdb_expect_list "go after array init line" "$gdb_prompt$" {
147     "\r\n\032\032post-prompt\r\n"
148     "\r\n\032\032starting\r\n"
149     "\r\n\032\032source .*annota3.c:\[0-9\]+:\[0-9\]+:beg:0x\[0-9a-z\]+\r\n"
150     "\r\n\032\032stopped\r\n"
151 }
152
153
154 #
155 # printing the array:
156 #
157 send_gdb "print my_array\n"
158 gdb_expect_list "print array" "$gdb_prompt$" {
159     "\r\n\032\032post-prompt\r\n"
160     ".*= .1, 2, 3.\r\n"
161 }
162
163
164 #
165 # this should generate an error message, so to test:
166 # annotate-error-begin
167 # FIXME: annotate-error not tested
168 #
169
170 #exp_internal 1
171 send_gdb "print non_existent_value\n"
172 gdb_expect_list "print non_existent_value" "$gdb_prompt$" {
173     "\r\n\032\032post-prompt\r\n"
174     "\r\n\032\032error-begin\r\n"
175     "No symbol \"non_existent_value\" in current context.\r\n"
176     "\r\n\032\032error\r\n"
177 }
178
179
180 #
181 # break at signal handler
182 #
183 send_gdb "break handle_USR1\n"
184 gdb_expect_list "breakpoint handle_USR1" "$gdb_prompt$" {
185     "\r\n\032\032post-prompt\r\n"
186     "Breakpoint.*at 0x\[0-9a-z\]+: file.*annota3.c, line.*\r\n"
187 }
188
189 #
190 # break at printf. When we are stopped at printf, we can test 
191 #
192 send_gdb "break printf\n"
193 gdb_expect_list "breakpoint printf" "$gdb_prompt$" {
194     "\r\n\032\032post-prompt\r\n"
195     "Breakpoint.*at 0x\[0-9a-z\]+.*"
196 }
197
198 #
199 # get to printf
200 #
201 send_gdb "continue\n"
202 gdb_expect_list "continue to printf" "$gdb_prompt$" {
203     "\r\n\032\032post-prompt\r\n"
204     "Continuing.\r\n"
205     "\r\n\032\032starting\r\n"
206     "\r\n\032\032breakpoint 3\r\n"
207     "\r\n"
208     "Breakpoint 3, \[^\r\n\]*\r\n"
209     "\r\n\032\032stopped\r\n"
210 }
211
212 send_gdb "backtrace\n"
213 gdb_expect_list "backtrace from shlibrary" "$gdb_prompt$" {
214     "\r\n\032\032post-prompt\r\n"
215     "#0 .* .*printf(@\[^ ]*)? \[^\r\n\]*\r\n"
216     "#1 .* main \[^\r\n\]*\r\n"
217 }
218
219
220 #
221 # test printing a frame with some arguments: 
222 #
223
224 if [target_info exists gdb,nosignals] {
225     unsupported "send SIGUSR1"
226     unsupported "backtrace @ signal handler"
227 } else {
228     send_gdb "signal SIGUSR1\n"
229     gdb_expect_list "send SIGUSR1" "$gdb_prompt$" {
230         "\r\n\032\032post-prompt\r\n"
231         "Continuing with signal SIGUSR1.\r\n"
232         "\r\n\032\032starting\r\n"
233         "\r\n\032\032breakpoint 2\r\n"
234         "\r\n"
235         "Breakpoint 2, "
236         "\r\n\032\032frame-begin 0 0x\[0-9a-z\]+\r\n"
237         "handle_USR1 \\(sig=\[0-9\]+\\) at .*annota3.c:\[0-9\]+\r\n"
238         "\r\n\032\032source .*annota3.c:\[0-9\]+:\[0-9\]+:beg:0x\[0-9a-z\]+\r\n"
239         "\r\n\032\032stopped\r\n"
240     }
241
242     #
243     # test:
244     #
245     send_gdb "backtrace\n"
246     gdb_expect_list "backtrace @ signal handler" "$gdb_prompt$" {
247         "#0 +handle_USR1 \[^\r\n\]+\r\n"
248         "#1 +.signal handler called.\r\n"
249         "#2 .* .*printf(@\[^ \]*)? \[^\r\n\]+\r\n"
250         "#3 .* main \[^\r\n\]+\r\n"
251     }
252 }
253
254 #
255 # delete all the breakpoints
256 #
257 send_gdb "delete 1\n"
258 gdb_expect_list "delete bp 1" "$gdb_prompt$" {
259     "\r\n\032\032post-prompt\r\n"
260 }
261
262 send_gdb "delete 2\n"
263 gdb_expect_list "delete bp 2" "$gdb_prompt$" {
264     "\r\n\032\032post-prompt\r\n"
265 }
266
267 send_gdb "delete 3\n"
268 gdb_expect_list "delete bp 3" "$gdb_prompt$" {
269     "\r\n\032\032post-prompt\r\n"
270 }
271
272 #
273 # break at main, after value is initialized. This is in preparation
274 # to test the annotate output for the display command.
275 #
276 send_gdb "break main\n"
277 gdb_expect_list "break at 28" "$gdb_prompt$" {
278     "\r\n\032\032post-prompt\r\n"
279     "Breakpoint 4 at 0x\[0-9a-z\]+: file .*annota3.c, line 32.\r\n"
280 }
281
282 #
283 # display the value
284 #
285 send_gdb "display value\n"
286 gdb_expect_list "set up display" "$gdb_prompt$" {
287     "\r\n\032\032post-prompt\r\n"
288     "1: value = 7\r\n"
289 }
290
291
292 # should ask query. Test annotate-query.
293 # we don't care about anything else here, only the query.
294
295 send_gdb "run\n"
296 gdb_expect {
297   -re "pre-query.*already.*\\(y or n\\).*query\r\n" {
298          send_gdb "y\n"
299          gdb_expect {
300              -re ".*post-query.*$gdb_prompt$" \
301                      { pass "re-run" }
302              -re ".*$gdb_prompt$"  { fail "re-run" }
303              timeout { fail "re-run (timeout)" }
304          }
305      }
306   -re ".*$gdb_prompt$"  { fail "re-run" }
307   timeout { fail "re-run (timeout)" }
308 }
309
310 #
311 # Test that breakpoints-invalid is issued once and only once for
312 # breakpoint ignore count changes, after annotation stopped.
313 # NOTE: breakpoints-invalid annotations have been removed from
314 # level 3 but keep these tests for continuity and comparison
315 # with annota1.exp.
316 send_gdb "break 46\n"
317 gdb_expect_list  "break at 46" "$gdb_prompt$" {
318     "\r\n\032\032post-prompt\r\n"
319     "Breakpoint 5 at 0x\[0-9a-z\]+: file .*annota3.c, line 46.\r\n"
320 }
321
322 send_gdb "ignore 5 4\n"
323 gdb_expect_list "ignore 5 4" "$gdb_prompt$" {
324     "\r\n\032\032post-prompt\r\n"
325     "Will ignore next 4 crossings of breakpoint 5"
326     "\r\n"
327 }
328
329 send_gdb "continue\n"
330 gdb_expect_list "annotate ignore count change" "$gdb_prompt$" {
331     "\r\n\032\032post-prompt\r\n"
332     "\r\n\032\032breakpoint 5\r\n"
333     "\r\n"
334     "Breakpoint 5, "
335     "\r\n\032\032frame-begin 0 0x\[0-9a-z\]+\r\n"
336     "main \\(\\) at .*annota3.c:46\r\n"
337     "\r\n\032\032source .*annota3.c:46:\[0-9\]+:beg:0x\[0-9a-z\]+\r\n"
338     "1: value = 11\r\n"
339     "\r\n\032\032stopped\r\n"
340 }
341
342 # check that ignore command is working, or the above can provide
343 # misleading assurance ...
344
345 send_gdb "next\n"
346 gdb_expect_list "next to exit loop" "$gdb_prompt$"  {
347     "\r\n\032\032post-prompt\r\n"
348     "\r\n\032\032starting\r\n"
349     "\r\n\032\032source.*annota3.c:\[0-9\]+:\[0-9\]+:beg:0x\[0-9a-z\]+\r\n"
350     "1: value = 12\r\n"
351     "\r\n\032\032stopped\r\n"
352 }
353
354 send_gdb "next\n"
355 gdb_expect_list "breakpoint ignore count" "$gdb_prompt$" {
356     "\r\n\032\032post-prompt\r\n"
357     "\r\n\032\032starting\r\n"
358     "\r\n\032\032source.*annota3.c:49:\[0-9\]+:beg:0x\[0-9a-z\]+\r\n"
359     "1: value = 12\r\n"
360     "\r\n\032\032stopped\r\n"
361 }
362
363 # Get the inferior's PID for later.
364
365 set test "get inferior pid"
366 set pid -1
367 gdb_test_multiple "info inferior 1" "$test" {
368     -re "process (\[0-9\]*).*$gdb_prompt$" {
369         set pid $expect_out(1,string)
370         pass "$test"
371     }
372 }
373
374 #
375 # Send a signal that is not handled
376 #
377 # SIGTRAP signals are dropped before they get to the inferior process
378 # on hpux11.  In theory, this behaivor can be controlled by setting
379 # TTEO_NORM_SIGTRAP in the inferior, but doing so did not cause
380 # the signal to be properly delivered.
381 #
382 # It has been verified that other signals will be delivered.  However,
383 # rather than twiddle the test, I choose to leave it as-is as it
384 # exposes an interesting failure on hpux11.
385
386 if [target_info exists gdb,nosignals] {
387     unsupported "signal sent"
388 } else {
389     setup_xfail hppa*-*-hpux11*
390     send_gdb "signal SIGTRAP\n"
391     gdb_expect_list "signal sent" "$gdb_prompt$" {
392         "\r\n\032\032post-prompt\r\n"
393         "Continuing with signal SIGTRAP.\r\n"
394         "\r\n\032\032starting\r\n"
395         "\r\n\032\032signalled\r\n"
396         "\r\nProgram terminated with signal SIGTRAP, Trace.breakpoint trap.\r\n"
397         "The program no longer exists.\r\n"
398         "\r\n\032\032stopped\r\n"
399     }
400 }
401
402
403 # Check for production of a core file and remove it!
404
405 set test "cleanup core file"
406 if { [remote_file host exists core] } {
407     remote_file host delete core
408     pass "$test (removed)"
409 } elseif { $pid != -1 && [remote_file host exists core.$pid] } {
410     remote_file host delete core.$pid
411     pass "$test (removed)"
412 } else {
413     pass "$test (not dumped)"
414 }
415
416 # restore the original prompt for the rest of the testsuite
417
418 set gdb_prompt $old_gdb_prompt