2004-08-23 Michael Chastain <mec.gnu@mindspring.com>
[binutils-gdb.git] / gdb / testsuite / lib / gdb.exp
1 # Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
2 # 2002, 2003, 2004
3 # Free Software Foundation, Inc.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 # This file was written by Fred Fish. (fnf@cygnus.com)
20
21 # Generic gdb subroutines that should work for any target. If these
22 # need to be modified for any target, it can be done with a variable
23 # or by passing arguments.
24
25 load_lib libgloss.exp
26
27 global GDB
28
29 if [info exists TOOL_EXECUTABLE] {
30 set GDB $TOOL_EXECUTABLE;
31 }
32 if ![info exists GDB] {
33 if ![is_remote host] {
34 set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
35 } else {
36 set GDB [transform gdb];
37 }
38 }
39 verbose "using GDB = $GDB" 2
40
41 global GDBFLAGS
42 if ![info exists GDBFLAGS] {
43 set GDBFLAGS "-nx"
44 }
45 verbose "using GDBFLAGS = $GDBFLAGS" 2
46
47 # The variable gdb_prompt is a regexp which matches the gdb prompt.
48 # Set it if it is not already set.
49 global gdb_prompt
50 if ![info exists gdb_prompt] then {
51 set gdb_prompt "\[(\]gdb\[)\]"
52 }
53
54 # Needed for some tests under Cygwin.
55 global EXEEXT
56 global env
57
58 if ![info exists env(EXEEXT)] {
59 set EXEEXT ""
60 } else {
61 set EXEEXT $env(EXEEXT)
62 }
63
64 ### Only procedures should come after this point.
65
66 #
67 # gdb_version -- extract and print the version number of GDB
68 #
69 proc default_gdb_version {} {
70 global GDB
71 global GDBFLAGS
72 global gdb_prompt
73 set fileid [open "gdb_cmd" w];
74 puts $fileid "q";
75 close $fileid;
76 set cmdfile [remote_download host "gdb_cmd"];
77 set output [remote_exec host "$GDB -nw --command $cmdfile"]
78 remote_file build delete "gdb_cmd";
79 remote_file host delete "$cmdfile";
80 set tmp [lindex $output 1];
81 set version ""
82 regexp " \[0-9\]\[^ \t\n\r\]+" "$tmp" version
83 if ![is_remote host] {
84 clone_output "[which $GDB] version $version $GDBFLAGS\n"
85 } else {
86 clone_output "$GDB on remote host version $version $GDBFLAGS\n"
87 }
88 }
89
90 proc gdb_version { } {
91 return [default_gdb_version];
92 }
93
94 #
95 # gdb_unload -- unload a file if one is loaded
96 #
97
98 proc gdb_unload {} {
99 global verbose
100 global GDB
101 global gdb_prompt
102 send_gdb "file\n"
103 gdb_expect 60 {
104 -re "No executable file now\[^\r\n\]*\[\r\n\]" { exp_continue }
105 -re "No symbol file now\[^\r\n\]*\[\r\n\]" { exp_continue }
106 -re "A program is being debugged already..*Kill it.*y or n. $"\
107 { send_gdb "y\n"
108 verbose "\t\tKilling previous program being debugged"
109 exp_continue
110 }
111 -re "Discard symbol table from .*y or n.*$" {
112 send_gdb "y\n"
113 exp_continue
114 }
115 -re "$gdb_prompt $" {}
116 timeout {
117 perror "couldn't unload file in $GDB (timed out)."
118 return -1
119 }
120 }
121 }
122
123 # Many of the tests depend on setting breakpoints at various places and
124 # running until that breakpoint is reached. At times, we want to start
125 # with a clean-slate with respect to breakpoints, so this utility proc
126 # lets us do this without duplicating this code everywhere.
127 #
128
129 proc delete_breakpoints {} {
130 global gdb_prompt
131
132 # we need a larger timeout value here or this thing just confuses
133 # itself. May need a better implementation if possible. - guo
134 #
135 send_gdb "delete breakpoints\n"
136 gdb_expect 100 {
137 -re "Delete all breakpoints.*y or n.*$" {
138 send_gdb "y\n";
139 exp_continue
140 }
141 -re "$gdb_prompt $" { # This happens if there were no breakpoints
142 }
143 timeout { perror "Delete all breakpoints in delete_breakpoints (timeout)" ; return }
144 }
145 send_gdb "info breakpoints\n"
146 gdb_expect 100 {
147 -re "No breakpoints or watchpoints..*$gdb_prompt $" {}
148 -re "$gdb_prompt $" { perror "breakpoints not deleted" ; return }
149 -re "Delete all breakpoints.*or n.*$" {
150 send_gdb "y\n";
151 exp_continue
152 }
153 timeout { perror "info breakpoints (timeout)" ; return }
154 }
155 }
156
157
158 #
159 # Generic run command.
160 #
161 # The second pattern below matches up to the first newline *only*.
162 # Using ``.*$'' could swallow up output that we attempt to match
163 # elsewhere.
164 #
165 proc gdb_run_cmd {args} {
166 global gdb_prompt
167
168 if [target_info exists gdb_init_command] {
169 send_gdb "[target_info gdb_init_command]\n";
170 gdb_expect 30 {
171 -re "$gdb_prompt $" { }
172 default {
173 perror "gdb_init_command for target failed";
174 return;
175 }
176 }
177 }
178
179 if [target_info exists use_gdb_stub] {
180 if [target_info exists gdb,do_reload_on_run] {
181 # Specifying no file, defaults to the executable
182 # currently being debugged.
183 if { [gdb_load ""] < 0 } {
184 return;
185 }
186 send_gdb "continue\n";
187 gdb_expect 60 {
188 -re "Continu\[^\r\n\]*\[\r\n\]" {}
189 default {}
190 }
191 return;
192 }
193
194 if [target_info exists gdb,start_symbol] {
195 set start [target_info gdb,start_symbol];
196 } else {
197 set start "start";
198 }
199 send_gdb "jump *$start\n"
200 set start_attempt 1;
201 while { $start_attempt } {
202 # Cap (re)start attempts at three to ensure that this loop
203 # always eventually fails. Don't worry about trying to be
204 # clever and not send a command when it has failed.
205 if [expr $start_attempt > 3] {
206 perror "Jump to start() failed (retry count exceeded)";
207 return;
208 }
209 set start_attempt [expr $start_attempt + 1];
210 gdb_expect 30 {
211 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
212 set start_attempt 0;
213 }
214 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
215 perror "Can't find start symbol to run in gdb_run";
216 return;
217 }
218 -re "No symbol \"start\" in current.*$gdb_prompt $" {
219 send_gdb "jump *_start\n";
220 }
221 -re "No symbol.*context.*$gdb_prompt $" {
222 set start_attempt 0;
223 }
224 -re "Line.* Jump anyway.*y or n. $" {
225 send_gdb "y\n"
226 }
227 -re "The program is not being run.*$gdb_prompt $" {
228 if { [gdb_load ""] < 0 } {
229 return;
230 }
231 send_gdb "jump *$start\n";
232 }
233 timeout {
234 perror "Jump to start() failed (timeout)";
235 return
236 }
237 }
238 }
239 if [target_info exists gdb_stub] {
240 gdb_expect 60 {
241 -re "$gdb_prompt $" {
242 send_gdb "continue\n"
243 }
244 }
245 }
246 return
247 }
248
249 if [target_info exists gdb,do_reload_on_run] {
250 if { [gdb_load ""] < 0 } {
251 return;
252 }
253 }
254 send_gdb "run $args\n"
255 # This doesn't work quite right yet.
256 gdb_expect 60 {
257 -re "The program .* has been started already.*y or n. $" {
258 send_gdb "y\n"
259 exp_continue
260 }
261 -re "Starting program: \[^\r\n\]*" {}
262 }
263 }
264
265 # Set a breakpoint at FUNCTION. If there is an additional argument it is
266 # a list of options; the only currently supported option is allow-pending.
267
268 proc gdb_breakpoint { function args } {
269 global gdb_prompt
270 global decimal
271
272 set pending_response n
273 if {[lsearch -exact [lindex $args 0] allow-pending] != -1} {
274 set pending_response y
275 }
276
277 send_gdb "break $function\n"
278 # The first two regexps are what we get with -g, the third is without -g.
279 gdb_expect 30 {
280 -re "Breakpoint \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
281 -re "Breakpoint \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
282 -re "Breakpoint \[0-9\]* at .*$gdb_prompt $" {}
283 -re "Breakpoint \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
284 if {$pending_response == "n"} {
285 fail "setting breakpoint at $function"
286 return 0
287 }
288 }
289 -re "Make breakpoint pending.*y or \\\[n\\\]. $" {
290 send_gdb "$pending_response\n"
291 exp_continue
292 }
293 -re "$gdb_prompt $" { fail "setting breakpoint at $function" ; return 0 }
294 timeout { fail "setting breakpoint at $function (timeout)" ; return 0 }
295 }
296 return 1;
297 }
298
299 # Set breakpoint at function and run gdb until it breaks there.
300 # Since this is the only breakpoint that will be set, if it stops
301 # at a breakpoint, we will assume it is the one we want. We can't
302 # just compare to "function" because it might be a fully qualified,
303 # single quoted C++ function specifier. If there's an additional argument,
304 # pass it to gdb_breakpoint.
305
306 proc runto { function args } {
307 global gdb_prompt
308 global decimal
309
310 delete_breakpoints
311
312 if ![gdb_breakpoint $function [lindex $args 0]] {
313 return 0;
314 }
315
316 gdb_run_cmd
317
318 # the "at foo.c:36" output we get with -g.
319 # the "in func" output we get without -g.
320 gdb_expect 30 {
321 -re "Break.* at .*:$decimal.*$gdb_prompt $" {
322 return 1
323 }
324 -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
325 return 1
326 }
327 -re "$gdb_prompt $" {
328 fail "running to $function in runto"
329 return 0
330 }
331 timeout {
332 fail "running to $function in runto (timeout)"
333 return 0
334 }
335 }
336 return 1
337 }
338
339 #
340 # runto_main -- ask gdb to run until we hit a breakpoint at main.
341 # The case where the target uses stubs has to be handled
342 # specially--if it uses stubs, assuming we hit
343 # breakpoint() and just step out of the function.
344 #
345 proc runto_main { } {
346 global gdb_prompt
347 global decimal
348
349 if ![target_info exists gdb_stub] {
350 return [runto main]
351 }
352
353 delete_breakpoints
354
355 gdb_step_for_stub;
356
357 return 1
358 }
359
360
361 ### Continue, and expect to hit a breakpoint.
362 ### Report a pass or fail, depending on whether it seems to have
363 ### worked. Use NAME as part of the test name; each call to
364 ### continue_to_breakpoint should use a NAME which is unique within
365 ### that test file.
366 proc gdb_continue_to_breakpoint {name} {
367 global gdb_prompt
368 set full_name "continue to breakpoint: $name"
369
370 send_gdb "continue\n"
371 gdb_expect {
372 -re "Breakpoint .* at .*\r\n$gdb_prompt $" {
373 pass $full_name
374 }
375 -re ".*$gdb_prompt $" {
376 fail $full_name
377 }
378 timeout {
379 fail "$full_name (timeout)"
380 }
381 }
382 }
383
384
385 # gdb_internal_error_resync:
386 #
387 # Answer the questions GDB asks after it reports an internal error
388 # until we get back to a GDB prompt. Decline to quit the debugging
389 # session, and decline to create a core file. Return non-zero if the
390 # resync succeeds.
391 #
392 # This procedure just answers whatever questions come up until it sees
393 # a GDB prompt; it doesn't require you to have matched the input up to
394 # any specific point. However, it only answers questions it sees in
395 # the output itself, so if you've matched a question, you had better
396 # answer it yourself before calling this.
397 #
398 # You can use this function thus:
399 #
400 # gdb_expect {
401 # ...
402 # -re ".*A problem internal to GDB has been detected" {
403 # gdb_internal_error_resync
404 # }
405 # ...
406 # }
407 #
408 proc gdb_internal_error_resync {} {
409 global gdb_prompt
410
411 set count 0
412 while {$count < 10} {
413 gdb_expect {
414 -re "Quit this debugging session\\? \\(y or n\\) $" {
415 send_gdb "n\n"
416 incr count
417 }
418 -re "Create a core file of GDB\\? \\(y or n\\) $" {
419 send_gdb "n\n"
420 incr count
421 }
422 -re "$gdb_prompt $" {
423 # We're resynchronized.
424 return 1
425 }
426 timeout {
427 perror "Could not resync from internal error (timeout)"
428 return 0
429 }
430 }
431 }
432 perror "Could not resync from internal error (resync count exceeded)"
433 return 0
434 }
435
436
437 # gdb_test_multiple COMMAND MESSAGE EXPECT_ARGUMENTS
438 # Send a command to gdb; test the result.
439 #
440 # COMMAND is the command to execute, send to GDB with send_gdb. If
441 # this is the null string no command is sent.
442 # MESSAGE is a message to be printed with the built-in failure patterns
443 # if one of them matches. If MESSAGE is empty COMMAND will be used.
444 # EXPECT_ARGUMENTS will be fed to expect in addition to the standard
445 # patterns. Pattern elements will be evaluated in the caller's
446 # context; action elements will be executed in the caller's context.
447 # Unlike patterns for gdb_test, these patterns should generally include
448 # the final newline and prompt.
449 #
450 # Returns:
451 # 1 if the test failed, according to a built-in failure pattern
452 # 0 if only user-supplied patterns matched
453 # -1 if there was an internal error.
454 #
455 # You can use this function thus:
456 #
457 # gdb_test_multiple "print foo" "test foo" {
458 # -re "expected output 1" {
459 # pass "print foo"
460 # }
461 # -re "expected output 2" {
462 # fail "print foo"
463 # }
464 # }
465 #
466 # The standard patterns, such as "Program exited..." and "A problem
467 # ...", all being implicitly appended to that list.
468 #
469 proc gdb_test_multiple { command message user_code } {
470 global verbose
471 global gdb_prompt
472 global GDB
473 upvar timeout timeout
474 upvar expect_out expect_out
475
476 if { $message == "" } {
477 set message $command
478 }
479
480 # TCL/EXPECT WART ALERT
481 # Expect does something very strange when it receives a single braced
482 # argument. It splits it along word separators and performs substitutions.
483 # This means that { "[ab]" } is evaluated as "[ab]", but { "\[ab\]" } is
484 # evaluated as "\[ab\]". But that's not how TCL normally works; inside a
485 # double-quoted list item, "\[ab\]" is just a long way of representing
486 # "[ab]", because the backslashes will be removed by lindex.
487
488 # Unfortunately, there appears to be no easy way to duplicate the splitting
489 # that expect will do from within TCL. And many places make use of the
490 # "\[0-9\]" construct, so we need to support that; and some places make use
491 # of the "[func]" construct, so we need to support that too. In order to
492 # get this right we have to substitute quoted list elements differently
493 # from braced list elements.
494
495 # We do this roughly the same way that Expect does it. We have to use two
496 # lists, because if we leave unquoted newlines in the argument to uplevel
497 # they'll be treated as command separators, and if we escape newlines
498 # we mangle newlines inside of command blocks. This assumes that the
499 # input doesn't contain a pattern which contains actual embedded newlines
500 # at this point!
501
502 regsub -all {\n} ${user_code} { } subst_code
503 set subst_code [uplevel list $subst_code]
504
505 set processed_code ""
506 set patterns ""
507 set expecting_action 0
508 foreach item $user_code subst_item $subst_code {
509 if { $item == "-n" || $item == "-notransfer" || $item == "-nocase" } {
510 lappend processed_code $item
511 continue
512 }
513 if {$item == "-indices" || $item == "-re" || $item == "-ex"} {
514 lappend processed_code $item
515 continue
516 }
517 if { $expecting_action } {
518 lappend processed_code "uplevel [list $item]"
519 set expecting_action 0
520 # Cosmetic, no effect on the list.
521 append processed_code "\n"
522 continue
523 }
524 set expecting_action 1
525 lappend processed_code $subst_item
526 if {$patterns != ""} {
527 append patterns "; "
528 }
529 append patterns "\"$subst_item\""
530 }
531
532 # Also purely cosmetic.
533 regsub -all {\r} $patterns {\\r} patterns
534 regsub -all {\n} $patterns {\\n} patterns
535
536 if $verbose>2 then {
537 send_user "Sending \"$command\" to gdb\n"
538 send_user "Looking to match \"$patterns\"\n"
539 send_user "Message is \"$message\"\n"
540 }
541
542 set result -1
543 set string "${command}\n";
544 if { $command != "" } {
545 while { "$string" != "" } {
546 set foo [string first "\n" "$string"];
547 set len [string length "$string"];
548 if { $foo < [expr $len - 1] } {
549 set str [string range "$string" 0 $foo];
550 if { [send_gdb "$str"] != "" } {
551 global suppress_flag;
552
553 if { ! $suppress_flag } {
554 perror "Couldn't send $command to GDB.";
555 }
556 fail "$message";
557 return $result;
558 }
559 # since we're checking if each line of the multi-line
560 # command are 'accepted' by GDB here,
561 # we need to set -notransfer expect option so that
562 # command output is not lost for pattern matching
563 # - guo
564 gdb_expect 2 {
565 -notransfer -re "\[\r\n\]" { verbose "partial: match" 3 }
566 timeout { verbose "partial: timeout" 3 }
567 }
568 set string [string range "$string" [expr $foo + 1] end];
569 } else {
570 break;
571 }
572 }
573 if { "$string" != "" } {
574 if { [send_gdb "$string"] != "" } {
575 global suppress_flag;
576
577 if { ! $suppress_flag } {
578 perror "Couldn't send $command to GDB.";
579 }
580 fail "$message";
581 return $result;
582 }
583 }
584 }
585
586 if [target_info exists gdb,timeout] {
587 set tmt [target_info gdb,timeout];
588 } else {
589 if [info exists timeout] {
590 set tmt $timeout;
591 } else {
592 global timeout;
593 if [info exists timeout] {
594 set tmt $timeout;
595 } else {
596 set tmt 60;
597 }
598 }
599 }
600
601 set code {
602 -re ".*A problem internal to GDB has been detected" {
603 fail "$message (GDB internal error)"
604 gdb_internal_error_resync
605 }
606 -re "\\*\\*\\* DOSEXIT code.*" {
607 if { $message != "" } {
608 fail "$message";
609 }
610 gdb_suppress_entire_file "GDB died";
611 set result -1;
612 }
613 -re "Ending remote debugging.*$gdb_prompt $" {
614 if ![isnative] then {
615 warning "Can`t communicate to remote target."
616 }
617 gdb_exit
618 gdb_start
619 set result -1
620 }
621 }
622 append code $processed_code
623 append code {
624 -re "Undefined\[a-z\]* command:.*$gdb_prompt $" {
625 perror "Undefined command \"$command\"."
626 fail "$message"
627 set result 1
628 }
629 -re "Ambiguous command.*$gdb_prompt $" {
630 perror "\"$command\" is not a unique command name."
631 fail "$message"
632 set result 1
633 }
634 -re "Program exited with code \[0-9\]+.*$gdb_prompt $" {
635 if ![string match "" $message] then {
636 set errmsg "$message (the program exited)"
637 } else {
638 set errmsg "$command (the program exited)"
639 }
640 fail "$errmsg"
641 set result -1
642 }
643 -re "EXIT code \[0-9\r\n\]+Program exited normally.*$gdb_prompt $" {
644 if ![string match "" $message] then {
645 set errmsg "$message (the program exited)"
646 } else {
647 set errmsg "$command (the program exited)"
648 }
649 fail "$errmsg"
650 set result -1
651 }
652 -re "The program is not being run.*$gdb_prompt $" {
653 if ![string match "" $message] then {
654 set errmsg "$message (the program is no longer running)"
655 } else {
656 set errmsg "$command (the program is no longer running)"
657 }
658 fail "$errmsg"
659 set result -1
660 }
661 -re "\r\n$gdb_prompt $" {
662 if ![string match "" $message] then {
663 fail "$message"
664 }
665 set result 1
666 }
667 "<return>" {
668 send_gdb "\n"
669 perror "Window too small."
670 fail "$message"
671 set result -1
672 }
673 -re "\\(y or n\\) " {
674 send_gdb "n\n"
675 perror "Got interactive prompt."
676 fail "$message"
677 set result -1
678 }
679 eof {
680 perror "Process no longer exists"
681 if { $message != "" } {
682 fail "$message"
683 }
684 return -1
685 }
686 full_buffer {
687 perror "internal buffer is full."
688 fail "$message"
689 set result -1
690 }
691 timeout {
692 if ![string match "" $message] then {
693 fail "$message (timeout)"
694 }
695 set result 1
696 }
697 }
698
699 set result 0
700 set code [catch {gdb_expect $tmt $code} string]
701 if {$code == 1} {
702 global errorInfo errorCode;
703 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
704 } elseif {$code == 2} {
705 return -code return $string
706 } elseif {$code == 3} {
707 return
708 } elseif {$code > 4} {
709 return -code $code $string
710 }
711 return $result
712 }
713
714 # gdb_test COMMAND PATTERN MESSAGE QUESTION RESPONSE
715 # Send a command to gdb; test the result.
716 #
717 # COMMAND is the command to execute, send to GDB with send_gdb. If
718 # this is the null string no command is sent.
719 # PATTERN is the pattern to match for a PASS, and must NOT include
720 # the \r\n sequence immediately before the gdb prompt.
721 # MESSAGE is an optional message to be printed. If this is
722 # omitted, then the pass/fail messages use the command string as the
723 # message. (If this is the empty string, then sometimes we don't
724 # call pass or fail at all; I don't understand this at all.)
725 # QUESTION is a question GDB may ask in response to COMMAND, like
726 # "are you sure?"
727 # RESPONSE is the response to send if QUESTION appears.
728 #
729 # Returns:
730 # 1 if the test failed,
731 # 0 if the test passes,
732 # -1 if there was an internal error.
733 #
734 proc gdb_test { args } {
735 global verbose
736 global gdb_prompt
737 global GDB
738 upvar timeout timeout
739
740 if [llength $args]>2 then {
741 set message [lindex $args 2]
742 } else {
743 set message [lindex $args 0]
744 }
745 set command [lindex $args 0]
746 set pattern [lindex $args 1]
747
748 if [llength $args]==5 {
749 set question_string [lindex $args 3];
750 set response_string [lindex $args 4];
751 } else {
752 set question_string "^FOOBAR$"
753 }
754
755 return [gdb_test_multiple $command $message {
756 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
757 if ![string match "" $message] then {
758 pass "$message"
759 }
760 }
761 -re "(${question_string})$" {
762 send_gdb "$response_string\n";
763 exp_continue;
764 }
765 }]
766 }
767 \f
768 # Test that a command gives an error. For pass or fail, return
769 # a 1 to indicate that more tests can proceed. However a timeout
770 # is a serious error, generates a special fail message, and causes
771 # a 0 to be returned to indicate that more tests are likely to fail
772 # as well.
773
774 proc test_print_reject { args } {
775 global gdb_prompt
776 global verbose
777
778 if [llength $args]==2 then {
779 set expectthis [lindex $args 1]
780 } else {
781 set expectthis "should never match this bogus string"
782 }
783 set sendthis [lindex $args 0]
784 if $verbose>2 then {
785 send_user "Sending \"$sendthis\" to gdb\n"
786 send_user "Looking to match \"$expectthis\"\n"
787 }
788 send_gdb "$sendthis\n"
789 #FIXME: Should add timeout as parameter.
790 gdb_expect {
791 -re "A .* in expression.*\\.*$gdb_prompt $" {
792 pass "reject $sendthis"
793 return 1
794 }
795 -re "Invalid syntax in expression.*$gdb_prompt $" {
796 pass "reject $sendthis"
797 return 1
798 }
799 -re "Junk after end of expression.*$gdb_prompt $" {
800 pass "reject $sendthis"
801 return 1
802 }
803 -re "Invalid number.*$gdb_prompt $" {
804 pass "reject $sendthis"
805 return 1
806 }
807 -re "Invalid character constant.*$gdb_prompt $" {
808 pass "reject $sendthis"
809 return 1
810 }
811 -re "No symbol table is loaded.*$gdb_prompt $" {
812 pass "reject $sendthis"
813 return 1
814 }
815 -re "No symbol .* in current context.*$gdb_prompt $" {
816 pass "reject $sendthis"
817 return 1
818 }
819 -re "Unmatched single quote.*$gdb_prompt $" {
820 pass "reject $sendthis"
821 return 1
822 }
823 -re "A character constant must contain at least one character.*$gdb_prompt $" {
824 pass "reject $sendthis"
825 return 1
826 }
827 -re "$expectthis.*$gdb_prompt $" {
828 pass "reject $sendthis"
829 return 1
830 }
831 -re ".*$gdb_prompt $" {
832 fail "reject $sendthis"
833 return 1
834 }
835 default {
836 fail "reject $sendthis (eof or timeout)"
837 return 0
838 }
839 }
840 }
841 \f
842 # Given an input string, adds backslashes as needed to create a
843 # regexp that will match the string.
844
845 proc string_to_regexp {str} {
846 set result $str
847 regsub -all {[]*+.|()^$\[]} $str {\\&} result
848 return $result
849 }
850
851 # Same as gdb_test, but the second parameter is not a regexp,
852 # but a string that must match exactly.
853
854 proc gdb_test_exact { args } {
855 upvar timeout timeout
856
857 set command [lindex $args 0]
858
859 # This applies a special meaning to a null string pattern. Without
860 # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
861 # messages from commands that should have no output except a new
862 # prompt. With this, only results of a null string will match a null
863 # string pattern.
864
865 set pattern [lindex $args 1]
866 if [string match $pattern ""] {
867 set pattern [string_to_regexp [lindex $args 0]]
868 } else {
869 set pattern [string_to_regexp [lindex $args 1]]
870 }
871
872 # It is most natural to write the pattern argument with only
873 # embedded \n's, especially if you are trying to avoid Tcl quoting
874 # problems. But gdb_expect really wants to see \r\n in patterns. So
875 # transform the pattern here. First transform \r\n back to \n, in
876 # case some users of gdb_test_exact already do the right thing.
877 regsub -all "\r\n" $pattern "\n" pattern
878 regsub -all "\n" $pattern "\r\n" pattern
879 if [llength $args]==3 then {
880 set message [lindex $args 2]
881 } else {
882 set message $command
883 }
884
885 return [gdb_test $command $pattern $message]
886 }
887 \f
888 proc gdb_reinitialize_dir { subdir } {
889 global gdb_prompt
890
891 if [is_remote host] {
892 return "";
893 }
894 send_gdb "dir\n"
895 gdb_expect 60 {
896 -re "Reinitialize source path to empty.*y or n. " {
897 send_gdb "y\n"
898 gdb_expect 60 {
899 -re "Source directories searched.*$gdb_prompt $" {
900 send_gdb "dir $subdir\n"
901 gdb_expect 60 {
902 -re "Source directories searched.*$gdb_prompt $" {
903 verbose "Dir set to $subdir"
904 }
905 -re "$gdb_prompt $" {
906 perror "Dir \"$subdir\" failed."
907 }
908 }
909 }
910 -re "$gdb_prompt $" {
911 perror "Dir \"$subdir\" failed."
912 }
913 }
914 }
915 -re "$gdb_prompt $" {
916 perror "Dir \"$subdir\" failed."
917 }
918 }
919 }
920
921 #
922 # gdb_exit -- exit the GDB, killing the target program if necessary
923 #
924 proc default_gdb_exit {} {
925 global GDB
926 global GDBFLAGS
927 global verbose
928 global gdb_spawn_id;
929
930 gdb_stop_suppressing_tests;
931
932 if ![info exists gdb_spawn_id] {
933 return;
934 }
935
936 verbose "Quitting $GDB $GDBFLAGS"
937
938 if { [is_remote host] && [board_info host exists fileid] } {
939 send_gdb "quit\n";
940 gdb_expect 10 {
941 -re "y or n" {
942 send_gdb "y\n";
943 exp_continue;
944 }
945 -re "DOSEXIT code" { }
946 default { }
947 }
948 }
949
950 if ![is_remote host] {
951 remote_close host;
952 }
953 unset gdb_spawn_id
954 }
955
956 #
957 # load a file into the debugger.
958 # return a -1 if anything goes wrong.
959 #
960 proc gdb_file_cmd { arg } {
961 global verbose
962 global loadpath
963 global loadfile
964 global GDB
965 global gdb_prompt
966 upvar timeout timeout
967
968 if [is_remote host] {
969 set arg [remote_download host $arg];
970 if { $arg == "" } {
971 error "download failed"
972 return -1;
973 }
974 }
975
976 send_gdb "file $arg\n"
977 gdb_expect 120 {
978 -re "Reading symbols from.*done.*$gdb_prompt $" {
979 verbose "\t\tLoaded $arg into the $GDB"
980 return 0
981 }
982 -re "has no symbol-table.*$gdb_prompt $" {
983 perror "$arg wasn't compiled with \"-g\""
984 return -1
985 }
986 -re "A program is being debugged already.*Kill it.*y or n. $" {
987 send_gdb "y\n"
988 verbose "\t\tKilling previous program being debugged"
989 exp_continue
990 }
991 -re "Load new symbol table from \".*\".*y or n. $" {
992 send_gdb "y\n"
993 gdb_expect 120 {
994 -re "Reading symbols from.*done.*$gdb_prompt $" {
995 verbose "\t\tLoaded $arg with new symbol table into $GDB"
996 return 0
997 }
998 timeout {
999 perror "(timeout) Couldn't load $arg, other program already loaded."
1000 return -1
1001 }
1002 }
1003 }
1004 -re "No such file or directory.*$gdb_prompt $" {
1005 perror "($arg) No such file or directory\n"
1006 return -1
1007 }
1008 -re "$gdb_prompt $" {
1009 perror "couldn't load $arg into $GDB."
1010 return -1
1011 }
1012 timeout {
1013 perror "couldn't load $arg into $GDB (timed out)."
1014 return -1
1015 }
1016 eof {
1017 # This is an attempt to detect a core dump, but seems not to
1018 # work. Perhaps we need to match .* followed by eof, in which
1019 # gdb_expect does not seem to have a way to do that.
1020 perror "couldn't load $arg into $GDB (end of file)."
1021 return -1
1022 }
1023 }
1024 }
1025
1026 #
1027 # start gdb -- start gdb running, default procedure
1028 #
1029 # When running over NFS, particularly if running many simultaneous
1030 # tests on different hosts all using the same server, things can
1031 # get really slow. Give gdb at least 3 minutes to start up.
1032 #
1033 proc default_gdb_start { } {
1034 global verbose
1035 global GDB
1036 global GDBFLAGS
1037 global gdb_prompt
1038 global timeout
1039 global gdb_spawn_id;
1040
1041 gdb_stop_suppressing_tests;
1042
1043 verbose "Spawning $GDB -nw $GDBFLAGS"
1044
1045 if [info exists gdb_spawn_id] {
1046 return 0;
1047 }
1048
1049 if ![is_remote host] {
1050 if { [which $GDB] == 0 } then {
1051 perror "$GDB does not exist."
1052 exit 1
1053 }
1054 }
1055 set res [remote_spawn host "$GDB -nw $GDBFLAGS [host_info gdb_opts]"];
1056 if { $res < 0 || $res == "" } {
1057 perror "Spawning $GDB failed."
1058 return 1;
1059 }
1060 gdb_expect 360 {
1061 -re "\[\r\n\]$gdb_prompt $" {
1062 verbose "GDB initialized."
1063 }
1064 -re "$gdb_prompt $" {
1065 perror "GDB never initialized."
1066 return -1
1067 }
1068 timeout {
1069 perror "(timeout) GDB never initialized after 10 seconds."
1070 remote_close host;
1071 return -1
1072 }
1073 }
1074 set gdb_spawn_id -1;
1075 # force the height to "unlimited", so no pagers get used
1076
1077 send_gdb "set height 0\n"
1078 gdb_expect 10 {
1079 -re "$gdb_prompt $" {
1080 verbose "Setting height to 0." 2
1081 }
1082 timeout {
1083 warning "Couldn't set the height to 0"
1084 }
1085 }
1086 # force the width to "unlimited", so no wraparound occurs
1087 send_gdb "set width 0\n"
1088 gdb_expect 10 {
1089 -re "$gdb_prompt $" {
1090 verbose "Setting width to 0." 2
1091 }
1092 timeout {
1093 warning "Couldn't set the width to 0."
1094 }
1095 }
1096 return 0;
1097 }
1098
1099 # Return a 1 for configurations for which we don't even want to try to
1100 # test C++.
1101
1102 proc skip_cplus_tests {} {
1103 if { [istarget "d10v-*-*"] } {
1104 return 1
1105 }
1106 if { [istarget "h8300-*-*"] } {
1107 return 1
1108 }
1109
1110 # The C++ IO streams are too large for HC11/HC12 and are thus not
1111 # available. The gdb C++ tests use them and don't compile.
1112 if { [istarget "m6811-*-*"] } {
1113 return 1
1114 }
1115 if { [istarget "m6812-*-*"] } {
1116 return 1
1117 }
1118 return 0
1119 }
1120
1121 # Return a 1 if I don't even want to try to test FORTRAN.
1122
1123 proc skip_fortran_tests {} {
1124 return 0
1125 }
1126
1127 # Skip all the tests in the file if you are not on an hppa running
1128 # hpux target.
1129
1130 proc skip_hp_tests {} {
1131 eval set skip_hp [ expr ![isnative] || ![istarget "hppa*-*-hpux*"] ]
1132 verbose "Skip hp tests is $skip_hp"
1133 return $skip_hp
1134 }
1135
1136 set compiler_info "unknown"
1137 set gcc_compiled 0
1138 set hp_cc_compiler 0
1139 set hp_aCC_compiler 0
1140
1141 # Figure out what compiler I am using.
1142 #
1143 # BINFILE is a "compiler information" output file. This implementation
1144 # does not use BINFILE.
1145 #
1146 # ARGS can be empty or "C++". If empty, "C" is assumed.
1147 #
1148 # There are several ways to do this, with various problems.
1149 #
1150 # [ gdb_compile -E $ifile -o $binfile.ci ]
1151 # source $binfile.ci
1152 #
1153 # Single Unix Spec v3 says that "-E -o ..." together are not
1154 # specified. And in fact, the native compiler on hp-ux 11 (among
1155 # others) does not work with "-E -o ...". Most targets used to do
1156 # this, and it mostly worked, because it works with gcc.
1157 #
1158 # [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
1159 # source $binfile.ci
1160 #
1161 # This avoids the problem with -E and -o together. This almost works
1162 # if the build machine is the same as the host machine, which is
1163 # usually true of the targets which are not gcc. But this code does
1164 # not figure which compiler to call, and it always ends up using the C
1165 # compiler. Not good for setting hp_aCC_compiler. Targets
1166 # hppa*-*-hpux* and mips*-*-irix* used to do this.
1167 #
1168 # [ gdb_compile -E $ifile > $binfile.ci ]
1169 # source $binfile.ci
1170 #
1171 # dejagnu target_compile says that it supports output redirection,
1172 # but the code is completely different from the normal path and I
1173 # don't want to sweep the mines from that path. So I didn't even try
1174 # this.
1175 #
1176 # set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
1177 # eval $cppout
1178 #
1179 # I actually do this for all targets now. gdb_compile runs the right
1180 # compiler, and TCL captures the output, and I eval the output.
1181 #
1182 # Unfortunately, expect logs the output of the command as it goes by,
1183 # and dejagnu helpfully prints a second copy of it right afterwards.
1184 # So I turn off expect logging for a moment.
1185 #
1186 # [ gdb_compile $ifile $ciexe_file executable $args ]
1187 # [ remote_exec $ciexe_file ]
1188 # [ source $ci_file.out ]
1189 #
1190 # I could give up on -E and just do this.
1191 # I didn't get desperate enough to try this.
1192 #
1193 # -- chastain 2004-01-06
1194
1195 proc get_compiler_info {binfile args} {
1196 # For compiler.c and compiler.cc
1197 global srcdir
1198
1199 # I am going to play with the log to keep noise out.
1200 global outdir
1201 global tool
1202
1203 # These come from compiler.c or compiler.cc
1204 global compiler_info
1205
1206 # Legacy global data symbols.
1207 global gcc_compiled
1208 global hp_cc_compiler
1209 global hp_aCC_compiler
1210
1211 # Choose which file to preprocess.
1212 set ifile "${srcdir}/lib/compiler.c"
1213 if { [llength $args] > 0 && [lindex $args 0] == "c++" } {
1214 set ifile "${srcdir}/lib/compiler.cc"
1215 }
1216
1217 # Run $ifile through the right preprocessor.
1218 # Toggle gdb.log to keep the compiler output out of the log.
1219 log_file
1220 set cppout [ gdb_compile "${ifile}" "" preprocess [list "$args" quiet] ]
1221 log_file -a "$outdir/$tool.log"
1222
1223 # Eval the output.
1224 set unknown 0
1225 foreach cppline [ split "$cppout" "\n" ] {
1226 if { [ regexp "^#" "$cppline" ] } {
1227 # line marker
1228 } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
1229 # blank line
1230 } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
1231 # eval this line
1232 verbose "get_compiler_info: $cppline" 2
1233 eval "$cppline"
1234 } else {
1235 # unknown line
1236 verbose -log "get_compiler_info: $cppline"
1237 set unknown 1
1238 }
1239 }
1240
1241 # Reset to unknown compiler if any diagnostics happened.
1242 if { $unknown } {
1243 set compiler_info "unknown"
1244 }
1245
1246 # Set the legacy symbols.
1247 set gcc_compiled 0
1248 set hp_cc_compiler 0
1249 set hp_aCC_compiler 0
1250 if { [regexp "^gcc-1-" "$compiler_info" ] } { set gcc_compiled 1 }
1251 if { [regexp "^gcc-2-" "$compiler_info" ] } { set gcc_compiled 2 }
1252 if { [regexp "^gcc-3-" "$compiler_info" ] } { set gcc_compiled 3 }
1253 if { [regexp "^gcc-4-" "$compiler_info" ] } { set gcc_compiled 4 }
1254 if { [regexp "^gcc-5-" "$compiler_info" ] } { set gcc_compiled 5 }
1255 if { [regexp "^hpcc-" "$compiler_info" ] } { set hp_cc_compiler 1 }
1256 if { [regexp "^hpacc-" "$compiler_info" ] } { set hp_aCC_compiler 1 }
1257
1258 # Log what happened.
1259 verbose -log "get_compiler_info: $compiler_info"
1260
1261 # Most compilers will evaluate comparisons and other boolean
1262 # operations to 0 or 1.
1263 uplevel \#0 { set true 1 }
1264 uplevel \#0 { set false 0 }
1265
1266 # Use of aCC results in boolean results being displayed as
1267 # "true" or "false"
1268 if { $hp_aCC_compiler } {
1269 uplevel \#0 { set true true }
1270 uplevel \#0 { set false false }
1271 }
1272
1273 return 0;
1274 }
1275
1276 proc test_compiler_info { compiler } {
1277 global compiler_info
1278 return [string match $compiler $compiler_info]
1279 }
1280
1281 set gdb_wrapper_initialized 0
1282
1283 proc gdb_wrapper_init { args } {
1284 global gdb_wrapper_initialized;
1285 global gdb_wrapper_file;
1286 global gdb_wrapper_flags;
1287
1288 if { $gdb_wrapper_initialized == 1 } { return; }
1289
1290 if {[target_info exists needs_status_wrapper] && \
1291 [target_info needs_status_wrapper] != "0"} {
1292 set result [build_wrapper "testglue.o"];
1293 if { $result != "" } {
1294 set gdb_wrapper_file [lindex $result 0];
1295 set gdb_wrapper_flags [lindex $result 1];
1296 } else {
1297 warning "Status wrapper failed to build."
1298 }
1299 }
1300 set gdb_wrapper_initialized 1
1301 }
1302
1303 proc gdb_compile {source dest type options} {
1304 global GDB_TESTCASE_OPTIONS;
1305 global gdb_wrapper_file;
1306 global gdb_wrapper_flags;
1307 global gdb_wrapper_initialized;
1308
1309 if [target_info exists gdb_stub] {
1310 set options2 { "additional_flags=-Dusestubs" }
1311 lappend options "libs=[target_info gdb_stub]";
1312 set options [concat $options2 $options]
1313 }
1314 if [target_info exists is_vxworks] {
1315 set options2 { "additional_flags=-Dvxworks" }
1316 lappend options "libs=[target_info gdb_stub]";
1317 set options [concat $options2 $options]
1318 }
1319 if [info exists GDB_TESTCASE_OPTIONS] {
1320 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS";
1321 }
1322 verbose "options are $options"
1323 verbose "source is $source $dest $type $options"
1324
1325 if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
1326
1327 if {[target_info exists needs_status_wrapper] && \
1328 [target_info needs_status_wrapper] != "0" && \
1329 [info exists gdb_wrapper_file]} {
1330 lappend options "libs=${gdb_wrapper_file}"
1331 lappend options "ldflags=${gdb_wrapper_flags}"
1332 }
1333
1334 set result [target_compile $source $dest $type $options];
1335 regsub "\[\r\n\]*$" "$result" "" result;
1336 regsub "^\[\r\n\]*" "$result" "" result;
1337 if { $result != "" && [lsearch $options quiet] == -1} {
1338 clone_output "gdb compile failed, $result"
1339 }
1340 return $result;
1341 }
1342
1343
1344 # This is just like gdb_compile, above, except that it tries compiling
1345 # against several different thread libraries, to see which one this
1346 # system has.
1347 proc gdb_compile_pthreads {source dest type options} {
1348 set built_binfile 0
1349 set why_msg "unrecognized error"
1350 foreach lib {-lpthreads -lpthread -lthread} {
1351 # This kind of wipes out whatever libs the caller may have
1352 # set. Or maybe theirs will override ours. How infelicitous.
1353 set options_with_lib [concat $options [list libs=$lib quiet]]
1354 set ccout [gdb_compile $source $dest $type $options_with_lib]
1355 switch -regexp -- $ccout {
1356 ".*no posix threads support.*" {
1357 set why_msg "missing threads include file"
1358 break
1359 }
1360 ".*cannot open -lpthread.*" {
1361 set why_msg "missing runtime threads library"
1362 }
1363 ".*Can't find library for -lpthread.*" {
1364 set why_msg "missing runtime threads library"
1365 }
1366 {^$} {
1367 pass "successfully compiled posix threads test case"
1368 set built_binfile 1
1369 break
1370 }
1371 }
1372 }
1373 if {!$built_binfile} {
1374 unsupported "Couldn't compile $source: ${why_msg}"
1375 return -1
1376 }
1377 }
1378
1379 # This is just like gdb_compile_pthreads, above, except that we always add the
1380 # objc library for compiling Objective-C programs
1381 proc gdb_compile_objc {source dest type options} {
1382 set built_binfile 0
1383 set why_msg "unrecognized error"
1384 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
1385 # This kind of wipes out whatever libs the caller may have
1386 # set. Or maybe theirs will override ours. How infelicitous.
1387 if { $lib == "solaris" } {
1388 set lib "-lpthread -lposix4"
1389 }
1390 if { $lib != "-lobjc" } {
1391 set lib "-lobjc $lib"
1392 }
1393 set options_with_lib [concat $options [list libs=$lib quiet]]
1394 set ccout [gdb_compile $source $dest $type $options_with_lib]
1395 switch -regexp -- $ccout {
1396 ".*no posix threads support.*" {
1397 set why_msg "missing threads include file"
1398 break
1399 }
1400 ".*cannot open -lpthread.*" {
1401 set why_msg "missing runtime threads library"
1402 }
1403 ".*Can't find library for -lpthread.*" {
1404 set why_msg "missing runtime threads library"
1405 }
1406 {^$} {
1407 pass "successfully compiled objc with posix threads test case"
1408 set built_binfile 1
1409 break
1410 }
1411 }
1412 }
1413 if {!$built_binfile} {
1414 unsupported "Couldn't compile $source: ${why_msg}"
1415 return -1
1416 }
1417 }
1418
1419 proc send_gdb { string } {
1420 global suppress_flag;
1421 if { $suppress_flag } {
1422 return "suppressed";
1423 }
1424 return [remote_send host "$string"];
1425 }
1426
1427 #
1428 #
1429
1430 proc gdb_expect { args } {
1431 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
1432 set gtimeout [lindex $args 0];
1433 set expcode [list [lindex $args 1]];
1434 } else {
1435 upvar timeout timeout;
1436
1437 set expcode $args;
1438 if [target_info exists gdb,timeout] {
1439 if [info exists timeout] {
1440 if { $timeout < [target_info gdb,timeout] } {
1441 set gtimeout [target_info gdb,timeout];
1442 } else {
1443 set gtimeout $timeout;
1444 }
1445 } else {
1446 set gtimeout [target_info gdb,timeout];
1447 }
1448 }
1449
1450 if ![info exists gtimeout] {
1451 global timeout;
1452 if [info exists timeout] {
1453 set gtimeout $timeout;
1454 } else {
1455 # Eeeeew.
1456 set gtimeout 60;
1457 }
1458 }
1459 }
1460 global suppress_flag;
1461 global remote_suppress_flag;
1462 if [info exists remote_suppress_flag] {
1463 set old_val $remote_suppress_flag;
1464 }
1465 if [info exists suppress_flag] {
1466 if { $suppress_flag } {
1467 set remote_suppress_flag 1;
1468 }
1469 }
1470 set code [catch \
1471 {uplevel remote_expect host $gtimeout $expcode} string];
1472 if [info exists old_val] {
1473 set remote_suppress_flag $old_val;
1474 } else {
1475 if [info exists remote_suppress_flag] {
1476 unset remote_suppress_flag;
1477 }
1478 }
1479
1480 if {$code == 1} {
1481 global errorInfo errorCode;
1482
1483 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
1484 } elseif {$code == 2} {
1485 return -code return $string
1486 } elseif {$code == 3} {
1487 return
1488 } elseif {$code > 4} {
1489 return -code $code $string
1490 }
1491 }
1492
1493 # gdb_expect_list MESSAGE SENTINEL LIST -- expect a sequence of outputs
1494 #
1495 # Check for long sequence of output by parts.
1496 # MESSAGE: is the test message to be printed with the test success/fail.
1497 # SENTINEL: Is the terminal pattern indicating that output has finished.
1498 # LIST: is the sequence of outputs to match.
1499 # If the sentinel is recognized early, it is considered an error.
1500 #
1501 # Returns:
1502 # 1 if the test failed,
1503 # 0 if the test passes,
1504 # -1 if there was an internal error.
1505 #
1506 proc gdb_expect_list {test sentinel list} {
1507 global gdb_prompt
1508 global suppress_flag
1509 set index 0
1510 set ok 1
1511 if { $suppress_flag } {
1512 set ok 0
1513 unresolved "${test}"
1514 }
1515 while { ${index} < [llength ${list}] } {
1516 set pattern [lindex ${list} ${index}]
1517 set index [expr ${index} + 1]
1518 if { ${index} == [llength ${list}] } {
1519 if { ${ok} } {
1520 gdb_expect {
1521 -re "${pattern}${sentinel}" {
1522 # pass "${test}, pattern ${index} + sentinel"
1523 }
1524 -re "${sentinel}" {
1525 fail "${test} (pattern ${index} + sentinel)"
1526 set ok 0
1527 }
1528 -re ".*A problem internal to GDB has been detected" {
1529 fail "${test} (GDB internal error)"
1530 set ok 0
1531 gdb_internal_error_resync
1532 }
1533 timeout {
1534 fail "${test} (pattern ${index} + sentinel) (timeout)"
1535 set ok 0
1536 }
1537 }
1538 } else {
1539 # unresolved "${test}, pattern ${index} + sentinel"
1540 }
1541 } else {
1542 if { ${ok} } {
1543 gdb_expect {
1544 -re "${pattern}" {
1545 # pass "${test}, pattern ${index}"
1546 }
1547 -re "${sentinel}" {
1548 fail "${test} (pattern ${index})"
1549 set ok 0
1550 }
1551 -re ".*A problem internal to GDB has been detected" {
1552 fail "${test} (GDB internal error)"
1553 set ok 0
1554 gdb_internal_error_resync
1555 }
1556 timeout {
1557 fail "${test} (pattern ${index}) (timeout)"
1558 set ok 0
1559 }
1560 }
1561 } else {
1562 # unresolved "${test}, pattern ${index}"
1563 }
1564 }
1565 }
1566 if { ${ok} } {
1567 pass "${test}"
1568 return 0
1569 } else {
1570 return 1
1571 }
1572 }
1573
1574 #
1575 #
1576 proc gdb_suppress_entire_file { reason } {
1577 global suppress_flag;
1578
1579 warning "$reason\n";
1580 set suppress_flag -1;
1581 }
1582
1583 #
1584 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
1585 # gdb_expect to fail immediately (until the next call to
1586 # gdb_stop_suppressing_tests).
1587 #
1588 proc gdb_suppress_tests { args } {
1589 global suppress_flag;
1590
1591 return; # fnf - disable pending review of results where
1592 # testsuite ran better without this
1593 incr suppress_flag;
1594
1595 if { $suppress_flag == 1 } {
1596 if { [llength $args] > 0 } {
1597 warning "[lindex $args 0]\n";
1598 } else {
1599 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n";
1600 }
1601 }
1602 }
1603
1604 #
1605 # Clear suppress_flag.
1606 #
1607 proc gdb_stop_suppressing_tests { } {
1608 global suppress_flag;
1609
1610 if [info exists suppress_flag] {
1611 if { $suppress_flag > 0 } {
1612 set suppress_flag 0;
1613 clone_output "Tests restarted.\n";
1614 }
1615 } else {
1616 set suppress_flag 0;
1617 }
1618 }
1619
1620 proc gdb_clear_suppressed { } {
1621 global suppress_flag;
1622
1623 set suppress_flag 0;
1624 }
1625
1626 proc gdb_start { } {
1627 default_gdb_start
1628 }
1629
1630 proc gdb_exit { } {
1631 catch default_gdb_exit
1632 }
1633
1634 #
1635 # gdb_load -- load a file into the debugger.
1636 # return a -1 if anything goes wrong.
1637 #
1638 proc gdb_load { arg } {
1639 return [gdb_file_cmd $arg]
1640 }
1641
1642 proc gdb_continue { function } {
1643 global decimal
1644
1645 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"];
1646 }
1647
1648 proc default_gdb_init { args } {
1649 global gdb_wrapper_initialized
1650
1651 gdb_clear_suppressed;
1652
1653 # Make sure that the wrapper is rebuilt
1654 # with the appropriate multilib option.
1655 set gdb_wrapper_initialized 0
1656
1657 # Uh, this is lame. Really, really, really lame. But there's this *one*
1658 # testcase that will fail in random places if we don't increase this.
1659 match_max -d 20000
1660
1661 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
1662 if { [llength $args] > 0 } {
1663 global pf_prefix
1664
1665 set file [lindex $args 0];
1666
1667 set pf_prefix "[file tail [file dirname $file]]/[file tail $file]:";
1668 }
1669 global gdb_prompt;
1670 if [target_info exists gdb_prompt] {
1671 set gdb_prompt [target_info gdb_prompt];
1672 } else {
1673 set gdb_prompt "\\(gdb\\)"
1674 }
1675 }
1676
1677 proc gdb_init { args } {
1678 return [eval default_gdb_init $args];
1679 }
1680
1681 proc gdb_finish { } {
1682 gdb_exit;
1683 }
1684
1685 global debug_format
1686 set debug_format "unknown"
1687
1688 # Run the gdb command "info source" and extract the debugging format
1689 # information from the output and save it in debug_format.
1690
1691 proc get_debug_format { } {
1692 global gdb_prompt
1693 global verbose
1694 global expect_out
1695 global debug_format
1696
1697 set debug_format "unknown"
1698 send_gdb "info source\n"
1699 gdb_expect 10 {
1700 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
1701 set debug_format $expect_out(1,string)
1702 verbose "debug format is $debug_format"
1703 return 1;
1704 }
1705 -re "No current source file.\r\n$gdb_prompt $" {
1706 perror "get_debug_format used when no current source file"
1707 return 0;
1708 }
1709 -re "$gdb_prompt $" {
1710 warning "couldn't check debug format (no valid response)."
1711 return 1;
1712 }
1713 timeout {
1714 warning "couldn't check debug format (timed out)."
1715 return 1;
1716 }
1717 }
1718 }
1719
1720 # Return true if FORMAT matches the debug format the current test was
1721 # compiled with. FORMAT is a shell-style globbing pattern; it can use
1722 # `*', `[...]', and so on.
1723 #
1724 # This function depends on variables set by `get_debug_format', above.
1725
1726 proc test_debug_format {format} {
1727 global debug_format
1728
1729 return [expr [string match $format $debug_format] != 0]
1730 }
1731
1732 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
1733 # COFF, stabs, etc). If that format matches the format that the
1734 # current test was compiled with, then the next test is expected to
1735 # fail for any target. Returns 1 if the next test or set of tests is
1736 # expected to fail, 0 otherwise (or if it is unknown). Must have
1737 # previously called get_debug_format.
1738 proc setup_xfail_format { format } {
1739 set ret [test_debug_format $format];
1740
1741 if {$ret} then {
1742 setup_xfail "*-*-*"
1743 }
1744 return $ret;
1745 }
1746
1747 proc gdb_step_for_stub { } {
1748 global gdb_prompt;
1749
1750 if ![target_info exists gdb,use_breakpoint_for_stub] {
1751 if [target_info exists gdb_stub_step_command] {
1752 set command [target_info gdb_stub_step_command];
1753 } else {
1754 set command "step";
1755 }
1756 send_gdb "${command}\n";
1757 set tries 0;
1758 gdb_expect 60 {
1759 -re "(main.* at |.*in .*start).*$gdb_prompt" {
1760 return;
1761 }
1762 -re ".*$gdb_prompt" {
1763 incr tries;
1764 if { $tries == 5 } {
1765 fail "stepping out of breakpoint function";
1766 return;
1767 }
1768 send_gdb "${command}\n";
1769 exp_continue;
1770 }
1771 default {
1772 fail "stepping out of breakpoint function";
1773 return;
1774 }
1775 }
1776 }
1777 send_gdb "where\n";
1778 gdb_expect {
1779 -re "main\[^\r\n\]*at \(\[^:]+\):\(\[0-9\]+\)" {
1780 set file $expect_out(1,string);
1781 set linenum [expr $expect_out(2,string) + 1];
1782 set breakplace "${file}:${linenum}";
1783 }
1784 default {}
1785 }
1786 send_gdb "break ${breakplace}\n";
1787 gdb_expect 60 {
1788 -re "Breakpoint (\[0-9\]+) at.*$gdb_prompt" {
1789 set breakpoint $expect_out(1,string);
1790 }
1791 -re "Breakpoint (\[0-9\]+): file.*$gdb_prompt" {
1792 set breakpoint $expect_out(1,string);
1793 }
1794 default {}
1795 }
1796 send_gdb "continue\n";
1797 gdb_expect 60 {
1798 -re "Breakpoint ${breakpoint},.*$gdb_prompt" {
1799 gdb_test "delete $breakpoint" ".*" "";
1800 return;
1801 }
1802 default {}
1803 }
1804 }
1805
1806 # gdb_get_line_number TEXT [FILE]
1807 #
1808 # Search the source file FILE, and return the line number of the
1809 # first line containing TEXT. If no match is found, return -1.
1810 #
1811 # TEXT is a string literal, not a regular expression.
1812 #
1813 # The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
1814 # specified, and does not start with "/", then it is assumed to be in
1815 # "$srcdir/$subdir". This is awkward, and can be fixed in the future,
1816 # by changing the callers and the interface at the same time.
1817 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
1818 # gdb.base/ena-dis-br.exp.
1819 #
1820 # Use this function to keep your test scripts independent of the
1821 # exact line numbering of the source file. Don't write:
1822 #
1823 # send_gdb "break 20"
1824 #
1825 # This means that if anyone ever edits your test's source file,
1826 # your test could break. Instead, put a comment like this on the
1827 # source file line you want to break at:
1828 #
1829 # /* breakpoint spot: frotz.exp: test name */
1830 #
1831 # and then write, in your test script (which we assume is named
1832 # frotz.exp):
1833 #
1834 # send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
1835 #
1836 # (Yes, Tcl knows how to handle the nested quotes and brackets.
1837 # Try this:
1838 # $ tclsh
1839 # % puts "foo [lindex "bar baz" 1]"
1840 # foo baz
1841 # %
1842 # Tcl is quite clever, for a little stringy language.)
1843 #
1844 # ===
1845 #
1846 # The previous implementation of this procedure used the gdb search command.
1847 # This version is different:
1848 #
1849 # . It works with MI, and it also works when gdb is not running.
1850 #
1851 # . It operates on the build machine, not the host machine.
1852 #
1853 # . For now, this implementation fakes a current directory of
1854 # $srcdir/$subdir to be compatible with the old implementation.
1855 # This will go away eventually and some callers will need to
1856 # be changed.
1857 #
1858 # . The TEXT argument is literal text and matches literally,
1859 # not a regular expression as it was before.
1860 #
1861 # . State changes in gdb, such as changing the current file
1862 # and setting $_, no longer happen.
1863 #
1864 # After a bit of time we can forget about the differences from the
1865 # old implementation.
1866 #
1867 # --chastain 2004-08-05
1868
1869 proc gdb_get_line_number { text { file "" } } {
1870 global srcdir
1871 global subdir
1872 global srcfile
1873
1874 if { "$file" == "" } then {
1875 set file "$srcfile"
1876 }
1877 if { ! [regexp "^/" "$file"] } then {
1878 set file "$srcdir/$subdir/$file"
1879 }
1880
1881 if { [ catch { set fd [open "$file"] } message ] } then {
1882 perror "$message"
1883 return -1
1884 }
1885
1886 set found -1
1887 for { set line 1 } { 1 } { incr line } {
1888 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
1889 perror "$message"
1890 return -1
1891 }
1892 if { $nchar < 0 } then {
1893 break
1894 }
1895 if { [string first "$text" "$body"] >= 0 } then {
1896 set found $line
1897 break
1898 }
1899 }
1900
1901 if { [ catch { close "$fd" } message ] } then {
1902 perror "$message"
1903 return -1
1904 }
1905
1906 return $found
1907 }
1908
1909 # gdb_continue_to_end:
1910 # The case where the target uses stubs has to be handled specially. If a
1911 # stub is used, we set a breakpoint at exit because we cannot rely on
1912 # exit() behavior of a remote target.
1913 #
1914 # mssg is the error message that gets printed.
1915
1916 proc gdb_continue_to_end {mssg} {
1917 if [target_info exists use_gdb_stub] {
1918 if {![gdb_breakpoint "exit"]} {
1919 return 0
1920 }
1921 gdb_test "continue" "Continuing..*Breakpoint .*exit.*" \
1922 "continue until exit at $mssg"
1923 } else {
1924 # Continue until we exit. Should not stop again.
1925 # Don't bother to check the output of the program, that may be
1926 # extremely tough for some remote systems.
1927 gdb_test "continue"\
1928 "Continuing.\[\r\n0-9\]+(... EXIT code 0\[\r\n\]+|Program exited normally\\.).*"\
1929 "continue until exit at $mssg"
1930 }
1931 }
1932
1933 proc rerun_to_main {} {
1934 global gdb_prompt
1935
1936 if [target_info exists use_gdb_stub] {
1937 gdb_run_cmd
1938 gdb_expect {
1939 -re ".*Breakpoint .*main .*$gdb_prompt $"\
1940 {pass "rerun to main" ; return 0}
1941 -re "$gdb_prompt $"\
1942 {fail "rerun to main" ; return 0}
1943 timeout {fail "(timeout) rerun to main" ; return 0}
1944 }
1945 } else {
1946 send_gdb "run\n"
1947 gdb_expect {
1948 -re "The program .* has been started already.*y or n. $" {
1949 send_gdb "y\n"
1950 exp_continue
1951 }
1952 -re "Starting program.*$gdb_prompt $"\
1953 {pass "rerun to main" ; return 0}
1954 -re "$gdb_prompt $"\
1955 {fail "rerun to main" ; return 0}
1956 timeout {fail "(timeout) rerun to main" ; return 0}
1957 }
1958 }
1959 }
1960
1961 # Print a message and return true if a test should be skipped
1962 # due to lack of floating point suport.
1963
1964 proc gdb_skip_float_test { msg } {
1965 if [target_info exists gdb,skip_float_tests] {
1966 verbose "Skipping test '$msg': no float tests.";
1967 return 1;
1968 }
1969 return 0;
1970 }
1971
1972 # Print a message and return true if a test should be skipped
1973 # due to lack of stdio support.
1974
1975 proc gdb_skip_stdio_test { msg } {
1976 if [target_info exists gdb,noinferiorio] {
1977 verbose "Skipping test '$msg': no inferior i/o.";
1978 return 1;
1979 }
1980 return 0;
1981 }
1982
1983 proc gdb_skip_bogus_test { msg } {
1984 return 0;
1985 }
1986
1987
1988 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
1989 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
1990 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
1991 # the name of a idebuginfo only file. This file will be stored in the
1992 # gdb.base/.debug subdirectory.
1993
1994 # Functions for separate debug info testing
1995
1996 # starting with an executable:
1997 # foo --> original executable
1998
1999 # at the end of the process we have:
2000 # foo.stripped --> foo w/o debug info
2001 # .debug/foo.debug --> foo's debug info
2002 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
2003
2004 # Return the name of the file in which we should stor EXEC's separated
2005 # debug info. EXEC contains the full path.
2006 proc separate_debug_filename { exec } {
2007
2008 # In a .debug subdirectory off the same directory where the testcase
2009 # executable is going to be. Something like:
2010 # <your-path>/gdb/testsuite/gdb.base/.debug/blah.debug.
2011 # This is the default location where gdb expects to findi
2012 # the debug info file.
2013
2014 set exec_dir [file dirname $exec]
2015 set exec_file [file tail $exec]
2016 set debug_dir [file join $exec_dir ".debug"]
2017 set debug_file [file join $debug_dir "${exec_file}.debug"]
2018
2019 return $debug_file
2020 }
2021
2022
2023 proc gdb_gnu_strip_debug { dest } {
2024
2025 set debug_file [separate_debug_filename $dest]
2026 set strip_to_file_program strip
2027 set objcopy_program objcopy
2028
2029 # Make sure the directory that will hold the separated debug
2030 # info actually exists.
2031 set debug_dir [file dirname $debug_file]
2032 if {! [file isdirectory $debug_dir]} {
2033 file mkdir $debug_dir
2034 }
2035
2036 set debug_link [file tail $debug_file]
2037 set stripped_file "${dest}.stripped"
2038
2039 # Get rid of the debug info, and store result in stripped_file
2040 # something like gdb/testsuite/gdb.base/blah.stripped.
2041 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
2042 verbose "result is $result"
2043 verbose "output is $output"
2044 if {$result == 1} {
2045 return 1
2046 }
2047
2048 # Get rid of everything but the debug info, and store result in debug_file
2049 # This will be in the .debug subdirectory, see above.
2050 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
2051 verbose "result is $result"
2052 verbose "output is $output"
2053 if {$result == 1} {
2054 return 1
2055 }
2056
2057 # Link the two previous output files together, adding the .gnu_debuglink
2058 # section to the stripped_file, containing a pointer to the debug_file,
2059 # save the new file in dest.
2060 # This will be the regular executable filename, in the usual location.
2061 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
2062 verbose "result is $result"
2063 verbose "output is $output"
2064 if {$result == 1} {
2065 return 1
2066 }
2067
2068 return 0
2069 }
2070