1 # Copyright 2003-2012 Free Software Foundation, Inc.
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.
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.
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/>.
16 # This file was written by Elena Zannoni (ezannoni@cygnus.com)
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.
28 if [is_remote target] then {
34 # test running programs
37 set testfile "annota3"
38 set srcfile ${testfile}.c
39 set binfile ${objdir}/${subdir}/${testfile}$EXEEXT
41 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
49 gdb_reinitialize_dir $srcdir/$subdir
53 # the line at which break main will put the breakpoint
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"
64 gdb_test "break main" \
65 "Breakpoint.*at.* file .*$srcfile, line.*" \
69 # NOTE: this prompt is OK only when the annotation level is > 1
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.
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"
82 # set the annotation level to 3
84 # of course, this will test:
87 # annotate-post-prompt (in the next block)
89 send_gdb "set annotate 3\n"
90 gdb_expect_list "annotation set at level 3" "\r\n$gdb_prompt$" {
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"
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"
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"
121 # run to a break point will test:
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"
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"
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
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"
155 # printing the array:
157 send_gdb "print my_array\n"
158 gdb_expect_list "print array" "$gdb_prompt$" {
159 "\r\n\032\032post-prompt\r\n"
165 # this should generate an error message, so to test:
166 # annotate-error-begin
167 # FIXME: annotate-error not tested
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"
181 # break at signal handler
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"
190 # break at printf. When we are stopped at printf, we can test
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\]+.*"
201 send_gdb "continue\n"
202 gdb_expect_list "continue to printf" "$gdb_prompt$" {
203 "\r\n\032\032post-prompt\r\n"
205 "\r\n\032\032starting\r\n"
206 "\r\n\032\032breakpoint 3\r\n"
208 "Breakpoint 3, \[^\r\n\]*\r\n"
209 "\r\n\032\032stopped\r\n"
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"
221 # test printing a frame with some arguments:
224 if [target_info exists gdb,nosignals] {
225 unsupported "send SIGUSR1"
226 unsupported "backtrace @ signal handler"
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"
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"
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"
255 # delete all the breakpoints
257 send_gdb "delete 1\n"
258 gdb_expect_list "delete bp 1" "$gdb_prompt$" {
259 "\r\n\032\032post-prompt\r\n"
262 send_gdb "delete 2\n"
263 gdb_expect_list "delete bp 2" "$gdb_prompt$" {
264 "\r\n\032\032post-prompt\r\n"
267 send_gdb "delete 3\n"
268 gdb_expect_list "delete bp 3" "$gdb_prompt$" {
269 "\r\n\032\032post-prompt\r\n"
273 # break at main, after value is initialized. This is in preparation
274 # to test the annotate output for the display command.
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"
285 send_gdb "display value\n"
286 gdb_expect_list "set up display" "$gdb_prompt$" {
287 "\r\n\032\032post-prompt\r\n"
292 # should ask query. Test annotate-query.
293 # we don't care about anything else here, only the query.
297 -re "pre-query.*already.*\\(y or n\\).*query\r\n" {
300 -re ".*post-query.*$gdb_prompt$" \
302 -re ".*$gdb_prompt$" { fail "re-run" }
303 timeout { fail "re-run (timeout)" }
306 -re ".*$gdb_prompt$" { fail "re-run" }
307 timeout { fail "re-run (timeout)" }
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
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"
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"
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"
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"
339 "\r\n\032\032stopped\r\n"
342 # check that ignore command is working, or the above can provide
343 # misleading assurance ...
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"
351 "\r\n\032\032stopped\r\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"
360 "\r\n\032\032stopped\r\n"
363 # Get the inferior's PID for later.
365 set test "get inferior pid"
367 gdb_test_multiple "info inferior 1" "$test" {
368 -re "process (\[0-9\]*).*$gdb_prompt$" {
369 set pid $expect_out(1,string)
375 # Send a signal that is not handled
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.
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.
386 if [target_info exists gdb,nosignals] {
387 unsupported "signal sent"
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"
403 # Check for production of a core file and remove it!
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)"
413 pass "$test (not dumped)"
416 # restore the original prompt for the rest of the testsuite
418 set gdb_prompt $old_gdb_prompt