* lib/gdb.exp(gdb_step_for_stub): New function.
[binutils-gdb.git] / gdb / testsuite / lib / gdb.exp
1 # Copyright (C) 1992, 1994, 1995, 1997 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 # This file was written by Fred Fish. (fnf@cygnus.com)
21
22 # Generic gdb subroutines that should work for any target. If these
23 # need to be modified for any target, it can be done with a variable
24 # or by passing arguments.
25
26 load_lib libgloss.exp
27
28 global GDB
29 global CHILL_LIB
30 global CHILL_RT0
31
32 if ![info exists CHILL_LIB] {
33 set CHILL_LIB [findfile $base_dir/../../gcc/ch/runtime/libchill.a "$base_dir/../../gcc/ch/runtime/libchill.a" [transform -lchill]]
34 }
35 verbose "using CHILL_LIB = $CHILL_LIB" 2
36 if ![info exists CHILL_RT0] {
37 set CHILL_RT0 [findfile $base_dir/../../gcc/ch/runtime/chillrt0.o "$base_dir/../../gcc/ch/runtime/chillrt0.o" ""]
38 }
39 verbose "using CHILL_RT0 = $CHILL_RT0" 2
40
41 if [info exists TOOL_EXECUTABLE] {
42 set GDB $TOOL_EXECUTABLE;
43 }
44 if ![info exists GDB] {
45 if ![is_remote host] {
46 set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
47 } else {
48 set GDB [transform gdb];
49 }
50 }
51 verbose "using GDB = $GDB" 2
52
53 global GDBFLAGS
54 if ![info exists GDBFLAGS] {
55 set GDBFLAGS "-nx"
56 }
57 verbose "using GDBFLAGS = $GDBFLAGS" 2
58
59 # The variable prompt is a regexp which matches the gdb prompt. Set it if it
60 # is not already set.
61 global gdb_prompt
62 if ![info exists prompt] then {
63 set gdb_prompt "\[(\]gdb\[)\]"
64 }
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 exec 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 send_gdb "delete breakpoints\n"
133 gdb_expect 30 {
134 -re "Delete all breakpoints.*y or n.*$" {
135 send_gdb "y\n";
136 exp_continue
137 }
138 -re "$gdb_prompt $" { # This happens if there were no breakpoints
139 }
140 timeout { perror "Delete all breakpoints in delete_breakpoints (timeout)" ; return }
141 }
142 send_gdb "info breakpoints\n"
143 gdb_expect 30 {
144 -re "No breakpoints or watchpoints..*$gdb_prompt $" {}
145 -re "$gdb_prompt $" { perror "breakpoints not deleted" ; return }
146 -re "Delete all breakpoints.*or n.*$" {
147 send_gdb "y\n";
148 exp_continue
149 }
150 timeout { perror "info breakpoints (timeout)" ; return }
151 }
152 }
153
154
155 #
156 # Generic run command.
157 #
158 # The second pattern below matches up to the first newline *only*.
159 # Using ``.*$'' could swallow up output that we attempt to match
160 # elsewhere.
161 #
162 proc gdb_run_cmd {args} {
163 global gdb_prompt
164
165 if [target_info exists gdb_init_command] {
166 send_gdb "[target_info gdb_init_command]\n";
167 gdb_expect 30 {
168 -re "$gdb_prompt $" { }
169 default {
170 perror "gdb_init_command for target failed";
171 return;
172 }
173 }
174 }
175
176 if [target_info exists use_gdb_stub] {
177 if [target_info exists gdb,do_reload_on_run] {
178 # According to Stu, this will always work.
179 gdb_load "";
180 send_gdb "continue\n";
181 gdb_expect 60 {
182 -re "Continu\[^\r\n\]*\[\r\n\]" {}
183 default {}
184 }
185 return;
186 }
187
188 if [target_info exists gdb,start_symbol] {
189 set start [target_info gdb,start_symbol];
190 } else {
191 set start "start";
192 }
193 send_gdb "jump *$start\n"
194 gdb_expect 30 {
195 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
196 if ![target_info exists gdb_stub] {
197 return;
198 }
199 }
200 -re "No symbol \"start\" in current.*$gdb_prompt $" {
201 send_gdb "jump *_start\n";
202 exp_continue;
203 }
204 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
205 perror "Can't find start symbol to run in gdb_run";
206 return;
207 }
208 -re "Line.* Jump anyway.*y or n. $" {
209 send_gdb "y\n"
210 exp_continue;
211 }
212 -re "No symbol.*context.*$gdb_prompt $" {}
213 -re "The program is not being run.*$gdb_prompt $" {
214 gdb_load "";
215 send_gdb "jump *$start\n";
216 exp_continue;
217 }
218 timeout { perror "Jump to start() failed (timeout)"; return }
219 }
220 if [target_info exists gdb_stub] {
221 gdb_expect 60 {
222 -re "$gdb_prompt $" {
223 send_gdb "continue\n"
224 }
225 }
226 }
227 return
228 }
229 send_gdb "run $args\n"
230 # This doesn't work quite right yet.
231 gdb_expect 60 {
232 -re "The program .* has been started already.*y or n. $" {
233 send_gdb "y\n"
234 exp_continue
235 }
236 -re "Starting program: \[^\r\n\]*" {}
237 }
238 }
239
240 proc gdb_breakpoint { function } {
241 global gdb_prompt
242 global decimal
243
244 send_gdb "break $function\n"
245 # The first two regexps are what we get with -g, the third is without -g.
246 gdb_expect 30 {
247 -re "Breakpoint \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
248 -re "Breakpoint \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
249 -re "Breakpoint \[0-9\]* at .*$gdb_prompt $" {}
250 -re "$gdb_prompt $" { fail "setting breakpoint at $function" ; return 0 }
251 timeout { fail "setting breakpoint at $function (timeout)" ; return 0 }
252 }
253 return 1;
254 }
255
256 # Set breakpoint at function and run gdb until it breaks there.
257 # Since this is the only breakpoint that will be set, if it stops
258 # at a breakpoint, we will assume it is the one we want. We can't
259 # just compare to "function" because it might be a fully qualified,
260 # single quoted C++ function specifier.
261
262 proc runto { function } {
263 global gdb_prompt
264 global decimal
265
266 delete_breakpoints
267
268 if ![gdb_breakpoint $function] {
269 return 0;
270 }
271
272 gdb_run_cmd
273
274 # the "at foo.c:36" output we get with -g.
275 # the "in func" output we get without -g.
276 gdb_expect 30 {
277 -re "Break.* at .*:$decimal.*$gdb_prompt $" {
278 return 1
279 }
280 -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
281 return 1
282 }
283 -re "$gdb_prompt $" {
284 fail "running to $function in runto"
285 return 0
286 }
287 timeout {
288 fail "running to $function in runto (timeout)"
289 return 0
290 }
291 }
292 return 1
293 }
294
295 #
296 # runto_main -- ask gdb to run until we hit a breakpoint at main.
297 # The case where the target uses stubs has to be handled
298 # specially--if it uses stubs, assuming we hit
299 # breakpoint() and just step out of the function.
300 #
301 proc runto_main { } {
302 global gdb_prompt
303 global decimal
304
305 if ![target_info exists gdb_stub] {
306 return [runto main]
307 }
308
309 delete_breakpoints
310
311 gdb_step_for_stub;
312
313 return 1
314 }
315
316 #
317 # gdb_test -- send_gdb a command to gdb and test the result.
318 # Takes three parameters.
319 # Parameters:
320 # First one is the command to execute. If this is the null string
321 # then no command is sent.
322 # Second one is the pattern to match for a PASS, and must NOT include
323 # the \r\n sequence immediately before the gdb prompt.
324 # Third one is an optional message to be printed. If this
325 # a null string "", then the pass/fail messages use the command
326 # string as the message.
327 # Returns:
328 # 1 if the test failed,
329 # 0 if the test passes,
330 # -1 if there was an internal error.
331 #
332 proc gdb_test { args } {
333 global verbose
334 global gdb_prompt
335 global GDB
336 upvar timeout timeout
337
338 if [llength $args]>2 then {
339 set message [lindex $args 2]
340 } else {
341 set message [lindex $args 0]
342 }
343 set command [lindex $args 0]
344 set pattern [lindex $args 1]
345
346 if [llength $args]==5 {
347 set question_string [lindex $args 3];
348 set response_string [lindex $args 4];
349 } else {
350 set question_string "^FOOBAR$"
351 }
352
353 if $verbose>2 then {
354 send_user "Sending \"$command\" to gdb\n"
355 send_user "Looking to match \"$pattern\"\n"
356 send_user "Message is \"$message\"\n"
357 }
358
359 set result -1
360 if ![string match $command ""] {
361 if { [send_gdb "$command\n"] != "" } {
362 global suppress_flag;
363
364 if { ! $suppress_flag } {
365 perror "Couldn't send $command to GDB.";
366 }
367 fail "$message";
368 return $result;
369 }
370 }
371
372 if [info exists timeout] {
373 set tmt $timeout;
374 } else {
375 global timeout;
376 if [info exists timeout] {
377 set tmt $timeout;
378 } else {
379 set tmt 60;
380 }
381 }
382 gdb_expect $tmt {
383 -re "Ending remote debugging.*$gdb_prompt$" {
384 if ![isnative] then {
385 warning "Can`t communicate to remote target."
386 }
387 gdb_exit
388 gdb_start
389 set result -1
390 }
391 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
392 if ![string match "" $message] then {
393 pass "$message"
394 }
395 set result 0
396 }
397 -re "(${question_string})$" {
398 send_gdb "$response_string\n";
399 exp_continue;
400 }
401 -re "Undefined command:.*$gdb_prompt" {
402 perror "Undefined command \"$command\"."
403 set result 1
404 }
405 -re "Ambiguous command.*$gdb_prompt $" {
406 perror "\"$command\" is not a unique command name."
407 set result 1
408 }
409 -re "Program exited with code \[0-9\]+.*$gdb_prompt $" {
410 if ![string match "" $message] then {
411 set errmsg "$message: the program exited"
412 } else {
413 set errmsg "$command: the program exited"
414 }
415 fail "$errmsg"
416 return -1
417 }
418 -re "The program is not being run.*$gdb_prompt $" {
419 if ![string match "" $message] then {
420 set errmsg "$message: the program is no longer running"
421 } else {
422 set errmsg "$command: the program is no longer running"
423 }
424 fail "$errmsg"
425 return -1
426 }
427 -re ".*$gdb_prompt $" {
428 if ![string match "" $message] then {
429 fail "$message"
430 }
431 set result 1
432 }
433 "<return>" {
434 send_gdb "\n"
435 perror "Window too small."
436 }
437 -re "\\(y or n\\) " {
438 send_gdb "n\n"
439 perror "Got interactive prompt."
440 }
441 eof {
442 perror "Process no longer exists"
443 if { $message != "" } {
444 fail "$message"
445 }
446 return -1
447 }
448 full_buffer {
449 perror "internal buffer is full."
450 }
451 timeout {
452 if ![string match "" $message] then {
453 fail "$message (timeout)"
454 }
455 set result 1
456 }
457 }
458 return $result
459 }
460 \f
461 # Test that a command gives an error. For pass or fail, return
462 # a 1 to indicate that more tests can proceed. However a timeout
463 # is a serious error, generates a special fail message, and causes
464 # a 0 to be returned to indicate that more tests are likely to fail
465 # as well.
466
467 proc test_print_reject { args } {
468 global gdb_prompt
469 global verbose
470
471 if [llength $args]==2 then {
472 set expectthis [lindex $args 1]
473 } else {
474 set expectthis "should never match this bogus string"
475 }
476 set sendthis [lindex $args 0]
477 if $verbose>2 then {
478 send_user "Sending \"$sendthis\" to gdb\n"
479 send_user "Looking to match \"$expectthis\"\n"
480 }
481 send_gdb "$sendthis\n"
482 #FIXME: Should add timeout as parameter.
483 gdb_expect {
484 -re "A .* in expression.*\\.*$gdb_prompt $" {
485 pass "reject $sendthis"
486 return 1
487 }
488 -re "Invalid syntax in expression.*$gdb_prompt $" {
489 pass "reject $sendthis"
490 return 1
491 }
492 -re "Junk after end of expression.*$gdb_prompt $" {
493 pass "reject $sendthis"
494 return 1
495 }
496 -re "Invalid number.*$gdb_prompt $" {
497 pass "reject $sendthis"
498 return 1
499 }
500 -re "Invalid character constant.*$gdb_prompt $" {
501 pass "reject $sendthis"
502 return 1
503 }
504 -re "No symbol table is loaded.*$gdb_prompt $" {
505 pass "reject $sendthis"
506 return 1
507 }
508 -re "No symbol .* in current context.*$gdb_prompt $" {
509 pass "reject $sendthis"
510 return 1
511 }
512 -re "$expectthis.*$gdb_prompt $" {
513 pass "reject $sendthis"
514 return 1
515 }
516 -re ".*$gdb_prompt $" {
517 fail "reject $sendthis"
518 return 1
519 }
520 default {
521 fail "reject $sendthis (eof or timeout)"
522 return 0
523 }
524 }
525 }
526 \f
527 # Given an input string, adds backslashes as needed to create a
528 # regexp that will match the string.
529
530 proc string_to_regexp {str} {
531 set result $str
532 regsub -all {[]*+.|()^$\[]} $str {\\&} result
533 return $result
534 }
535
536 # Same as gdb_test, but the second parameter is not a regexp,
537 # but a string that must match exactly.
538
539 proc gdb_test_exact { args } {
540 upvar timeout timeout
541
542 set command [lindex $args 0]
543
544 # This applies a special meaning to a null string pattern. Without
545 # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
546 # messages from commands that should have no output except a new
547 # prompt. With this, only results of a null string will match a null
548 # string pattern.
549
550 set pattern [lindex $args 1]
551 if [string match $pattern ""] {
552 set pattern [string_to_regexp [lindex $args 0]]
553 } else {
554 set pattern [string_to_regexp [lindex $args 1]]
555 }
556
557 # It is most natural to write the pattern argument with only
558 # embedded \n's, especially if you are trying to avoid Tcl quoting
559 # problems. But gdb_expect really wants to see \r\n in patterns. So
560 # transform the pattern here. First transform \r\n back to \n, in
561 # case some users of gdb_test_exact already do the right thing.
562 regsub -all "\r\n" $pattern "\n" pattern
563 regsub -all "\n" $pattern "\r\n" pattern
564 if [llength $args]==3 then {
565 set message [lindex $args 2]
566 } else {
567 set message $command
568 }
569
570 return [gdb_test $command $pattern $message]
571 }
572 \f
573 proc gdb_reinitialize_dir { subdir } {
574 global gdb_prompt
575
576 if [is_remote host] {
577 return "";
578 }
579 send_gdb "dir\n"
580 gdb_expect 60 {
581 -re "Reinitialize source path to empty.*y or n. " {
582 send_gdb "y\n"
583 gdb_expect 60 {
584 -re "Source directories searched.*$gdb_prompt $" {
585 send_gdb "dir $subdir\n"
586 gdb_expect 60 {
587 -re "Source directories searched.*$gdb_prompt $" {
588 verbose "Dir set to $subdir"
589 }
590 -re "$gdb_prompt $" {
591 perror "Dir \"$subdir\" failed."
592 }
593 }
594 }
595 -re "$gdb_prompt $" {
596 perror "Dir \"$subdir\" failed."
597 }
598 }
599 }
600 -re "$gdb_prompt $" {
601 perror "Dir \"$subdir\" failed."
602 }
603 }
604 }
605
606 #
607 # gdb_exit -- exit the GDB, killing the target program if necessary
608 #
609 proc default_gdb_exit {} {
610 global GDB
611 global GDBFLAGS
612 global verbose
613 global gdb_spawn_id;
614
615 gdb_stop_suppressing_tests;
616
617 if ![info exists gdb_spawn_id] {
618 return;
619 }
620
621 verbose "Quitting $GDB $GDBFLAGS"
622
623 if { [is_remote host] && [board_info host exists fileid] } {
624 send_gdb "quit\n";
625 gdb_expect 10 {
626 -re "and kill it.*y or n. " {
627 send_gdb "y\n";
628 exp_continue;
629 }
630 -re "DOSEXIT code" { }
631 default { }
632 }
633 }
634
635 remote_close host;
636 unset gdb_spawn_id
637 }
638
639 #
640 # load a file into the debugger.
641 # return a -1 if anything goes wrong.
642 #
643 proc gdb_file_cmd { arg } {
644 global verbose
645 global loadpath
646 global loadfile
647 global GDB
648 global gdb_prompt
649 upvar timeout timeout
650
651 if [is_remote host] {
652 set arg [remote_download host $arg];
653 if { $arg == "" } {
654 error "download failed"
655 return -1;
656 }
657 }
658
659 send_gdb "file $arg\n"
660 gdb_expect 120 {
661 -re "Reading symbols from.*done.*$gdb_prompt $" {
662 verbose "\t\tLoaded $arg into the $GDB"
663 return 0
664 }
665 -re "has no symbol-table.*$gdb_prompt $" {
666 perror "$arg wasn't compiled with \"-g\""
667 return -1
668 }
669 -re "A program is being debugged already.*Kill it.*y or n. $" {
670 send_gdb "y\n"
671 verbose "\t\tKilling previous program being debugged"
672 exp_continue
673 }
674 -re "Load new symbol table from \".*\".*y or n. $" {
675 send_gdb "y\n"
676 gdb_expect 120 {
677 -re "Reading symbols from.*done.*$gdb_prompt $" {
678 verbose "\t\tLoaded $arg with new symbol table into $GDB"
679 return 0
680 }
681 timeout {
682 perror "(timeout) Couldn't load $arg, other program already loaded."
683 return -1
684 }
685 }
686 }
687 -re "No such file or directory.*$gdb_prompt $" {
688 perror "($arg) No such file or directory\n"
689 return -1
690 }
691 -re "$gdb_prompt $" {
692 perror "couldn't load $arg into $GDB."
693 return -1
694 }
695 timeout {
696 perror "couldn't load $arg into $GDB (timed out)."
697 return -1
698 }
699 eof {
700 # This is an attempt to detect a core dump, but seems not to
701 # work. Perhaps we need to match .* followed by eof, in which
702 # gdb_expect does not seem to have a way to do that.
703 perror "couldn't load $arg into $GDB (end of file)."
704 return -1
705 }
706 }
707 }
708
709 #
710 # start gdb -- start gdb running, default procedure
711 #
712 # When running over NFS, particularly if running many simultaneous
713 # tests on different hosts all using the same server, things can
714 # get really slow. Give gdb at least 3 minutes to start up.
715 #
716 proc default_gdb_start { } {
717 global verbose
718 global GDB
719 global GDBFLAGS
720 global gdb_prompt
721 global timeout
722 global gdb_spawn_id;
723
724 gdb_stop_suppressing_tests;
725
726 verbose "Spawning $GDB -nw $GDBFLAGS"
727
728 if [info exists gdb_spawn_id] {
729 return 0;
730 }
731
732 if ![is_remote host] {
733 if { [which $GDB] == 0 } then {
734 perror "$GDB does not exist."
735 exit 1
736 }
737 }
738 set res [remote_spawn host "$GDB -nw $GDBFLAGS [host_info gdb_opts]"];
739 if { $res < 0 || $res == "" } {
740 perror "Spawning $GDB failed."
741 return 1;
742 }
743 gdb_expect 360 {
744 -re "\[\r\n\]$gdb_prompt $" {
745 verbose "GDB initialized."
746 }
747 -re "$gdb_prompt $" {
748 perror "GDB never initialized."
749 return -1
750 }
751 timeout {
752 perror "(timeout) GDB never initialized after 10 seconds."
753 remote_close host;
754 return -1
755 }
756 }
757 set gdb_spawn_id -1;
758 # force the height to "unlimited", so no pagers get used
759
760 send_gdb "set height 0\n"
761 gdb_expect 10 {
762 -re "$gdb_prompt $" {
763 verbose "Setting height to 0." 2
764 }
765 timeout {
766 warning "Couldn't set the height to 0"
767 }
768 }
769 # force the width to "unlimited", so no wraparound occurs
770 send_gdb "set width 0\n"
771 gdb_expect 10 {
772 -re "$gdb_prompt $" {
773 verbose "Setting width to 0." 2
774 }
775 timeout {
776 warning "Couldn't set the width to 0."
777 }
778 }
779 return 0;
780 }
781
782 # * For crosses, the CHILL runtime doesn't build because it can't find
783 # setjmp.h, stdio.h, etc.
784 # * For AIX (as of 16 Mar 95), (a) there is no language code for
785 # CHILL in output_epilog in gcc/config/rs6000/rs6000.c, (b) collect2
786 # does not get along with AIX's too-clever linker.
787 # * On Irix5, there is a bug whereby set of bool, etc., don't get
788 # TYPE_LOW_BOUND for the bool right because force_to_range_type doesn't
789 # work with stub types.
790 # Lots of things seem to fail on the PA, and since it's not a supported
791 # chill target at the moment, don't run the chill tests.
792
793 proc skip_chill_tests {} {
794 if ![info exists do_chill_tests] {
795 return 1;
796 }
797 eval set skip_chill [expr ![isnative] || [istarget "*-*-aix*"] || [istarget "*-*-irix5*"] || [istarget "*-*-irix6*"] || [istarget "alpha-*-osf*"] || [istarget "hppa*-*-*"]]
798 verbose "Skip chill tests is $skip_chill"
799 return $skip_chill
800 }
801
802 proc get_compiler_info {binfile} {
803 # Create and source the file that provides information about the compiler
804 # used to compile the test case.
805 global srcdir
806 global subdir
807 # These two come from compiler.c.
808 global signed_keyword_not_used
809 global gcc_compiled
810
811 if { [gdb_compile "${srcdir}/${subdir}/compiler.c" "${binfile}.ci" preprocess {}] != "" } {
812 perror "Couldn't make ${binfile}.ci file"
813 return 1;
814 }
815 source ${binfile}.ci
816 return 0;
817 }
818
819 proc gdb_compile {source dest type options} {
820 global GDB_TESTCASE_OPTIONS;
821
822 if [target_info exists gdb_stub] {
823 set options2 { "additional_flags=-Dusestubs" }
824 lappend options "libs=[target_info gdb_stub]";
825 set options [concat $options2 $options]
826 }
827 if [info exists GDB_TESTCASE_OPTIONS] {
828 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS";
829 }
830 verbose "options are $options"
831 verbose "source is $source $dest $type $options"
832 set result [target_compile $source $dest $type $options];
833 regsub "\[\r\n\]*$" "$result" "" result;
834 regsub "^\[\r\n\]*" "$result" "" result;
835 if { $result != "" } {
836 clone_output "gdb compile failed, $result"
837 }
838 return $result;
839 }
840
841 proc send_gdb { string } {
842 global suppress_flag;
843 if { $suppress_flag } {
844 return "suppressed";
845 }
846 return [remote_send host "$string"];
847 }
848
849 #
850 #
851
852 proc gdb_expect { args } {
853 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
854 set gtimeout [lindex $args 0];
855 set expcode [list [lindex $args 1]];
856 } else {
857 upvar timeout timeout;
858
859 set expcode $args;
860 if [target_info exists gdb,timeout] {
861 if [info exists timeout] {
862 if { $timeout < [target_info gdb,timeout] } {
863 set gtimeout [target_info gdb,timeout];
864 } else {
865 set gtimeout $timeout;
866 }
867 } else {
868 set gtimeout [target_info gdb,timeout];
869 }
870 }
871
872 if ![info exists gtimeout] {
873 global timeout;
874 if [info exists timeout] {
875 set gtimeout $timeout;
876 } else {
877 # Eeeeew.
878 set gtimeout 60;
879 }
880 }
881 }
882 set code [catch {uplevel remote_expect host $gtimeout $expcode} string];
883
884 if {$code == 1} {
885 global errorInfo errorCode;
886
887 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
888 } elseif {$code == 2} {
889 return -code return $string
890 } elseif {$code == 3} {
891 return
892 } elseif {$code > 4} {
893 return -code $code $string
894 }
895 }
896
897 proc gdb_suppress_entire_file { reason } {
898 global suppress_flag;
899
900 warning "$reason\n";
901 set suppress_flag -1;
902 }
903
904 #
905 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
906 # gdb_expect to fail immediately (until the next call to
907 # gdb_stop_suppressing_tests).
908 #
909 proc gdb_suppress_tests { args } {
910 global suppress_flag;
911
912 incr suppress_flag;
913
914 if { $suppress_flag == 1 } {
915 if { [llength $args] > 0 } {
916 warning "[lindex $args 0]\n";
917 } else {
918 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n";
919 }
920 }
921 }
922
923 #
924 # Clear suppress_flag.
925 #
926 proc gdb_stop_suppressing_tests { } {
927 global suppress_flag;
928
929 if [info exists suppress_flag] {
930 if { $suppress_flag > 0 } {
931 set suppress_flag 0;
932 clone_output "Tests restarted.\n";
933 }
934 } else {
935 set suppress_flag 0;
936 }
937 }
938
939 proc gdb_clear_suppressed { } {
940 global suppress_flag;
941
942 set suppress_flag 0;
943 }
944
945 proc gdb_start { } {
946 default_gdb_start
947 }
948
949 proc gdb_exit { } {
950 catch default_gdb_exit
951 }
952
953 #
954 # gdb_load -- load a file into the debugger.
955 # return a -1 if anything goes wrong.
956 #
957 proc gdb_load { arg } {
958 return [gdb_file_cmd $arg]
959 }
960
961 proc gdb_continue { function } {
962 global decimal
963
964 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"];
965 }
966
967 proc default_gdb_init { args } {
968 gdb_clear_suppressed;
969
970 # Uh, this is lame. Really, really, really lame. But there's this *one*
971 # testcase that will fail in random places if we don't increase this.
972 match_max -d 20000
973
974 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
975 if { [llength $args] > 0 } {
976 global pf_prefix
977
978 set file [lindex $args 0];
979
980 set pf_prefix "[file tail [file dirname $file]]/[file tail $file]:";
981 }
982 global gdb_prompt;
983 if [target_info exists gdb_prompt] {
984 set gdb_prompt [target_info gdb_prompt];
985 } else {
986 set gdb_prompt "\\(gdb\\)"
987 }
988 }
989
990 proc gdb_init { args } {
991 return [eval default_gdb_init $args];
992 }
993
994 proc gdb_finish { } {
995 gdb_exit;
996 }
997
998 global debug_format
999
1000 # Run the gdb command "info source" and extract the debugging format information
1001 # from the output and save it in debug_format.
1002
1003 proc get_debug_format { } {
1004 global gdb_prompt
1005 global verbose
1006 global expect_out
1007 global debug_format
1008
1009 set debug_format "unknown"
1010 send_gdb "info source\n"
1011 gdb_expect 10 {
1012 -re "Compiled with (.*) debugging format.\r\n$gdb_prompt $" {
1013 set debug_format $expect_out(1,string)
1014 verbose "debug format is $debug_format"
1015 return 1;
1016 }
1017 -re "No current source file.\r\n$gdb_prompt $" {
1018 perror "get_debug_format used when no current source file"
1019 return 0;
1020 }
1021 -re "$gdb_prompt $" {
1022 warning "couldn't check debug format (no valid response)."
1023 return 1;
1024 }
1025 timeout {
1026 warning "couldn't check debug format (timed out)."
1027 return 1;
1028 }
1029 }
1030 }
1031
1032 # Like setup_xfail, but takes the name of a debug format (DWARF 1, COFF, stabs, etc).
1033 # If that format matches the format that the current test was compiled with, then
1034 # the next test is expected to fail for any target. Returns 1 if the next test or
1035 # set of tests is expected to fail, 0 otherwise (or if it is unknown). Must
1036 # have previously called get_debug_format.
1037
1038 proc setup_xfail_format { format } {
1039 global debug_format
1040
1041 if [string match $debug_format $format] then {
1042 setup_xfail "*-*-*"
1043 return 1;
1044 }
1045 return 0
1046 }
1047
1048 proc gdb_step_for_stub { } {
1049 global gdb_prompt;
1050
1051 if [target_info exists gdb_stub_step_command] {
1052 set command [target_info gdb_stub_step_command];
1053 } else {
1054 set command "step";
1055 }
1056 send_gdb "${command}\n";
1057 set tries 0;
1058 gdb_expect 60 {
1059 -re "(main.* at |.*in .*start).*$gdb_prompt" {
1060 return;
1061 }
1062 -re "libgloss/\[a-z\]*\[0-9\]*/stub.c" {
1063 send_gdb "where\n";
1064 gdb_expect {
1065 -re "main\[^\r\n\]*at \(\[^:]+\):\(\[0-9\]+\)" {
1066 set file $expect_out(1,string);
1067 set linenum [expr $expect_out(2,string) + 1];
1068 set breakplace "${file}:${linenum}";
1069 }
1070 default {}
1071 }
1072 send_gdb "break ${breakplace}\n";
1073 gdb_expect 60 {
1074 -re "Breakpoint (\[0-9\]+) at.*$gdb_prompt" {
1075 set breakpoint $expect_out(1,string);
1076 }
1077 -re "Breakpoint (\[0-9\]+): file.*$gdb_prompt" {
1078 set breakpoint $expect_out(1,string);
1079 }
1080 default {}
1081 }
1082 send_gdb "continue\n";
1083 gdb_expect 60 {
1084 -re "Breakpoint ${breakpoint},.*$gdb_prompt" {
1085 gdb_test "delete $breakpoint" ".*" "";
1086 return;
1087 }
1088 default {}
1089 }
1090 }
1091 -re ".*$gdb_prompt" {
1092 incr tries;
1093 if { $tries == 5 } {
1094 fail "stepping out of breakpoint function";
1095 return;
1096 }
1097 send_gdb "${command}\n";
1098 exp_continue;
1099 }
1100 default {
1101 fail "stepping out of breakpoint function";
1102 return;
1103 }
1104 }
1105 }