3a43f953076032cbfbf7f132de5d34b6f0fe93d5
[external/binutils.git] / gdb / testsuite / lib / gdb.exp
1 # Copyright 1992-2005, 2007-2012 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 # This file was written by Fred Fish. (fnf@cygnus.com)
17
18 # Generic gdb subroutines that should work for any target.  If these
19 # need to be modified for any target, it can be done with a variable
20 # or by passing arguments.
21
22 if {$tool == ""} {
23     # Tests would fail, logs on get_compiler_info() would be missing.
24     send_error "`site.exp' not found, run `make site.exp'!\n"
25     exit 2
26 }
27
28 load_lib libgloss.exp
29
30 global GDB
31
32 if [info exists TOOL_EXECUTABLE] {
33     set GDB $TOOL_EXECUTABLE;
34 }
35 if ![info exists GDB] {
36     if ![is_remote host] {
37         set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
38     } else {
39         set GDB [transform gdb];
40     }
41 }
42 verbose "using GDB = $GDB" 2
43
44 # GDBFLAGS is available for the user to set on the command line.
45 # E.g. make check RUNTESTFLAGS=GDBFLAGS=mumble
46 # Testcases may use it to add additional flags, but they must:
47 # - append new flags, not overwrite
48 # - restore the original value when done
49 global GDBFLAGS
50 if ![info exists GDBFLAGS] {
51     set GDBFLAGS ""
52 }
53 verbose "using GDBFLAGS = $GDBFLAGS" 2
54
55 # INTERNAL_GDBFLAGS contains flags that the testsuite requires.
56 global INTERNAL_GDBFLAGS
57 if ![info exists INTERNAL_GDBFLAGS] {
58     set INTERNAL_GDBFLAGS "-nw -nx -data-directory [pwd]/../data-directory"
59 }
60
61 # The variable gdb_prompt is a regexp which matches the gdb prompt.
62 # Set it if it is not already set.
63 global gdb_prompt
64 if ![info exists gdb_prompt] then {
65     set gdb_prompt "\[(\]gdb\[)\]"
66 }
67
68 # The variable fullname_syntax_POSIX is a regexp which matches a POSIX 
69 # absolute path ie. /foo/ 
70 set fullname_syntax_POSIX {/[^\n]*/}
71 # The variable fullname_syntax_UNC is a regexp which matches a Windows 
72 # UNC path ie. \\D\foo\ 
73 set fullname_syntax_UNC {\\\\[^\\]+\\[^\n]+\\}
74 # The variable fullname_syntax_DOS_CASE is a regexp which matches a 
75 # particular DOS case that GDB most likely will output
76 # ie. \foo\, but don't match \\.*\ 
77 set fullname_syntax_DOS_CASE {\\[^\\][^\n]*\\}
78 # The variable fullname_syntax_DOS is a regexp which matches a DOS path
79 # ie. a:\foo\ && a:foo\ 
80 set fullname_syntax_DOS {[a-zA-Z]:[^\n]*\\}
81 # The variable fullname_syntax is a regexp which matches what GDB considers
82 # an absolute path. It is currently debatable if the Windows style paths 
83 # d:foo and \abc should be considered valid as an absolute path.
84 # Also, the purpse of this regexp is not to recognize a well formed 
85 # absolute path, but to say with certainty that a path is absolute.
86 set fullname_syntax "($fullname_syntax_POSIX|$fullname_syntax_UNC|$fullname_syntax_DOS_CASE|$fullname_syntax_DOS)"
87
88 # Needed for some tests under Cygwin.
89 global EXEEXT
90 global env
91
92 if ![info exists env(EXEEXT)] {
93     set EXEEXT ""
94 } else {
95     set EXEEXT $env(EXEEXT)
96 }
97
98 set octal "\[0-7\]+"
99
100 set inferior_exited_re "(\\\[Inferior \[0-9\]+ \\(.*\\) exited)"
101
102 ### Only procedures should come after this point.
103
104 #
105 # gdb_version -- extract and print the version number of GDB
106 #
107 proc default_gdb_version {} {
108     global GDB
109     global INTERNAL_GDBFLAGS GDBFLAGS
110     global gdb_prompt
111     set output [remote_exec host "$GDB $INTERNAL_GDBFLAGS --version"]
112     set tmp [lindex $output 1];
113     set version ""
114     regexp " \[0-9\]\[^ \t\n\r\]+" "$tmp" version
115     if ![is_remote host] {
116         clone_output "[which $GDB] version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
117     } else {
118         clone_output "$GDB on remote host version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
119     }
120 }
121
122 proc gdb_version { } {
123     return [default_gdb_version];
124 }
125
126 #
127 # gdb_unload -- unload a file if one is loaded
128 #
129
130 proc gdb_unload {} {
131     global verbose
132     global GDB
133     global gdb_prompt
134     send_gdb "file\n"
135     gdb_expect 60 {
136         -re "No executable file now\[^\r\n\]*\[\r\n\]" { exp_continue }
137         -re "No symbol file now\[^\r\n\]*\[\r\n\]" { exp_continue }
138         -re "A program is being debugged already.*Are you sure you want to change the file.*y or n. $" {
139             send_gdb "y\n"
140             exp_continue
141         }
142         -re "Discard symbol table from .*y or n.*$" {
143             send_gdb "y\n"
144             exp_continue
145         }
146         -re "$gdb_prompt $" {}
147         timeout {
148             perror "couldn't unload file in $GDB (timed out)."
149             return -1
150         }
151     }
152 }
153
154 # Many of the tests depend on setting breakpoints at various places and
155 # running until that breakpoint is reached.  At times, we want to start
156 # with a clean-slate with respect to breakpoints, so this utility proc 
157 # lets us do this without duplicating this code everywhere.
158 #
159
160 proc delete_breakpoints {} {
161     global gdb_prompt
162
163     # we need a larger timeout value here or this thing just confuses
164     # itself.  May need a better implementation if possible. - guo
165     #
166     send_gdb "delete breakpoints\n"
167     gdb_expect 100 {
168          -re "Delete all breakpoints.*y or n.*$" {
169             send_gdb "y\n";
170             exp_continue
171         }
172          -re "$gdb_prompt $" { # This happens if there were no breakpoints
173             }
174          timeout { perror "Delete all breakpoints in delete_breakpoints (timeout)" ; return }
175     }
176     send_gdb "info breakpoints\n"
177     gdb_expect 100 {
178          -re "No breakpoints or watchpoints..*$gdb_prompt $" {}
179          -re "$gdb_prompt $" { perror "breakpoints not deleted" ; return }
180          -re "Delete all breakpoints.*or n.*$" {
181             send_gdb "y\n";
182             exp_continue
183         }
184          timeout { perror "info breakpoints (timeout)" ; return }
185     }
186 }
187
188 # Generic run command.
189 #
190 # The second pattern below matches up to the first newline *only*.
191 # Using ``.*$'' could swallow up output that we attempt to match
192 # elsewhere.
193 #
194 # N.B. This function does not wait for gdb to return to the prompt,
195 # that is the caller's responsibility.
196
197 proc gdb_run_cmd {args} {
198     global gdb_prompt use_gdb_stub
199
200     if [target_info exists gdb_init_command] {
201         send_gdb "[target_info gdb_init_command]\n";
202         gdb_expect 30 {
203             -re "$gdb_prompt $" { }
204             default {
205                 perror "gdb_init_command for target failed";
206                 return;
207             }
208         }
209     }
210
211     if $use_gdb_stub {
212         if [target_info exists gdb,do_reload_on_run] {
213             if { [gdb_reload] != 0 } {
214                 return;
215             }
216             send_gdb "continue\n";
217             gdb_expect 60 {
218                 -re "Continu\[^\r\n\]*\[\r\n\]" {}
219                 default {}
220             }
221             return;
222         }
223
224         if [target_info exists gdb,start_symbol] {
225             set start [target_info gdb,start_symbol];
226         } else {
227             set start "start";
228         }
229         send_gdb  "jump *$start\n"
230         set start_attempt 1;
231         while { $start_attempt } {
232             # Cap (re)start attempts at three to ensure that this loop
233             # always eventually fails.  Don't worry about trying to be
234             # clever and not send a command when it has failed.
235             if [expr $start_attempt > 3] {
236                 perror "Jump to start() failed (retry count exceeded)";
237                 return;
238             }
239             set start_attempt [expr $start_attempt + 1];
240             gdb_expect 30 {
241                 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
242                     set start_attempt 0;
243                 }
244                 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
245                     perror "Can't find start symbol to run in gdb_run";
246                     return;
247                 }
248                 -re "No symbol \"start\" in current.*$gdb_prompt $" {
249                     send_gdb "jump *_start\n";
250                 }
251                 -re "No symbol.*context.*$gdb_prompt $" {
252                     set start_attempt 0;
253                 }
254                 -re "Line.* Jump anyway.*y or n. $" {
255                     send_gdb "y\n"
256                 }
257                 -re "The program is not being run.*$gdb_prompt $" {
258                     if { [gdb_reload] != 0 } {
259                         return;
260                     }
261                     send_gdb "jump *$start\n";
262                 }
263                 timeout {
264                     perror "Jump to start() failed (timeout)"; 
265                     return
266                 }
267             }
268         }
269         return
270     }
271
272     if [target_info exists gdb,do_reload_on_run] {
273         if { [gdb_reload] != 0 } {
274             return;
275         }
276     }
277     send_gdb "run $args\n"
278 # This doesn't work quite right yet.
279 # Use -notransfer here so that test cases (like chng-sym.exp)
280 # may test for additional start-up messages.
281    gdb_expect 60 {
282         -re "The program .* has been started already.*y or n. $" {
283             send_gdb "y\n"
284             exp_continue
285         }
286         -notransfer -re "Starting program: \[^\r\n\]*" {}
287         -notransfer -re "$gdb_prompt $" {
288             # There is no more input expected.
289         }
290     }
291 }
292
293 # Generic start command.  Return 0 if we could start the program, -1
294 # if we could not.
295 #
296 # N.B. This function does not wait for gdb to return to the prompt,
297 # that is the caller's responsibility.
298
299 proc gdb_start_cmd {args} {
300     global gdb_prompt use_gdb_stub
301
302     if [target_info exists gdb_init_command] {
303         send_gdb "[target_info gdb_init_command]\n";
304         gdb_expect 30 {
305             -re "$gdb_prompt $" { }
306             default {
307                 perror "gdb_init_command for target failed";
308                 return -1;
309             }
310         }
311     }
312
313     if $use_gdb_stub {
314         return -1
315     }
316
317     send_gdb "start $args\n"
318     # Use -notransfer here so that test cases (like chng-sym.exp)
319     # may test for additional start-up messages.
320     gdb_expect 60 {
321         -re "The program .* has been started already.*y or n. $" {
322             send_gdb "y\n"
323             exp_continue
324         }
325         -notransfer -re "Starting program: \[^\r\n\]*" {
326             return 0
327         }
328     }
329     return -1
330 }
331
332 # Set a breakpoint at FUNCTION.  If there is an additional argument it is
333 # a list of options; the supported options are allow-pending, temporary,
334 # and no-message.
335
336 proc gdb_breakpoint { function args } {
337     global gdb_prompt
338     global decimal
339
340     set pending_response n
341     if {[lsearch -exact [lindex $args 0] allow-pending] != -1} {
342         set pending_response y
343     }
344
345     set break_command "break"
346     set break_message "Breakpoint"
347     if {[lsearch -exact [lindex $args 0] temporary] != -1} {
348         set break_command "tbreak"
349         set break_message "Temporary breakpoint"
350     }
351
352     set no_message 0
353     if {[lsearch -exact [lindex $args 0] no-message] != -1} {
354         set no_message 1
355     }
356
357     send_gdb "$break_command $function\n"
358     # The first two regexps are what we get with -g, the third is without -g.
359     gdb_expect 30 {
360         -re "$break_message \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
361         -re "$break_message \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
362         -re "$break_message \[0-9\]* at .*$gdb_prompt $" {}
363         -re "$break_message \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
364                 if {$pending_response == "n"} {
365                         if { $no_message == 0 } {
366                                 fail "setting breakpoint at $function"
367                         }
368                         return 0
369                 }
370         }
371         -re "Make breakpoint pending.*y or \\\[n\\\]. $" { 
372                 send_gdb "$pending_response\n"
373                 exp_continue
374         }
375         -re "A problem internal to GDB has been detected" {
376                 fail "setting breakpoint at $function in runto (GDB internal error)"
377                 gdb_internal_error_resync
378                 return 0
379         }
380         -re "$gdb_prompt $" {
381                 if { $no_message == 0 } {
382                         fail "setting breakpoint at $function"
383                 }
384                 return 0
385         }
386         timeout {
387                 if { $no_message == 0 } {
388                         fail "setting breakpoint at $function (timeout)"
389                 }
390                 return 0
391         }
392     }
393     return 1;
394 }    
395
396 # Set breakpoint at function and run gdb until it breaks there.
397 # Since this is the only breakpoint that will be set, if it stops
398 # at a breakpoint, we will assume it is the one we want.  We can't
399 # just compare to "function" because it might be a fully qualified,
400 # single quoted C++ function specifier.  If there's an additional argument,
401 # pass it to gdb_breakpoint.
402
403 proc runto { function args } {
404     global gdb_prompt
405     global decimal
406
407     delete_breakpoints
408
409     if ![gdb_breakpoint $function [lindex $args 0]] {
410         return 0;
411     }
412
413     gdb_run_cmd
414     
415     # the "at foo.c:36" output we get with -g.
416     # the "in func" output we get without -g.
417     gdb_expect 30 {
418         -re "Break.* at .*:$decimal.*$gdb_prompt $" {
419             return 1
420         }
421         -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" { 
422             return 1
423         }
424         -re "The target does not support running in non-stop mode.\r\n$gdb_prompt $" {
425             unsupported "Non-stop mode not supported"
426             return 0
427         }
428         -re ".*A problem internal to GDB has been detected" {
429             fail "running to $function in runto (GDB internal error)"
430             gdb_internal_error_resync
431             return 0
432         }
433         -re "$gdb_prompt $" { 
434             fail "running to $function in runto"
435             return 0
436         }
437         eof { 
438             fail "running to $function in runto (end of file)"
439             return 0
440         }
441         timeout { 
442             fail "running to $function in runto (timeout)"
443             return 0
444         }
445     }
446     return 1
447 }
448
449 # Ask gdb to run until we hit a breakpoint at main.
450 #
451 # N.B. This function deletes all existing breakpoints.
452 # If you don't want that, use gdb_start_cmd.
453
454 proc runto_main { } {
455     return [runto main]
456 }
457
458 ### Continue, and expect to hit a breakpoint.
459 ### Report a pass or fail, depending on whether it seems to have
460 ### worked.  Use NAME as part of the test name; each call to
461 ### continue_to_breakpoint should use a NAME which is unique within
462 ### that test file.
463 proc gdb_continue_to_breakpoint {name {location_pattern .*}} {
464     global gdb_prompt
465     set full_name "continue to breakpoint: $name"
466
467     send_gdb "continue\n"
468     gdb_expect {
469         -re "Breakpoint .* (at|in) $location_pattern\r\n$gdb_prompt $" {
470             pass $full_name
471         }
472         -re ".*$gdb_prompt $" {
473             fail $full_name
474         }
475         timeout { 
476             fail "$full_name (timeout)"
477         }
478     }
479 }
480
481
482 # gdb_internal_error_resync:
483 #
484 # Answer the questions GDB asks after it reports an internal error
485 # until we get back to a GDB prompt.  Decline to quit the debugging
486 # session, and decline to create a core file.  Return non-zero if the
487 # resync succeeds.
488 #
489 # This procedure just answers whatever questions come up until it sees
490 # a GDB prompt; it doesn't require you to have matched the input up to
491 # any specific point.  However, it only answers questions it sees in
492 # the output itself, so if you've matched a question, you had better
493 # answer it yourself before calling this.
494 #
495 # You can use this function thus:
496 #
497 # gdb_expect {
498 #     ...
499 #     -re ".*A problem internal to GDB has been detected" {
500 #         gdb_internal_error_resync
501 #     }
502 #     ...
503 # }
504 #
505 proc gdb_internal_error_resync {} {
506     global gdb_prompt
507
508     set count 0
509     while {$count < 10} {
510         gdb_expect {
511             -re "Quit this debugging session\\? \\(y or n\\) $" {
512                 send_gdb "n\n"
513                 incr count
514             }
515             -re "Create a core file of GDB\\? \\(y or n\\) $" {
516                 send_gdb "n\n"
517                 incr count
518             }
519             -re "$gdb_prompt $" {
520                 # We're resynchronized.
521                 return 1
522             }
523             timeout {
524                 perror "Could not resync from internal error (timeout)"
525                 return 0
526             }
527         }
528     }
529     perror "Could not resync from internal error (resync count exceeded)"
530     return 0
531 }
532
533
534 # gdb_test_multiple COMMAND MESSAGE EXPECT_ARGUMENTS
535 # Send a command to gdb; test the result.
536 #
537 # COMMAND is the command to execute, send to GDB with send_gdb.  If
538 #   this is the null string no command is sent.
539 # MESSAGE is a message to be printed with the built-in failure patterns
540 #   if one of them matches.  If MESSAGE is empty COMMAND will be used.
541 # EXPECT_ARGUMENTS will be fed to expect in addition to the standard
542 #   patterns.  Pattern elements will be evaluated in the caller's
543 #   context; action elements will be executed in the caller's context.
544 #   Unlike patterns for gdb_test, these patterns should generally include
545 #   the final newline and prompt.
546 #
547 # Returns:
548 #    1 if the test failed, according to a built-in failure pattern
549 #    0 if only user-supplied patterns matched
550 #   -1 if there was an internal error.
551 #  
552 # You can use this function thus:
553 #
554 # gdb_test_multiple "print foo" "test foo" {
555 #    -re "expected output 1" {
556 #        pass "print foo"
557 #    }
558 #    -re "expected output 2" {
559 #        fail "print foo"
560 #    }
561 # }
562 #
563 # The standard patterns, such as "Inferior exited..." and "A problem
564 # ...", all being implicitly appended to that list.
565 #
566 proc gdb_test_multiple { command message user_code } {
567     global verbose use_gdb_stub
568     global gdb_prompt
569     global GDB
570     global inferior_exited_re
571     upvar timeout timeout
572     upvar expect_out expect_out
573
574     if { $message == "" } {
575         set message $command
576     }
577
578     if [string match "*\[\r\n\]" $command] {
579         error "Invalid trailing newline in \"$message\" test"
580     }
581
582     if [string match "*\[\r\n\]*" $message] {
583         error "Invalid newline in \"$message\" test"
584     }
585
586     if {$use_gdb_stub
587         && [regexp -nocase {^\s*(r|run|star|start|at|att|atta|attac|attach)\M} \
588             $command]} {
589         error "gdbserver does not support $command without extended-remote"
590     }
591
592     # TCL/EXPECT WART ALERT
593     # Expect does something very strange when it receives a single braced
594     # argument.  It splits it along word separators and performs substitutions.
595     # This means that { "[ab]" } is evaluated as "[ab]", but { "\[ab\]" } is
596     # evaluated as "\[ab\]".  But that's not how TCL normally works; inside a
597     # double-quoted list item, "\[ab\]" is just a long way of representing
598     # "[ab]", because the backslashes will be removed by lindex.
599
600     # Unfortunately, there appears to be no easy way to duplicate the splitting
601     # that expect will do from within TCL.  And many places make use of the
602     # "\[0-9\]" construct, so we need to support that; and some places make use
603     # of the "[func]" construct, so we need to support that too.  In order to
604     # get this right we have to substitute quoted list elements differently
605     # from braced list elements.
606
607     # We do this roughly the same way that Expect does it.  We have to use two
608     # lists, because if we leave unquoted newlines in the argument to uplevel
609     # they'll be treated as command separators, and if we escape newlines
610     # we mangle newlines inside of command blocks.  This assumes that the
611     # input doesn't contain a pattern which contains actual embedded newlines
612     # at this point!
613
614     regsub -all {\n} ${user_code} { } subst_code
615     set subst_code [uplevel list $subst_code]
616
617     set processed_code ""
618     set patterns ""
619     set expecting_action 0
620     set expecting_arg 0
621     foreach item $user_code subst_item $subst_code {
622         if { $item == "-n" || $item == "-notransfer" || $item == "-nocase" } {
623             lappend processed_code $item
624             continue
625         }
626         if { $item == "-indices" || $item == "-re" || $item == "-ex" } {
627             lappend processed_code $item
628             continue
629         }
630         if { $item == "-timeout" } {
631             set expecting_arg 1
632             lappend processed_code $item
633             continue
634         }
635         if { $expecting_arg } {
636             set expecting_arg 0
637             lappend processed_code $item
638             continue
639         }
640         if { $expecting_action } {
641             lappend processed_code "uplevel [list $item]"
642             set expecting_action 0
643             # Cosmetic, no effect on the list.
644             append processed_code "\n"
645             continue
646         }
647         set expecting_action 1
648         lappend processed_code $subst_item
649         if {$patterns != ""} {
650             append patterns "; "
651         }
652         append patterns "\"$subst_item\""
653     }
654
655     # Also purely cosmetic.
656     regsub -all {\r} $patterns {\\r} patterns
657     regsub -all {\n} $patterns {\\n} patterns
658
659     if $verbose>2 then {
660         send_user "Sending \"$command\" to gdb\n"
661         send_user "Looking to match \"$patterns\"\n"
662         send_user "Message is \"$message\"\n"
663     }
664
665     set result -1
666     set string "${command}\n";
667     if { $command != "" } {
668         set multi_line_re "\[\r\n\] *>"
669         while { "$string" != "" } {
670             set foo [string first "\n" "$string"];
671             set len [string length "$string"];
672             if { $foo < [expr $len - 1] } {
673                 set str [string range "$string" 0 $foo];
674                 if { [send_gdb "$str"] != "" } {
675                     global suppress_flag;
676
677                     if { ! $suppress_flag } {
678                         perror "Couldn't send $command to GDB.";
679                     }
680                     fail "$message";
681                     return $result;
682                 }
683                 # since we're checking if each line of the multi-line
684                 # command are 'accepted' by GDB here,
685                 # we need to set -notransfer expect option so that
686                 # command output is not lost for pattern matching
687                 # - guo
688                 gdb_expect 2 {
689                     -notransfer -re "$multi_line_re$" { verbose "partial: match" 3 }
690                     timeout { verbose "partial: timeout" 3 }
691                 }
692                 set string [string range "$string" [expr $foo + 1] end];
693                 set multi_line_re "$multi_line_re.*\[\r\n\] *>"
694             } else {
695                 break;
696             }
697         }
698         if { "$string" != "" } {
699             if { [send_gdb "$string"] != "" } {
700                 global suppress_flag;
701
702                 if { ! $suppress_flag } {
703                     perror "Couldn't send $command to GDB.";
704                 }
705                 fail "$message";
706                 return $result;
707             }
708         }
709     }
710
711     if [target_info exists gdb,timeout] {
712         set tmt [target_info gdb,timeout];
713     } else {
714         if [info exists timeout] {
715             set tmt $timeout;
716         } else {
717             global timeout;
718             if [info exists timeout] {
719                 set tmt $timeout;
720             } else {
721                 set tmt 60;
722             }
723         }
724     }
725
726     set code {
727          -re ".*A problem internal to GDB has been detected" {
728              fail "$message (GDB internal error)"
729              gdb_internal_error_resync
730          }
731          -re "\\*\\*\\* DOSEXIT code.*" {
732              if { $message != "" } {
733                  fail "$message";
734              }
735              gdb_suppress_entire_file "GDB died";
736              set result -1;
737          }
738     }
739     append code $processed_code
740     append code {
741          -re "Ending remote debugging.*$gdb_prompt $" {
742             if ![isnative] then {
743                 warning "Can`t communicate to remote target."
744             }
745             gdb_exit
746             gdb_start
747             set result -1
748         }
749          -re "Undefined\[a-z\]* command:.*$gdb_prompt $" {
750             perror "Undefined command \"$command\"."
751             fail "$message"
752             set result 1
753         }
754          -re "Ambiguous command.*$gdb_prompt $" {
755             perror "\"$command\" is not a unique command name."
756             fail "$message"
757             set result 1
758         }
759          -re "$inferior_exited_re with code \[0-9\]+.*$gdb_prompt $" {
760             if ![string match "" $message] then {
761                 set errmsg "$message (the program exited)"
762             } else {
763                 set errmsg "$command (the program exited)"
764             }
765             fail "$errmsg"
766             set result -1
767         }
768          -re "$inferior_exited_re normally.*$gdb_prompt $" {
769             if ![string match "" $message] then {
770                 set errmsg "$message (the program exited)"
771             } else {
772                 set errmsg "$command (the program exited)"
773             }
774             fail "$errmsg"
775             set result -1
776         }
777          -re "The program is not being run.*$gdb_prompt $" {
778             if ![string match "" $message] then {
779                 set errmsg "$message (the program is no longer running)"
780             } else {
781                 set errmsg "$command (the program is no longer running)"
782             }
783             fail "$errmsg"
784             set result -1
785         }
786          -re "\r\n$gdb_prompt $" {
787             if ![string match "" $message] then {
788                 fail "$message"
789             }
790             set result 1
791         }
792          "<return>" {
793             send_gdb "\n"
794             perror "Window too small."
795             fail "$message"
796             set result -1
797         }
798         -re "\\((y or n|y or \\\[n\\\]|\\\[y\\\] or n)\\) " {
799             send_gdb "n\n"
800             gdb_expect -re "$gdb_prompt $"
801             fail "$message (got interactive prompt)"
802             set result -1
803         }
804         -re "\\\[0\\\] cancel\r\n\\\[1\\\] all.*\r\n> $" {
805             send_gdb "0\n"
806             gdb_expect -re "$gdb_prompt $"
807             fail "$message (got breakpoint menu)"
808             set result -1
809         }
810          eof {
811              perror "Process no longer exists"
812              if { $message != "" } {
813                  fail "$message"
814              }
815              return -1
816         }
817          full_buffer {
818             perror "internal buffer is full."
819             fail "$message"
820             set result -1
821         }
822         timeout {
823             if ![string match "" $message] then {
824                 fail "$message (timeout)"
825             }
826             set result 1
827         }
828     }
829
830     set result 0
831     set code [catch {gdb_expect $tmt $code} string]
832     if {$code == 1} {
833         global errorInfo errorCode;
834         return -code error -errorinfo $errorInfo -errorcode $errorCode $string
835     } elseif {$code > 1} {
836         return -code $code $string
837     }
838     return $result
839 }
840
841 # gdb_test COMMAND PATTERN MESSAGE QUESTION RESPONSE
842 # Send a command to gdb; test the result.
843 #
844 # COMMAND is the command to execute, send to GDB with send_gdb.  If
845 #   this is the null string no command is sent.
846 # PATTERN is the pattern to match for a PASS, and must NOT include
847 #   the \r\n sequence immediately before the gdb prompt.
848 # MESSAGE is an optional message to be printed.  If this is
849 #   omitted, then the pass/fail messages use the command string as the
850 #   message.  (If this is the empty string, then sometimes we don't
851 #   call pass or fail at all; I don't understand this at all.)
852 # QUESTION is a question GDB may ask in response to COMMAND, like
853 #   "are you sure?"
854 # RESPONSE is the response to send if QUESTION appears.
855 #
856 # Returns:
857 #    1 if the test failed,
858 #    0 if the test passes,
859 #   -1 if there was an internal error.
860 #  
861 proc gdb_test { args } {
862     global verbose
863     global gdb_prompt
864     global GDB
865     upvar timeout timeout
866
867     if [llength $args]>2 then {
868         set message [lindex $args 2]
869     } else {
870         set message [lindex $args 0]
871     }
872     set command [lindex $args 0]
873     set pattern [lindex $args 1]
874
875     if [llength $args]==5 {
876         set question_string [lindex $args 3];
877         set response_string [lindex $args 4];
878     } else {
879         set question_string "^FOOBAR$"
880     }
881
882     return [gdb_test_multiple $command $message {
883         -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
884             if ![string match "" $message] then {
885                 pass "$message"
886             }
887         }
888         -re "(${question_string})$" {
889             send_gdb "$response_string\n";
890             exp_continue;
891         }
892      }]
893 }
894
895 # gdb_test_no_output COMMAND MESSAGE
896 # Send a command to GDB and verify that this command generated no output.
897 #
898 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
899 # parameters.  If MESSAGE is ommitted, then COMMAND will be used as
900 # the message.  (If MESSAGE is the empty string, then sometimes we do not
901 # call pass or fail at all; I don't understand this at all.)
902
903 proc gdb_test_no_output { args } {
904     global gdb_prompt
905     set command [lindex $args 0]
906     if [llength $args]>1 then {
907         set message [lindex $args 1]
908     } else {
909         set message $command
910     }
911
912     set command_regex [string_to_regexp $command]
913     gdb_test_multiple $command $message {
914         -re "^$command_regex\r\n$gdb_prompt $" {
915             if ![string match "" $message] then {
916                 pass "$message"
917             }
918         }
919     }
920 }
921
922 # Send a command and then wait for a sequence of outputs.
923 # This is useful when the sequence is long and contains ".*", a single
924 # regexp to match the entire output can get a timeout much easier.
925 #
926 # COMMAND is the command to send.
927 # TEST_NAME is passed to pass/fail.  COMMAND is used if TEST_NAME is "".
928 # EXPECTED_OUTPUT_LIST is a list of regexps of expected output, which are
929 # processed in order, and all must be present in the output.
930 #
931 # It is unnecessary to specify ".*" at the beginning or end of any regexp,
932 # there is an implicit ".*" between each element of EXPECTED_OUTPUT_LIST.
933 # There is also an implicit ".*" between the last regexp and the gdb prompt.
934 #
935 # Like gdb_test and gdb_test_multiple, the output is expected to end with the
936 # gdb prompt, which must not be specified in EXPECTED_OUTPUT_LIST.
937 #
938 # Returns:
939 #    1 if the test failed,
940 #    0 if the test passes,
941 #   -1 if there was an internal error.
942
943 proc gdb_test_sequence { command test_name expected_output_list } {
944     global gdb_prompt
945     if { $test_name == "" } {
946         set test_name $command
947     }
948     lappend expected_output_list ""; # implicit ".*" before gdb prompt
949     send_gdb "$command\n"
950     return [gdb_expect_list $test_name "$gdb_prompt $" $expected_output_list]
951 }
952
953 \f
954 # Test that a command gives an error.  For pass or fail, return
955 # a 1 to indicate that more tests can proceed.  However a timeout
956 # is a serious error, generates a special fail message, and causes
957 # a 0 to be returned to indicate that more tests are likely to fail
958 # as well.
959
960 proc test_print_reject { args } {
961     global gdb_prompt
962     global verbose
963
964     if [llength $args]==2 then {
965         set expectthis [lindex $args 1]
966     } else {
967         set expectthis "should never match this bogus string"
968     }
969     set sendthis [lindex $args 0]
970     if $verbose>2 then {
971         send_user "Sending \"$sendthis\" to gdb\n"
972         send_user "Looking to match \"$expectthis\"\n"
973     }
974     send_gdb "$sendthis\n"
975     #FIXME: Should add timeout as parameter.
976     gdb_expect {
977         -re "A .* in expression.*\\.*$gdb_prompt $" {
978             pass "reject $sendthis"
979             return 1
980         }
981         -re "Invalid syntax in expression.*$gdb_prompt $" {
982             pass "reject $sendthis"
983             return 1
984         }
985         -re "Junk after end of expression.*$gdb_prompt $" {
986             pass "reject $sendthis"
987             return 1
988         }
989         -re "Invalid number.*$gdb_prompt $" {
990             pass "reject $sendthis"
991             return 1
992         }
993         -re "Invalid character constant.*$gdb_prompt $" {
994             pass "reject $sendthis"
995             return 1
996         }
997         -re "No symbol table is loaded.*$gdb_prompt $" {
998             pass "reject $sendthis"
999             return 1
1000         }
1001         -re "No symbol .* in current context.*$gdb_prompt $" {
1002             pass "reject $sendthis"
1003             return 1
1004         }
1005         -re "Unmatched single quote.*$gdb_prompt $" {
1006             pass "reject $sendthis"
1007             return 1
1008         }
1009         -re "A character constant must contain at least one character.*$gdb_prompt $" {
1010             pass "reject $sendthis"
1011             return 1
1012         }
1013         -re "$expectthis.*$gdb_prompt $" {
1014             pass "reject $sendthis"
1015             return 1
1016         }
1017         -re ".*$gdb_prompt $" {
1018             fail "reject $sendthis"
1019             return 1
1020         }
1021         default {
1022             fail "reject $sendthis (eof or timeout)"
1023             return 0
1024         }
1025     }
1026 }
1027 \f
1028 # Given an input string, adds backslashes as needed to create a
1029 # regexp that will match the string.
1030
1031 proc string_to_regexp {str} {
1032     set result $str
1033     regsub -all {[]*+.|()^$\[\\]} $str {\\&} result
1034     return $result
1035 }
1036
1037 # Same as gdb_test, but the second parameter is not a regexp,
1038 # but a string that must match exactly.
1039
1040 proc gdb_test_exact { args } {
1041     upvar timeout timeout
1042
1043     set command [lindex $args 0]
1044
1045     # This applies a special meaning to a null string pattern.  Without
1046     # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
1047     # messages from commands that should have no output except a new
1048     # prompt.  With this, only results of a null string will match a null
1049     # string pattern.
1050
1051     set pattern [lindex $args 1]
1052     if [string match $pattern ""] {
1053         set pattern [string_to_regexp [lindex $args 0]]
1054     } else {
1055         set pattern [string_to_regexp [lindex $args 1]]
1056     }
1057
1058     # It is most natural to write the pattern argument with only
1059     # embedded \n's, especially if you are trying to avoid Tcl quoting
1060     # problems.  But gdb_expect really wants to see \r\n in patterns.  So
1061     # transform the pattern here.  First transform \r\n back to \n, in
1062     # case some users of gdb_test_exact already do the right thing.
1063     regsub -all "\r\n" $pattern "\n" pattern
1064     regsub -all "\n" $pattern "\r\n" pattern
1065     if [llength $args]==3 then {
1066         set message [lindex $args 2]
1067     } else {
1068         set message $command
1069     }
1070
1071     return [gdb_test $command $pattern $message]
1072 }
1073
1074 # Wrapper around gdb_test_multiple that looks for a list of expected
1075 # output elements, but which can appear in any order.
1076 # CMD is the gdb command.
1077 # NAME is the name of the test.
1078 # ELM_FIND_REGEXP specifies how to partition the output into elements to
1079 # compare.
1080 # ELM_EXTRACT_REGEXP specifies the part of ELM_FIND_REGEXP to compare.
1081 # RESULT_MATCH_LIST is a list of exact matches for each expected element.
1082 # All elements of RESULT_MATCH_LIST must appear for the test to pass.
1083 #
1084 # A typical use of ELM_FIND_REGEXP/ELM_EXTRACT_REGEXP is to extract one line
1085 # of text per element and then strip trailing \r\n's.
1086 # Example:
1087 # gdb_test_list_exact "foo" "bar" \
1088 #    "\[^\r\n\]+\[\r\n\]+" \
1089 #    "\[^\r\n\]+" \
1090 #     { \
1091 #       {expected result 1} \
1092 #       {expected result 2} \
1093 #     }
1094
1095 proc gdb_test_list_exact { cmd name elm_find_regexp elm_extract_regexp result_match_list } {
1096     global gdb_prompt
1097
1098     set matches [lsort $result_match_list]
1099     set seen {}
1100     gdb_test_multiple $cmd $name {
1101         "$cmd\[\r\n\]" { exp_continue }
1102         -re $elm_find_regexp {
1103             set str $expect_out(0,string)
1104             verbose -log "seen: $str" 3
1105             regexp -- $elm_extract_regexp $str elm_seen
1106             verbose -log "extracted: $elm_seen" 3
1107             lappend seen $elm_seen
1108             exp_continue
1109         }
1110         -re "$gdb_prompt $" {
1111             set failed ""
1112             foreach got [lsort $seen] have $matches {
1113                 if {![string equal $got $have]} {
1114                     set failed $have
1115                     break
1116                 }
1117             }
1118             if {[string length $failed] != 0} {
1119                 fail "$name ($failed not found)"
1120             } else {
1121                 pass $name
1122             }
1123         }
1124     }
1125 }
1126 \f
1127 proc gdb_reinitialize_dir { subdir } {
1128     global gdb_prompt
1129
1130     if [is_remote host] {
1131         return "";
1132     }
1133     send_gdb "dir\n"
1134     gdb_expect 60 {
1135         -re "Reinitialize source path to empty.*y or n. " {
1136             send_gdb "y\n"
1137             gdb_expect 60 {
1138                 -re "Source directories searched.*$gdb_prompt $" {
1139                     send_gdb "dir $subdir\n"
1140                     gdb_expect 60 {
1141                         -re "Source directories searched.*$gdb_prompt $" {
1142                             verbose "Dir set to $subdir"
1143                         }
1144                         -re "$gdb_prompt $" {
1145                             perror "Dir \"$subdir\" failed."
1146                         }
1147                     }
1148                 }
1149                 -re "$gdb_prompt $" {
1150                     perror "Dir \"$subdir\" failed."
1151                 }
1152             }
1153         }
1154         -re "$gdb_prompt $" {
1155             perror "Dir \"$subdir\" failed."
1156         }
1157     }
1158 }
1159
1160 #
1161 # gdb_exit -- exit the GDB, killing the target program if necessary
1162 #
1163 proc default_gdb_exit {} {
1164     global GDB
1165     global INTERNAL_GDBFLAGS GDBFLAGS
1166     global verbose
1167     global gdb_spawn_id;
1168
1169     gdb_stop_suppressing_tests;
1170
1171     if ![info exists gdb_spawn_id] {
1172         return;
1173     }
1174
1175     verbose "Quitting $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1176
1177     if { [is_remote host] && [board_info host exists fileid] } {
1178         send_gdb "quit\n";
1179         gdb_expect 10 {
1180             -re "y or n" {
1181                 send_gdb "y\n";
1182                 exp_continue;
1183             }
1184             -re "DOSEXIT code" { }
1185             default { }
1186         }
1187     }
1188
1189     if ![is_remote host] {
1190         remote_close host;
1191     }
1192     unset gdb_spawn_id
1193 }
1194
1195 # Load a file into the debugger.
1196 # The return value is 0 for success, -1 for failure.
1197 #
1198 # This procedure also set the global variable GDB_FILE_CMD_DEBUG_INFO
1199 # to one of these values:
1200 #
1201 #   debug    file was loaded successfully and has debug information
1202 #   nodebug  file was loaded successfully and has no debug information
1203 #   fail     file was not loaded
1204 #
1205 # I tried returning this information as part of the return value,
1206 # but ran into a mess because of the many re-implementations of
1207 # gdb_load in config/*.exp.
1208 #
1209 # TODO: gdb.base/sepdebug.exp and gdb.stabs/weird.exp might be able to use
1210 # this if they can get more information set.
1211
1212 proc gdb_file_cmd { arg } {
1213     global gdb_prompt
1214     global verbose
1215     global GDB
1216     global last_loaded_file
1217
1218     set last_loaded_file $arg
1219
1220     # Set whether debug info was found.
1221     # Default to "fail".
1222     global gdb_file_cmd_debug_info
1223     set gdb_file_cmd_debug_info "fail"
1224
1225     if [is_remote host] {
1226         set arg [remote_download host $arg]
1227         if { $arg == "" } {
1228             perror "download failed"
1229             return -1
1230         }
1231     }
1232
1233     # The file command used to kill the remote target.  For the benefit
1234     # of the testsuite, preserve this behavior.
1235     send_gdb "kill\n"
1236     gdb_expect 120 {
1237         -re "Kill the program being debugged. .y or n. $" {
1238             send_gdb "y\n"
1239             verbose "\t\tKilling previous program being debugged"
1240             exp_continue
1241         }
1242         -re "$gdb_prompt $" {
1243             # OK.
1244         }
1245     }
1246
1247     send_gdb "file $arg\n"
1248     gdb_expect 120 {
1249         -re "Reading symbols from.*no debugging symbols found.*done.*$gdb_prompt $" {
1250             verbose "\t\tLoaded $arg into the $GDB with no debugging symbols"
1251             set gdb_file_cmd_debug_info "nodebug"
1252             return 0
1253         }
1254         -re "Reading symbols from.*done.*$gdb_prompt $" {
1255             verbose "\t\tLoaded $arg into the $GDB"
1256             set gdb_file_cmd_debug_info "debug"
1257             return 0
1258         }
1259         -re "Load new symbol table from \".*\".*y or n. $" {
1260             send_gdb "y\n"
1261             gdb_expect 120 {
1262                 -re "Reading symbols from.*done.*$gdb_prompt $" {
1263                     verbose "\t\tLoaded $arg with new symbol table into $GDB"
1264                     set gdb_file_cmd_debug_info "debug"
1265                     return 0
1266                 }
1267                 timeout {
1268                     perror "(timeout) Couldn't load $arg, other program already loaded."
1269                     return -1
1270                 }
1271             }
1272         }
1273         -re "No such file or directory.*$gdb_prompt $" {
1274             perror "($arg) No such file or directory"
1275             return -1
1276         }
1277         -re "$gdb_prompt $" {
1278             perror "couldn't load $arg into $GDB."
1279             return -1
1280             }
1281         timeout {
1282             perror "couldn't load $arg into $GDB (timed out)."
1283             return -1
1284         }
1285         eof {
1286             # This is an attempt to detect a core dump, but seems not to
1287             # work.  Perhaps we need to match .* followed by eof, in which
1288             # gdb_expect does not seem to have a way to do that.
1289             perror "couldn't load $arg into $GDB (end of file)."
1290             return -1
1291         }
1292     }
1293 }
1294
1295 #
1296 # start gdb -- start gdb running, default procedure
1297 #
1298 # When running over NFS, particularly if running many simultaneous
1299 # tests on different hosts all using the same server, things can
1300 # get really slow.  Give gdb at least 3 minutes to start up.
1301 #
1302 proc default_gdb_start { } {
1303     global verbose use_gdb_stub
1304     global GDB
1305     global INTERNAL_GDBFLAGS GDBFLAGS
1306     global gdb_prompt
1307     global timeout
1308     global gdb_spawn_id;
1309
1310     gdb_stop_suppressing_tests;
1311
1312     # Set the default value, it may be overriden later by specific testfile.
1313     #
1314     # Use `set_board_info use_gdb_stub' for the board file to flag the inferior
1315     # is already started after connecting and run/attach are not supported.
1316     # This is used for the "remote" protocol.  After GDB starts you should
1317     # check global $use_gdb_stub instead of the board as the testfile may force
1318     # a specific different target protocol itself.
1319     set use_gdb_stub [target_info exists use_gdb_stub]
1320
1321     verbose "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1322
1323     if [info exists gdb_spawn_id] {
1324         return 0;
1325     }
1326
1327     if ![is_remote host] {
1328         if { [which $GDB] == 0 } then {
1329             perror "$GDB does not exist."
1330             exit 1
1331         }
1332     }
1333     set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS [host_info gdb_opts]"];
1334     if { $res < 0 || $res == "" } {
1335         perror "Spawning $GDB failed."
1336         return 1;
1337     }
1338     gdb_expect 360 {
1339         -re "\[\r\n\]$gdb_prompt $" {
1340             verbose "GDB initialized."
1341         }
1342         -re "$gdb_prompt $"     {
1343             perror "GDB never initialized."
1344             return -1
1345         }
1346         timeout {
1347             perror "(timeout) GDB never initialized after 10 seconds."
1348             remote_close host;
1349             return -1
1350         }
1351     }
1352     set gdb_spawn_id -1;
1353     # force the height to "unlimited", so no pagers get used
1354
1355     send_gdb "set height 0\n"
1356     gdb_expect 10 {
1357         -re "$gdb_prompt $" { 
1358             verbose "Setting height to 0." 2
1359         }
1360         timeout {
1361             warning "Couldn't set the height to 0"
1362         }
1363     }
1364     # force the width to "unlimited", so no wraparound occurs
1365     send_gdb "set width 0\n"
1366     gdb_expect 10 {
1367         -re "$gdb_prompt $" {
1368             verbose "Setting width to 0." 2
1369         }
1370         timeout {
1371             warning "Couldn't set the width to 0."
1372         }
1373     }
1374     return 0;
1375 }
1376
1377 # Examine the output of compilation to determine whether compilation
1378 # failed or not.  If it failed determine whether it is due to missing
1379 # compiler or due to compiler error.  Report pass, fail or unsupported
1380 # as appropriate
1381
1382 proc gdb_compile_test {src output} {
1383     if { $output == "" } {
1384         pass "compilation [file tail $src]"
1385     } elseif { [regexp {^[a-zA-Z_0-9]+: Can't find [^ ]+\.$} $output] } {
1386         unsupported "compilation [file tail $src]"
1387     } elseif { [regexp {.*: command not found[\r|\n]*$} $output] } {
1388         unsupported "compilation [file tail $src]"
1389     } elseif { [regexp {.*: [^\r\n]*compiler not installed[^\r\n]*[\r|\n]*$} $output] } {
1390         unsupported "compilation [file tail $src]"
1391     } else {
1392         verbose -log "compilation failed: $output" 2
1393         fail "compilation [file tail $src]"
1394     }
1395 }
1396
1397 # Return a 1 for configurations for which we don't even want to try to
1398 # test C++.
1399
1400 proc skip_cplus_tests {} {
1401     if { [istarget "h8300-*-*"] } {
1402         return 1
1403     }
1404
1405     # The C++ IO streams are too large for HC11/HC12 and are thus not
1406     # available.  The gdb C++ tests use them and don't compile.
1407     if { [istarget "m6811-*-*"] } {
1408         return 1
1409     }
1410     if { [istarget "m6812-*-*"] } {
1411         return 1
1412     }
1413     return 0
1414 }
1415
1416 # Return a 1 for configurations for which don't have both C++ and the STL.
1417
1418 proc skip_stl_tests {} {
1419     # Symbian supports the C++ language, but the STL is missing
1420     # (both headers and libraries).
1421     if { [istarget "arm*-*-symbianelf*"] } {
1422         return 1
1423     }
1424
1425     return [skip_cplus_tests]
1426 }
1427
1428 # Return a 1 if I don't even want to try to test FORTRAN.
1429
1430 proc skip_fortran_tests {} {
1431     return 0
1432 }
1433
1434 # Return a 1 if I don't even want to try to test ada.
1435
1436 proc skip_ada_tests {} {
1437     return 0
1438 }
1439
1440 # Return a 1 if I don't even want to try to test java.
1441
1442 proc skip_java_tests {} {
1443     return 0
1444 }
1445
1446 # Return a 1 for configurations that do not support Python scripting.
1447
1448 proc skip_python_tests {} {
1449     global gdb_prompt
1450     gdb_test_multiple "python print 'test'" "verify python support" {
1451         -re "not supported.*$gdb_prompt $"      {
1452             unsupported "Python support is disabled."
1453             return 1
1454         }
1455         -re "$gdb_prompt $"     {}
1456     }
1457
1458     return 0
1459 }
1460
1461 # Return a 1 if we should skip shared library tests.
1462
1463 proc skip_shlib_tests {} {
1464     # Run the shared library tests on native systems.
1465     if {[isnative]} {
1466         return 0
1467     }
1468
1469     # An abbreviated list of remote targets where we should be able to
1470     # run shared library tests.
1471     if {([istarget *-*-linux*]
1472          || [istarget *-*-*bsd*]
1473          || [istarget *-*-solaris2*]
1474          || [istarget arm*-*-symbianelf*]
1475          || [istarget *-*-mingw*]
1476          || [istarget *-*-cygwin*]
1477          || [istarget *-*-pe*])} {
1478         return 0
1479     }
1480
1481     return 1
1482 }
1483
1484 # Test files shall make sure all the test result lines in gdb.sum are
1485 # unique in a test run, so that comparing the gdb.sum files of two
1486 # test runs gives correct results.  Test files that exercise
1487 # variations of the same tests more than once, shall prefix the
1488 # different test invocations with different identifying strings in
1489 # order to make them unique.
1490 #
1491 # About test prefixes:
1492 #
1493 # $pf_prefix is the string that dejagnu prints after the result (FAIL,
1494 # PASS, etc.), and before the test message/name in gdb.sum.  E.g., the
1495 # underlined substring in
1496 #
1497 #  PASS: gdb.base/mytest.exp: some test
1498 #        ^^^^^^^^^^^^^^^^^^^^
1499 #
1500 # is $pf_prefix.
1501 #
1502 # The easiest way to adjust the test prefix is to append a test
1503 # variation prefix to the $pf_prefix, using the with_test_prefix
1504 # procedure.  E.g.,
1505 #
1506 # proc do_tests {} {
1507 #   gdb_test ... ... "test foo"
1508 #   gdb_test ... ... "test bar"
1509 #
1510 #   with_test_prefix " subvariation a:" {
1511 #     gdb_test ... ... "test x"
1512 #   }
1513 #
1514 #   with_test_prefix " subvariation b:" {
1515 #     gdb_test ... ... "test x"
1516 #   }
1517 # }
1518 #
1519 # with_test_prefix " variation1:" {
1520 #   ...do setup for variation 1...
1521 #   do_tests
1522 # }
1523 #
1524 # with_test_prefix " variation2:" {
1525 #   ...do setup for variation 2...
1526 #   do_tests
1527 # }
1528 #
1529 # Results in:
1530 #
1531 #  PASS: gdb.base/mytest.exp: variation1: test foo
1532 #  PASS: gdb.base/mytest.exp: variation1: test bar
1533 #  PASS: gdb.base/mytest.exp: variation1: subvariation a: test x
1534 #  PASS: gdb.base/mytest.exp: variation1: subvariation b: test x
1535 #  PASS: gdb.base/mytest.exp: variation2: test foo
1536 #  PASS: gdb.base/mytest.exp: variation2: test bar
1537 #  PASS: gdb.base/mytest.exp: variation2: subvariation a: test x
1538 #  PASS: gdb.base/mytest.exp: variation2: subvariation b: test x
1539 #
1540 # If for some reason more flexibility is necessary, one can also
1541 # manipulate the pf_prefix global directly, treating it as a string.
1542 # E.g.,
1543 #
1544 #   global pf_prefix
1545 #   set saved_pf_prefix
1546 #   append pf_prefix "${foo} bar"
1547 #   ... actual tests ...
1548 #   set pf_prefix $saved_pf_prefix
1549 #
1550
1551 # Run BODY in the context of the caller, with the current test prefix
1552 # (pf_prefix) appended with PREFIX.  Returns the result of BODY.
1553 #
1554 proc with_test_prefix { prefix body } {
1555   global pf_prefix
1556
1557   set saved $pf_prefix
1558   append pf_prefix $prefix
1559   set code [catch {uplevel 1 $body} result]
1560   set pf_prefix $saved
1561
1562   if {$code == 1} {
1563       global errorInfo errorCode
1564       return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
1565   } else {
1566       return -code $code $result
1567   }
1568 }
1569
1570 # Return 1 if _Complex types are supported, otherwise, return 0.
1571
1572 proc support_complex_tests {} {
1573     global support_complex_tests_saved
1574
1575     # Use the cached value, if it exists.
1576     if [info exists support_complex_tests_saved] {
1577         verbose "returning saved $support_complex_tests_saved" 2
1578         return $support_complex_tests_saved
1579     }
1580
1581     # Set up, compile, and execute a test program containing _Complex types.
1582     # Include the current process ID in the file names to prevent conflicts
1583     # with invocations for multiple testsuites.
1584     set src complex[pid].c
1585     set exe complex[pid].x
1586
1587     set f [open $src "w"]
1588     puts $f "int main() {"
1589     puts $f "_Complex float cf;"
1590     puts $f "_Complex double cd;"
1591     puts $f "_Complex long double cld;"
1592     puts $f "  return 0; }"
1593     close $f
1594
1595     verbose "compiling testfile $src" 2
1596     set compile_flags {debug nowarnings quiet}
1597     set lines [gdb_compile $src $exe executable $compile_flags]
1598     file delete $src
1599     file delete $exe
1600
1601     if ![string match "" $lines] then {
1602         verbose "testfile compilation failed, returning 0" 2
1603         set support_complex_tests_saved 0
1604     } else {
1605         set support_complex_tests_saved 1
1606     }
1607
1608     return $support_complex_tests_saved
1609 }
1610
1611 # Return 1 if target hardware or OS supports single stepping to signal
1612 # handler, otherwise, return 0.
1613
1614 proc can_single_step_to_signal_handler {} {
1615
1616     # Targets don't have hardware single step.  On these targets, when
1617     # a signal is delivered during software single step, gdb is unable
1618     # to determine the next instruction addresses, because start of signal
1619     # handler is one of them.
1620     if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
1621          || [istarget "tic6x-*-*"] || [istarget "sparc*-*-linux*"] } {
1622         return 0
1623     }
1624
1625     return 1
1626 }
1627
1628 # Return 1 if target supports process record, otherwise return 0.
1629
1630 proc supports_process_record {} {
1631
1632     if [target_info exists gdb,use_precord] {
1633         return [target_info gdb,use_precord]
1634     }
1635
1636     if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"] } {
1637         return 1
1638     }
1639
1640     return 0
1641 }
1642
1643 # Return 1 if target supports reverse debugging, otherwise return 0.
1644
1645 proc supports_reverse {} {
1646
1647     if [target_info exists gdb,can_reverse] {
1648         return [target_info gdb,can_reverse]
1649     }
1650
1651     if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"] } {
1652         return 1
1653     }
1654
1655     return 0
1656 }
1657
1658 # Return 1 if target is ILP32.
1659 # This cannot be decided simply from looking at the target string,
1660 # as it might depend on externally passed compiler options like -m64.
1661 proc is_ilp32_target {} {
1662     global is_ilp32_target_saved
1663
1664     # Use the cached value, if it exists.  Cache value per "board" to handle
1665     # runs with multiple options (e.g. unix/{-m32,-64}) correctly.
1666     set me "is_ilp32_target"
1667     set board [target_info name]
1668     if [info exists is_ilp32_target_saved($board)] {
1669         verbose "$me:  returning saved $is_ilp32_target_saved($board)" 2
1670         return $is_ilp32_target_saved($board)
1671     }
1672
1673
1674     set src ilp32[pid].c
1675     set obj ilp32[pid].o
1676
1677     set f [open $src "w"]
1678     puts $f "int dummy\[sizeof (int) == 4"
1679     puts $f "           && sizeof (void *) == 4"
1680     puts $f "           && sizeof (long) == 4 ? 1 : -1\];"
1681     close $f
1682
1683     verbose "$me:  compiling testfile $src" 2
1684     set lines [gdb_compile $src $obj object {quiet}]
1685     file delete $src
1686     file delete $obj
1687
1688     if ![string match "" $lines] then {
1689         verbose "$me:  testfile compilation failed, returning 0" 2
1690         return [set is_ilp32_target_saved($board) 0]
1691     }
1692
1693     verbose "$me:  returning 1" 2
1694     return [set is_ilp32_target_saved($board) 1]
1695 }
1696
1697 # Return 1 if target is LP64.
1698 # This cannot be decided simply from looking at the target string,
1699 # as it might depend on externally passed compiler options like -m64.
1700 proc is_lp64_target {} {
1701     global is_lp64_target_saved
1702
1703     # Use the cached value, if it exists.  Cache value per "board" to handle
1704     # runs with multiple options (e.g. unix/{-m32,-64}) correctly.
1705     set me "is_lp64_target"
1706     set board [target_info name]
1707     if [info exists is_lp64_target_saved($board)] {
1708         verbose "$me:  returning saved $is_lp64_target_saved($board)" 2
1709         return $is_lp64_target_saved($board)
1710     }
1711
1712     set src lp64[pid].c
1713     set obj lp64[pid].o
1714
1715     set f [open $src "w"]
1716     puts $f "int dummy\[sizeof (int) == 4"
1717     puts $f "           && sizeof (void *) == 8"
1718     puts $f "           && sizeof (long) == 8 ? 1 : -1\];"
1719     close $f
1720
1721     verbose "$me:  compiling testfile $src" 2
1722     set lines [gdb_compile $src $obj object {quiet}]
1723     file delete $src
1724     file delete $obj
1725
1726     if ![string match "" $lines] then {
1727         verbose "$me:  testfile compilation failed, returning 0" 2
1728         return [set is_lp64_target_saved($board) 0]
1729     }
1730
1731     verbose "$me:  returning 1" 2
1732     return [set is_lp64_target_saved($board) 1]
1733 }
1734
1735 # Return 1 if target has x86_64 registers - either amd64 or x32.
1736 # x32 target identifies as x86_64-*-linux*, therefore it cannot be determined
1737 # just from the target string.
1738 proc is_amd64_regs_target {} {
1739     global is_amd64_regs_target_saved
1740
1741     if {![istarget "x86_64-*-*"] && ![istarget "i?86-*"]} {
1742         return 0
1743     }
1744
1745     # Use the cached value, if it exists.  Cache value per "board" to handle
1746     # runs with multiple options (e.g. unix/{-m32,-64}) correctly.
1747     set me "is_amd64_regs_target"
1748     set board [target_info name]
1749     if [info exists is_amd64_regs_target_saved($board)] {
1750         verbose "$me:  returning saved $is_amd64_regs_target_saved($board)" 2
1751         return $is_amd64_regs_target_saved($board)
1752     }
1753
1754     set src reg64[pid].s
1755     set obj reg64[pid].o
1756
1757     set f [open $src "w"]
1758     foreach reg \
1759             {rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15} {
1760         puts $f "\tincq %$reg"
1761     }
1762     close $f
1763
1764     verbose "$me:  compiling testfile $src" 2
1765     set lines [gdb_compile $src $obj object {quiet}]
1766     file delete $src
1767     file delete $obj
1768
1769     if ![string match "" $lines] then {
1770         verbose "$me:  testfile compilation failed, returning 0" 2
1771         return [set is_amd64_regs_target_saved($board) 0]
1772     }
1773
1774     verbose "$me:  returning 1" 2
1775     return [set is_amd64_regs_target_saved($board) 1]
1776 }
1777
1778 # Return 1 if this target is an x86 or x86-64 with -m32.
1779 proc is_x86_like_target {} {
1780     if {![istarget "x86_64-*-*"] && ![istarget i?86-*]} {
1781         return 0
1782     }
1783     return [expr [is_ilp32_target] && ![is_amd64_regs_target]]
1784 }
1785
1786 # Return 1 if displaced stepping is supported on target, otherwise, return 0.
1787 proc support_displaced_stepping {} {
1788
1789     if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"]
1790          || [istarget "arm*-*-linux*"] || [istarget "powerpc-*-linux*"]
1791          || [istarget "powerpc64-*-linux*"] || [istarget "s390*-*-*"] } {
1792         return 1
1793     }
1794
1795     return 0
1796 }
1797
1798 # Run a test on the target to see if it supports vmx hardware.  Return 0 if so, 
1799 # 1 if it does not.  Based on 'check_vmx_hw_available' from the GCC testsuite.
1800
1801 proc skip_altivec_tests {} {
1802     global skip_vmx_tests_saved
1803     global srcdir subdir gdb_prompt inferior_exited_re
1804
1805     # Use the cached value, if it exists.
1806     set me "skip_altivec_tests"
1807     if [info exists skip_vmx_tests_saved] {
1808         verbose "$me:  returning saved $skip_vmx_tests_saved" 2
1809         return $skip_vmx_tests_saved
1810     }
1811
1812     # Some simulators are known to not support VMX instructions.
1813     if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
1814         verbose "$me:  target known to not support VMX, returning 1" 2
1815         return [set skip_vmx_tests_saved 1]
1816     }
1817
1818     # Make sure we have a compiler that understands altivec.
1819     set compile_flags {debug nowarnings}
1820     if [get_compiler_info not-used] {
1821        warning "Could not get compiler info"
1822        return 1
1823     }
1824     if [test_compiler_info gcc*] {
1825         set compile_flags "$compile_flags additional_flags=-maltivec"
1826     } elseif [test_compiler_info xlc*] {
1827         set compile_flags "$compile_flags additional_flags=-qaltivec"
1828     } else {
1829         verbose "Could not compile with altivec support, returning 1" 2
1830         return 1
1831     }
1832
1833     # Set up, compile, and execute a test program containing VMX instructions.
1834     # Include the current process ID in the file names to prevent conflicts
1835     # with invocations for multiple testsuites.
1836     set src vmx[pid].c
1837     set exe vmx[pid].x
1838
1839     set f [open $src "w"]
1840     puts $f "int main() {"
1841     puts $f "#ifdef __MACH__"
1842     puts $f "  asm volatile (\"vor v0,v0,v0\");"
1843     puts $f "#else"
1844     puts $f "  asm volatile (\"vor 0,0,0\");"
1845     puts $f "#endif"
1846     puts $f "  return 0; }"
1847     close $f
1848
1849     verbose "$me:  compiling testfile $src" 2
1850     set lines [gdb_compile $src $exe executable $compile_flags]
1851     file delete $src
1852
1853     if ![string match "" $lines] then {
1854         verbose "$me:  testfile compilation failed, returning 1" 2
1855         return [set skip_vmx_tests_saved 1]
1856     }
1857
1858     # No error message, compilation succeeded so now run it via gdb.
1859
1860     gdb_exit
1861     gdb_start
1862     gdb_reinitialize_dir $srcdir/$subdir
1863     gdb_load "$exe"
1864     gdb_run_cmd
1865     gdb_expect {
1866         -re ".*Illegal instruction.*${gdb_prompt} $" {
1867             verbose -log "\n$me altivec hardware not detected" 
1868             set skip_vmx_tests_saved 1
1869         }
1870         -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
1871             verbose -log "\n$me: altivec hardware detected" 
1872             set skip_vmx_tests_saved 0
1873         }
1874         default {
1875           warning "\n$me: default case taken"
1876             set skip_vmx_tests_saved 1
1877         }
1878     }
1879     gdb_exit
1880     remote_file build delete $exe
1881
1882     verbose "$me:  returning $skip_vmx_tests_saved" 2
1883     return $skip_vmx_tests_saved
1884 }
1885
1886 # Run a test on the target to see if it supports vmx hardware.  Return 0 if so,
1887 # 1 if it does not.  Based on 'check_vmx_hw_available' from the GCC testsuite.
1888
1889 proc skip_vsx_tests {} {
1890     global skip_vsx_tests_saved
1891     global srcdir subdir gdb_prompt inferior_exited_re
1892
1893     # Use the cached value, if it exists.
1894     set me "skip_vsx_tests"
1895     if [info exists skip_vsx_tests_saved] {
1896         verbose "$me:  returning saved $skip_vsx_tests_saved" 2
1897         return $skip_vsx_tests_saved
1898     }
1899
1900     # Some simulators are known to not support Altivec instructions, so
1901     # they won't support VSX instructions as well.
1902     if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
1903         verbose "$me:  target known to not support VSX, returning 1" 2
1904         return [set skip_vsx_tests_saved 1]
1905     }
1906
1907     # Make sure we have a compiler that understands altivec.
1908     set compile_flags {debug nowarnings quiet}
1909     if [get_compiler_info not-used] {
1910        warning "Could not get compiler info"
1911        return 1
1912     }
1913     if [test_compiler_info gcc*] {
1914         set compile_flags "$compile_flags additional_flags=-mvsx"
1915     } elseif [test_compiler_info xlc*] {
1916         set compile_flags "$compile_flags additional_flags=-qasm=gcc"
1917     } else {
1918         verbose "Could not compile with vsx support, returning 1" 2
1919         return 1
1920     }
1921
1922     set src vsx[pid].c
1923     set exe vsx[pid].x
1924
1925     set f [open $src "w"]
1926     puts $f "int main() {"
1927     puts $f "  double a\[2\] = { 1.0, 2.0 };"
1928     puts $f "#ifdef __MACH__"
1929     puts $f "  asm volatile (\"lxvd2x v0,v0,%\[addr\]\" : : \[addr\] \"r\" (a));"
1930     puts $f "#else"
1931     puts $f "  asm volatile (\"lxvd2x 0,0,%\[addr\]\" : : \[addr\] \"r\" (a));"
1932     puts $f "#endif"
1933     puts $f "  return 0; }"
1934     close $f
1935
1936     verbose "$me:  compiling testfile $src" 2
1937     set lines [gdb_compile $src $exe executable $compile_flags]
1938     file delete $src
1939
1940     if ![string match "" $lines] then {
1941         verbose "$me:  testfile compilation failed, returning 1" 2
1942         return [set skip_vsx_tests_saved 1]
1943     }
1944
1945     # No error message, compilation succeeded so now run it via gdb.
1946
1947     gdb_exit
1948     gdb_start
1949     gdb_reinitialize_dir $srcdir/$subdir
1950     gdb_load "$exe"
1951     gdb_run_cmd
1952     gdb_expect {
1953         -re ".*Illegal instruction.*${gdb_prompt} $" {
1954             verbose -log "\n$me VSX hardware not detected"
1955             set skip_vsx_tests_saved 1
1956         }
1957         -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
1958             verbose -log "\n$me: VSX hardware detected"
1959             set skip_vsx_tests_saved 0
1960         }
1961         default {
1962           warning "\n$me: default case taken"
1963             set skip_vsx_tests_saved 1
1964         }
1965     }
1966     gdb_exit
1967     remote_file build delete $exe
1968
1969     verbose "$me:  returning $skip_vsx_tests_saved" 2
1970     return $skip_vsx_tests_saved
1971 }
1972
1973 # Skip all the tests in the file if you are not on an hppa running
1974 # hpux target.
1975
1976 proc skip_hp_tests {} {
1977     eval set skip_hp [ expr ![isnative] || ![istarget "hppa*-*-hpux*"] ]
1978     verbose "Skip hp tests is $skip_hp"
1979     return $skip_hp
1980 }
1981
1982 # Return whether we should skip tests for showing inlined functions in
1983 # backtraces.  Requires get_compiler_info and get_debug_format.
1984
1985 proc skip_inline_frame_tests {} {
1986     # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
1987     if { ! [test_debug_format "DWARF 2"] } {
1988         return 1
1989     }
1990
1991     # GCC before 4.1 does not emit DW_AT_call_file / DW_AT_call_line.
1992     if { ([test_compiler_info "gcc-2-*"]
1993           || [test_compiler_info "gcc-3-*"]
1994           || [test_compiler_info "gcc-4-0-*"]) } {
1995         return 1
1996     }
1997
1998     return 0
1999 }
2000
2001 # Return whether we should skip tests for showing variables from
2002 # inlined functions.  Requires get_compiler_info and get_debug_format.
2003
2004 proc skip_inline_var_tests {} {
2005     # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2006     if { ! [test_debug_format "DWARF 2"] } {
2007         return 1
2008     }
2009
2010     return 0
2011 }
2012
2013 # Return a 1 if we should skip tests that require hardware breakpoints
2014
2015 proc skip_hw_breakpoint_tests {} {
2016     # Skip tests if requested by the board (note that no_hardware_watchpoints
2017     # disables both watchpoints and breakpoints)
2018     if { [target_info exists gdb,no_hardware_watchpoints]} {
2019         return 1
2020     }
2021
2022     # These targets support hardware breakpoints natively
2023     if { [istarget "i?86-*-*"] 
2024          || [istarget "x86_64-*-*"]
2025          || [istarget "ia64-*-*"] 
2026          || [istarget "arm*-*-*"]} {
2027         return 0
2028     }
2029
2030     return 1
2031 }
2032
2033 # Return a 1 if we should skip tests that require hardware watchpoints
2034
2035 proc skip_hw_watchpoint_tests {} {
2036     # Skip tests if requested by the board
2037     if { [target_info exists gdb,no_hardware_watchpoints]} {
2038         return 1
2039     }
2040
2041     # These targets support hardware watchpoints natively
2042     if { [istarget "i?86-*-*"] 
2043          || [istarget "x86_64-*-*"]
2044          || [istarget "ia64-*-*"] 
2045          || [istarget "arm*-*-*"]
2046          || [istarget "powerpc*-*-linux*"]
2047          || [istarget "s390*-*-*"] } {
2048         return 0
2049     }
2050
2051     return 1
2052 }
2053
2054 # Return a 1 if we should skip tests that require *multiple* hardware
2055 # watchpoints to be active at the same time
2056
2057 proc skip_hw_watchpoint_multi_tests {} {
2058     if { [skip_hw_watchpoint_tests] } {
2059         return 1
2060     }
2061
2062     # These targets support just a single hardware watchpoint
2063     if { [istarget "arm*-*-*"]
2064          || [istarget "powerpc*-*-linux*"] } {
2065         return 1
2066     }
2067
2068     return 0
2069 }
2070
2071 # Return a 1 if we should skip tests that require read/access watchpoints
2072
2073 proc skip_hw_watchpoint_access_tests {} {
2074     if { [skip_hw_watchpoint_tests] } {
2075         return 1
2076     }
2077
2078     # These targets support just write watchpoints
2079     if { [istarget "s390*-*-*"] } {
2080         return 1
2081     }
2082
2083     return 0
2084 }
2085
2086 set compiler_info               "unknown"
2087 set gcc_compiled                0
2088 set hp_cc_compiler              0
2089 set hp_aCC_compiler             0
2090
2091 # Figure out what compiler I am using.
2092 #
2093 # BINFILE is a "compiler information" output file.  This implementation
2094 # does not use BINFILE.
2095 #
2096 # ARGS can be empty or "C++".  If empty, "C" is assumed.
2097 #
2098 # There are several ways to do this, with various problems.
2099 #
2100 # [ gdb_compile -E $ifile -o $binfile.ci ]
2101 # source $binfile.ci
2102 #
2103 #   Single Unix Spec v3 says that "-E -o ..." together are not
2104 #   specified.  And in fact, the native compiler on hp-ux 11 (among
2105 #   others) does not work with "-E -o ...".  Most targets used to do
2106 #   this, and it mostly worked, because it works with gcc.
2107 #
2108 # [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
2109 # source $binfile.ci
2110
2111 #   This avoids the problem with -E and -o together.  This almost works
2112 #   if the build machine is the same as the host machine, which is
2113 #   usually true of the targets which are not gcc.  But this code does
2114 #   not figure which compiler to call, and it always ends up using the C
2115 #   compiler.  Not good for setting hp_aCC_compiler.  Targets
2116 #   hppa*-*-hpux* and mips*-*-irix* used to do this.
2117 #
2118 # [ gdb_compile -E $ifile > $binfile.ci ]
2119 # source $binfile.ci
2120 #
2121 #   dejagnu target_compile says that it supports output redirection,
2122 #   but the code is completely different from the normal path and I
2123 #   don't want to sweep the mines from that path.  So I didn't even try
2124 #   this.
2125 #
2126 # set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
2127 # eval $cppout
2128 #
2129 #   I actually do this for all targets now.  gdb_compile runs the right
2130 #   compiler, and TCL captures the output, and I eval the output.
2131 #
2132 #   Unfortunately, expect logs the output of the command as it goes by,
2133 #   and dejagnu helpfully prints a second copy of it right afterwards.
2134 #   So I turn off expect logging for a moment.
2135 #   
2136 # [ gdb_compile $ifile $ciexe_file executable $args ]
2137 # [ remote_exec $ciexe_file ]
2138 # [ source $ci_file.out ]
2139 #
2140 #   I could give up on -E and just do this.
2141 #   I didn't get desperate enough to try this.
2142 #
2143 # -- chastain 2004-01-06
2144
2145 proc get_compiler_info {binfile args} {
2146     # For compiler.c and compiler.cc
2147     global srcdir
2148
2149     # I am going to play with the log to keep noise out.
2150     global outdir
2151     global tool
2152
2153     # These come from compiler.c or compiler.cc
2154     global compiler_info
2155
2156     # Legacy global data symbols.
2157     global gcc_compiled
2158     global hp_cc_compiler
2159     global hp_aCC_compiler
2160
2161     # Choose which file to preprocess.
2162     set ifile "${srcdir}/lib/compiler.c"
2163     if { [llength $args] > 0 && [lindex $args 0] == "c++" } {
2164         set ifile "${srcdir}/lib/compiler.cc"
2165     }
2166
2167     # Run $ifile through the right preprocessor.
2168     # Toggle gdb.log to keep the compiler output out of the log.
2169     log_file
2170     if [is_remote host] {
2171         # We have to use -E and -o together, despite the comments
2172         # above, because of how DejaGnu handles remote host testing.
2173         set ppout "$outdir/compiler.i"
2174         gdb_compile "${ifile}" "$ppout" preprocess [list "$args" quiet]
2175         set file [open $ppout r]
2176         set cppout [read $file]
2177         close $file
2178     } else {
2179         set cppout [ gdb_compile "${ifile}" "" preprocess [list "$args" quiet] ]
2180     }
2181     log_file -a "$outdir/$tool.log" 
2182
2183     # Eval the output.
2184     set unknown 0
2185     foreach cppline [ split "$cppout" "\n" ] {
2186         if { [ regexp "^#" "$cppline" ] } {
2187             # line marker
2188         } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
2189             # blank line
2190         } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
2191             # eval this line
2192             verbose "get_compiler_info: $cppline" 2
2193             eval "$cppline"
2194         } else {
2195             # unknown line
2196             verbose -log "get_compiler_info: $cppline"
2197             set unknown 1
2198         }
2199     }
2200
2201     # Reset to unknown compiler if any diagnostics happened.
2202     if { $unknown } {
2203         set compiler_info "unknown"
2204     }
2205
2206     # Set the legacy symbols.
2207     set gcc_compiled     0
2208     set hp_cc_compiler   0
2209     set hp_aCC_compiler  0
2210     if { [regexp "^gcc-1-" "$compiler_info" ] } { set gcc_compiled 1 }
2211     if { [regexp "^gcc-2-" "$compiler_info" ] } { set gcc_compiled 2 }
2212     if { [regexp "^gcc-3-" "$compiler_info" ] } { set gcc_compiled 3 }
2213     if { [regexp "^gcc-4-" "$compiler_info" ] } { set gcc_compiled 4 }
2214     if { [regexp "^gcc-5-" "$compiler_info" ] } { set gcc_compiled 5 }
2215     if { [regexp "^hpcc-"  "$compiler_info" ] } { set hp_cc_compiler 1 }
2216     if { [regexp "^hpacc-" "$compiler_info" ] } { set hp_aCC_compiler 1 }
2217
2218     # Log what happened.
2219     verbose -log "get_compiler_info: $compiler_info"
2220
2221     # Most compilers will evaluate comparisons and other boolean
2222     # operations to 0 or 1.
2223     uplevel \#0 { set true 1 }
2224     uplevel \#0 { set false 0 }
2225
2226     # Use of aCC results in boolean results being displayed as
2227     # "true" or "false"
2228     if { $hp_aCC_compiler } {
2229       uplevel \#0 { set true true }
2230       uplevel \#0 { set false false }
2231     }
2232
2233     return 0;
2234 }
2235
2236 proc test_compiler_info { {compiler ""} } {
2237     global compiler_info
2238
2239      # if no arg, return the compiler_info string
2240
2241      if [string match "" $compiler] {
2242          if [info exists compiler_info] {
2243              return $compiler_info
2244          } else {
2245              perror "No compiler info found."
2246          }
2247      }
2248
2249     return [string match $compiler $compiler_info]
2250 }
2251
2252 proc current_target_name { } {
2253     global target_info
2254     if [info exists target_info(target,name)] {
2255         set answer $target_info(target,name)
2256     } else {
2257         set answer ""
2258     }
2259     return $answer
2260 }
2261
2262 set gdb_wrapper_initialized 0
2263 set gdb_wrapper_target ""
2264
2265 proc gdb_wrapper_init { args } {
2266     global gdb_wrapper_initialized;
2267     global gdb_wrapper_file;
2268     global gdb_wrapper_flags;
2269     global gdb_wrapper_target
2270
2271     if { $gdb_wrapper_initialized == 1 } { return; }
2272
2273     if {[target_info exists needs_status_wrapper] && \
2274             [target_info needs_status_wrapper] != "0"} {
2275         set result [build_wrapper "testglue.o"];
2276         if { $result != "" } {
2277             set gdb_wrapper_file [lindex $result 0];
2278             set gdb_wrapper_flags [lindex $result 1];
2279         } else {
2280             warning "Status wrapper failed to build."
2281         }
2282     }
2283     set gdb_wrapper_initialized 1
2284     set gdb_wrapper_target [current_target_name]
2285 }
2286
2287 # Some targets need to always link a special object in.  Save its path here.
2288 global gdb_saved_set_unbuffered_mode_obj
2289 set gdb_saved_set_unbuffered_mode_obj ""
2290
2291 proc gdb_compile {source dest type options} {
2292     global GDB_TESTCASE_OPTIONS;
2293     global gdb_wrapper_file;
2294     global gdb_wrapper_flags;
2295     global gdb_wrapper_initialized;
2296     global srcdir
2297     global objdir
2298     global gdb_saved_set_unbuffered_mode_obj
2299
2300     set outdir [file dirname $dest]
2301
2302     # Add platform-specific options if a shared library was specified using
2303     # "shlib=librarypath" in OPTIONS.
2304     set new_options ""
2305     set shlib_found 0
2306     set shlib_load 0
2307     foreach opt $options {
2308         if [regexp {^shlib=(.*)} $opt dummy_var shlib_name] {
2309             if [test_compiler_info "xlc-*"] {
2310                 # IBM xlc compiler doesn't accept shared library named other
2311                 # than .so: use "-Wl," to bypass this
2312                 lappend source "-Wl,$shlib_name"
2313             } elseif { ([istarget "*-*-mingw*"]
2314                         || [istarget *-*-cygwin*]
2315                         || [istarget *-*-pe*])} {
2316                 lappend source "${shlib_name}.a"
2317             } else {
2318                lappend source $shlib_name
2319             }
2320             if { $shlib_found == 0 } {
2321                 set shlib_found 1
2322                 if { ([istarget "*-*-mingw*"]
2323                       || [istarget *-*-cygwin*]) } {
2324                     lappend new_options "additional_flags=-Wl,--enable-auto-import"
2325                 }
2326             }
2327         } elseif { $opt == "shlib_load" } {
2328             set shlib_load 1
2329         } else {
2330             lappend new_options $opt
2331         }
2332     }
2333
2334     # We typically link to shared libraries using an absolute path, and
2335     # that's how they are found at runtime.  If we are going to
2336     # dynamically load one by basename, we must specify rpath.  If we
2337     # are using a remote host, DejaGNU will link to the shared library
2338     # using a relative path, so again we must specify an rpath.
2339     if { $shlib_load || ($shlib_found && [is_remote target]) } {
2340         if { ([istarget "*-*-mingw*"]
2341               || [istarget *-*-cygwin*]
2342               || [istarget *-*-pe*]
2343               || [istarget hppa*-*-hpux*])} {
2344             # Do not need anything.
2345         } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
2346             lappend new_options "ldflags=-Wl,-rpath,${outdir}"
2347         } elseif { [istarget arm*-*-symbianelf*] } {
2348             if { $shlib_load } {
2349                 lappend new_options "libs=-ldl"
2350             }
2351         } else {
2352             if { $shlib_load } {
2353                 lappend new_options "libs=-ldl"
2354             }
2355             lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
2356         }
2357     }
2358     set options $new_options
2359
2360     if [target_info exists is_vxworks] {
2361         set options2 { "additional_flags=-Dvxworks" }
2362         set options [concat $options2 $options]
2363     }
2364     if [info exists GDB_TESTCASE_OPTIONS] {
2365         lappend options "additional_flags=$GDB_TESTCASE_OPTIONS";
2366     }
2367     verbose "options are $options"
2368     verbose "source is $source $dest $type $options"
2369
2370     if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
2371
2372     if {[target_info exists needs_status_wrapper] && \
2373             [target_info needs_status_wrapper] != "0" && \
2374             [info exists gdb_wrapper_file]} {
2375         lappend options "libs=${gdb_wrapper_file}"
2376         lappend options "ldflags=${gdb_wrapper_flags}"
2377     }
2378
2379     # Replace the "nowarnings" option with the appropriate additional_flags
2380     # to disable compiler warnings.
2381     set nowarnings [lsearch -exact $options nowarnings]
2382     if {$nowarnings != -1} {
2383         if [target_info exists gdb,nowarnings_flag] {
2384             set flag "additional_flags=[target_info gdb,nowarnings_flag]"
2385         } else {
2386             set flag "additional_flags=-w"
2387         }
2388         set options [lreplace $options $nowarnings $nowarnings $flag]
2389     }
2390
2391     if { $type == "executable" } {
2392         if { ([istarget "*-*-mingw*"]
2393               || [istarget "*-*-*djgpp"]
2394               || [istarget "*-*-cygwin*"])} {
2395             # Force output to unbuffered mode, by linking in an object file
2396             # with a global contructor that calls setvbuf.
2397             #
2398             # Compile the special object seperatelly for two reasons:
2399             #  1) Insulate it from $options.
2400             #  2) Avoid compiling it for every gdb_compile invocation,
2401             #  which is time consuming, especially if we're remote
2402             #  host testing.
2403             #
2404             if { $gdb_saved_set_unbuffered_mode_obj == "" } {
2405                 verbose "compiling gdb_saved_set_unbuffered_obj"
2406                 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
2407                 set unbuf_obj ${objdir}/set_unbuffered_mode.o
2408
2409                 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
2410                 if { $result != "" } {
2411                     return $result
2412                 }
2413
2414                 set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
2415                 # Link a copy of the output object, because the
2416                 # original may be automatically deleted.
2417                 remote_exec host "cp -f $unbuf_obj $gdb_saved_set_unbuffered_mode_obj"
2418             } else {
2419                 verbose "gdb_saved_set_unbuffered_obj already compiled"
2420             }
2421
2422             # Rely on the internal knowledge that the global ctors are ran in
2423             # reverse link order.  In that case, we can use ldflags to
2424             # avoid copying the object file to the host multiple
2425             # times.
2426             # This object can only be added if standard libraries are
2427             # used. Thus, we need to disable it if -nostdlib option is used
2428             if {[lsearch -regexp $options "-nostdlib"] < 0 } {
2429                 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
2430             }
2431         }
2432     }
2433
2434     set result [target_compile $source $dest $type $options];
2435
2436     # Prune uninteresting compiler (and linker) output.
2437     regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
2438
2439     regsub "\[\r\n\]*$" "$result" "" result;
2440     regsub "^\[\r\n\]*" "$result" "" result;
2441     
2442     if {[lsearch $options quiet] < 0} {
2443         # We shall update this on a per language basis, to avoid
2444         # changing the entire testsuite in one go.
2445         if {[lsearch $options f77] >= 0} {
2446             gdb_compile_test $source $result
2447         } elseif { $result != "" } {
2448             clone_output "gdb compile failed, $result"
2449         }
2450     }
2451     return $result;
2452 }
2453
2454
2455 # This is just like gdb_compile, above, except that it tries compiling
2456 # against several different thread libraries, to see which one this
2457 # system has.
2458 proc gdb_compile_pthreads {source dest type options} {
2459     set built_binfile 0
2460     set why_msg "unrecognized error"
2461     foreach lib {-lpthreads -lpthread -lthread ""} {
2462         # This kind of wipes out whatever libs the caller may have
2463         # set.  Or maybe theirs will override ours.  How infelicitous.
2464         set options_with_lib [concat $options [list libs=$lib quiet]]
2465         set ccout [gdb_compile $source $dest $type $options_with_lib]
2466         switch -regexp -- $ccout {
2467             ".*no posix threads support.*" {
2468                 set why_msg "missing threads include file"
2469                 break
2470             }
2471             ".*cannot open -lpthread.*" {
2472                 set why_msg "missing runtime threads library"
2473             }
2474             ".*Can't find library for -lpthread.*" {
2475                 set why_msg "missing runtime threads library"
2476             }
2477             {^$} {
2478                 pass "successfully compiled posix threads test case"
2479                 set built_binfile 1
2480                 break
2481             }
2482         }
2483     }
2484     if {!$built_binfile} {
2485         unsupported "Couldn't compile $source: ${why_msg}"
2486         return -1
2487     }
2488 }
2489
2490 # Build a shared library from SOURCES.  You must use get_compiler_info
2491 # first.
2492
2493 proc gdb_compile_shlib {sources dest options} {
2494     set obj_options $options
2495
2496     switch -glob [test_compiler_info] {
2497         "xlc-*" {
2498             lappend obj_options "additional_flags=-qpic"
2499         }
2500         "gcc-*" {
2501             if { !([istarget "powerpc*-*-aix*"]
2502                    || [istarget "rs6000*-*-aix*"]
2503                    || [istarget "*-*-cygwin*"]
2504                    || [istarget "*-*-mingw*"]
2505                    || [istarget "*-*-pe*"]) } {
2506                 lappend obj_options "additional_flags=-fpic"
2507             }
2508         }
2509         default {
2510             switch -glob [istarget] {
2511                 "hppa*-hp-hpux*" {
2512                     lappend obj_options "additional_flags=+z"
2513                 }
2514                 "mips-sgi-irix*" {
2515                     # Disable SGI compiler's implicit -Dsgi
2516                     lappend obj_options "additional_flags=-Usgi"
2517                 } 
2518                 default {
2519                     # don't know what the compiler is...
2520                 }
2521             }
2522         }
2523     }
2524
2525     set outdir [file dirname $dest]
2526     set objects ""
2527     foreach source $sources {
2528        set sourcebase [file tail $source]
2529        if {[gdb_compile $source "${outdir}/${sourcebase}.o" object $obj_options] != ""} {
2530            return -1
2531        }
2532        lappend objects ${outdir}/${sourcebase}.o
2533     }
2534
2535     if [istarget "hppa*-*-hpux*"] {
2536        remote_exec build "ld -b ${objects} -o ${dest}"
2537     } else {
2538        set link_options $options
2539        if [test_compiler_info "xlc-*"] {
2540           lappend link_options "additional_flags=-qmkshrobj"
2541        } else {
2542           lappend link_options "additional_flags=-shared"
2543
2544            if { ([istarget "*-*-mingw*"]
2545                  || [istarget *-*-cygwin*]
2546                  || [istarget *-*-pe*])} {
2547                lappend link_options "additional_flags=-Wl,--out-implib,${dest}.a"
2548            } elseif [is_remote target] {
2549              # By default, we do not set the soname.  This causes the linker
2550              # on ELF systems to create a DT_NEEDED entry in the executable
2551              # refering to the full path name of the library.  This is a
2552              # problem in remote testing if the library is in a different
2553              # directory there.  To fix this, we set a soname of just the
2554              # base filename for the library, and add an appropriate -rpath
2555              # to the main executable (in gdb_compile).
2556              set destbase [file tail $dest]
2557              lappend link_options "additional_flags=-Wl,-soname,$destbase"
2558            }
2559        }
2560        if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
2561            return -1
2562        }
2563     }
2564 }
2565
2566 # This is just like gdb_compile_shlib, above, except that it tries compiling
2567 # against several different thread libraries, to see which one this
2568 # system has.
2569 proc gdb_compile_shlib_pthreads {sources dest options} {
2570     set built_binfile 0
2571     set why_msg "unrecognized error"
2572     foreach lib {-lpthreads -lpthread -lthread ""} {
2573         # This kind of wipes out whatever libs the caller may have
2574         # set.  Or maybe theirs will override ours.  How infelicitous.
2575         set options_with_lib [concat $options [list libs=$lib quiet]]
2576         set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
2577         switch -regexp -- $ccout {
2578             ".*no posix threads support.*" {
2579                 set why_msg "missing threads include file"
2580                 break
2581             }
2582             ".*cannot open -lpthread.*" {
2583                 set why_msg "missing runtime threads library"
2584             }
2585             ".*Can't find library for -lpthread.*" {
2586                 set why_msg "missing runtime threads library"
2587             }
2588             {^$} {
2589                 pass "successfully compiled posix threads test case"
2590                 set built_binfile 1
2591                 break
2592             }
2593         }
2594     }
2595     if {!$built_binfile} {
2596         unsupported "Couldn't compile $sources: ${why_msg}"
2597         return -1
2598     }
2599 }
2600
2601 # This is just like gdb_compile_pthreads, above, except that we always add the
2602 # objc library for compiling Objective-C programs
2603 proc gdb_compile_objc {source dest type options} {
2604     set built_binfile 0
2605     set why_msg "unrecognized error"
2606     foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
2607         # This kind of wipes out whatever libs the caller may have
2608         # set.  Or maybe theirs will override ours.  How infelicitous.
2609         if { $lib == "solaris" } {
2610             set lib "-lpthread -lposix4"
2611         }
2612         if { $lib != "-lobjc" } {
2613           set lib "-lobjc $lib"
2614         }
2615         set options_with_lib [concat $options [list libs=$lib quiet]]
2616         set ccout [gdb_compile $source $dest $type $options_with_lib]
2617         switch -regexp -- $ccout {
2618             ".*no posix threads support.*" {
2619                 set why_msg "missing threads include file"
2620                 break
2621             }
2622             ".*cannot open -lpthread.*" {
2623                 set why_msg "missing runtime threads library"
2624             }
2625             ".*Can't find library for -lpthread.*" {
2626                 set why_msg "missing runtime threads library"
2627             }
2628             {^$} {
2629                 pass "successfully compiled objc with posix threads test case"
2630                 set built_binfile 1
2631                 break
2632             }
2633         }
2634     }
2635     if {!$built_binfile} {
2636         unsupported "Couldn't compile $source: ${why_msg}"
2637         return -1
2638     }
2639 }
2640
2641 proc send_gdb { string } {
2642     global suppress_flag;
2643     if { $suppress_flag } {
2644         return "suppressed";
2645     }
2646     return [remote_send host "$string"];
2647 }
2648
2649 #
2650 #
2651
2652 proc gdb_expect { args } {
2653     if { [llength $args] == 2  && [lindex $args 0] != "-re" } {
2654         set atimeout [lindex $args 0];
2655         set expcode [list [lindex $args 1]];
2656     } else {
2657         set expcode $args;
2658     }
2659
2660     upvar timeout timeout;
2661
2662     if [target_info exists gdb,timeout] {
2663         if [info exists timeout] {
2664             if { $timeout < [target_info gdb,timeout] } {
2665                 set gtimeout [target_info gdb,timeout];
2666             } else {
2667                 set gtimeout $timeout;
2668             }
2669         } else {
2670             set gtimeout [target_info gdb,timeout];
2671         }
2672     }
2673
2674     if ![info exists gtimeout] {
2675         global timeout;
2676         if [info exists timeout] {
2677             set gtimeout $timeout;
2678         }
2679     }
2680
2681     if [info exists atimeout] {
2682         if { ![info exists gtimeout] || $gtimeout < $atimeout } {
2683             set gtimeout $atimeout;
2684         }
2685     } else {
2686         if ![info exists gtimeout] {
2687             # Eeeeew.
2688             set gtimeout 60;
2689         }
2690     }
2691
2692     global suppress_flag;
2693     global remote_suppress_flag;
2694     if [info exists remote_suppress_flag] {
2695         set old_val $remote_suppress_flag;
2696     }
2697     if [info exists suppress_flag] {
2698         if { $suppress_flag } {
2699             set remote_suppress_flag 1;
2700         }
2701     }
2702     set code [catch \
2703         {uplevel remote_expect host $gtimeout $expcode} string];
2704     if [info exists old_val] {
2705         set remote_suppress_flag $old_val;
2706     } else {
2707         if [info exists remote_suppress_flag] {
2708             unset remote_suppress_flag;
2709         }
2710     }
2711
2712     if {$code == 1} {
2713         global errorInfo errorCode;
2714
2715         return -code error -errorinfo $errorInfo -errorcode $errorCode $string
2716     } else {
2717         return -code $code $string
2718     }
2719 }
2720
2721 # gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
2722 #
2723 # Check for long sequence of output by parts.
2724 # TEST: is the test message to be printed with the test success/fail.
2725 # SENTINEL: Is the terminal pattern indicating that output has finished.
2726 # LIST: is the sequence of outputs to match.
2727 # If the sentinel is recognized early, it is considered an error.
2728 #
2729 # Returns:
2730 #    1 if the test failed,
2731 #    0 if the test passes,
2732 #   -1 if there was an internal error.
2733
2734 proc gdb_expect_list {test sentinel list} {
2735     global gdb_prompt
2736     global suppress_flag
2737     set index 0
2738     set ok 1
2739     if { $suppress_flag } {
2740         set ok 0
2741         unresolved "${test}"
2742     }
2743     while { ${index} < [llength ${list}] } {
2744         set pattern [lindex ${list} ${index}]
2745         set index [expr ${index} + 1]
2746         verbose -log "gdb_expect_list pattern: /$pattern/" 2
2747         if { ${index} == [llength ${list}] } {
2748             if { ${ok} } {
2749                 gdb_expect {
2750                     -re "${pattern}${sentinel}" {
2751                         # pass "${test}, pattern ${index} + sentinel"
2752                     }
2753                     -re "${sentinel}" {
2754                         fail "${test} (pattern ${index} + sentinel)"
2755                         set ok 0
2756                     }
2757                     -re ".*A problem internal to GDB has been detected" {
2758                         fail "${test} (GDB internal error)"
2759                         set ok 0
2760                         gdb_internal_error_resync
2761                     }
2762                     timeout {
2763                         fail "${test} (pattern ${index} + sentinel) (timeout)"
2764                         set ok 0
2765                     }
2766                 }
2767             } else {
2768                 # unresolved "${test}, pattern ${index} + sentinel"
2769             }
2770         } else {
2771             if { ${ok} } {
2772                 gdb_expect {
2773                     -re "${pattern}" {
2774                         # pass "${test}, pattern ${index}"
2775                     }
2776                     -re "${sentinel}" {
2777                         fail "${test} (pattern ${index})"
2778                         set ok 0
2779                     }
2780                     -re ".*A problem internal to GDB has been detected" {
2781                         fail "${test} (GDB internal error)"
2782                         set ok 0
2783                         gdb_internal_error_resync
2784                     }
2785                     timeout {
2786                         fail "${test} (pattern ${index}) (timeout)"
2787                         set ok 0
2788                     }
2789                 }
2790             } else {
2791                 # unresolved "${test}, pattern ${index}"
2792             }
2793         }
2794     }
2795     if { ${ok} } {
2796         pass "${test}"
2797         return 0
2798     } else {
2799         return 1
2800     }
2801 }
2802
2803 #
2804 #
2805 proc gdb_suppress_entire_file { reason } {
2806     global suppress_flag;
2807
2808     warning "$reason\n";
2809     set suppress_flag -1;
2810 }
2811
2812 #
2813 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
2814 # gdb_expect to fail immediately (until the next call to 
2815 # gdb_stop_suppressing_tests).
2816 #
2817 proc gdb_suppress_tests { args } {
2818     global suppress_flag;
2819
2820     return;  # fnf - disable pending review of results where
2821              # testsuite ran better without this
2822     incr suppress_flag;
2823
2824     if { $suppress_flag == 1 } {
2825         if { [llength $args] > 0 } {
2826             warning "[lindex $args 0]\n";
2827         } else {
2828             warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n";
2829         }
2830     }
2831 }
2832
2833 #
2834 # Clear suppress_flag.
2835 #
2836 proc gdb_stop_suppressing_tests { } {
2837     global suppress_flag;
2838
2839     if [info exists suppress_flag] {
2840         if { $suppress_flag > 0 } {
2841             set suppress_flag 0;
2842             clone_output "Tests restarted.\n";
2843         }
2844     } else {
2845         set suppress_flag 0;
2846     }
2847 }
2848
2849 proc gdb_clear_suppressed { } {
2850     global suppress_flag;
2851
2852     set suppress_flag 0;
2853 }
2854
2855 proc gdb_start { } {
2856     default_gdb_start
2857 }
2858
2859 proc gdb_exit { } {
2860     catch default_gdb_exit
2861 }
2862
2863 #
2864 # gdb_load_cmd -- load a file into the debugger.
2865 #                 ARGS - additional args to load command.
2866 #                 return a -1 if anything goes wrong.
2867 #
2868 proc gdb_load_cmd { args } {
2869     global gdb_prompt
2870
2871     if [target_info exists gdb_load_timeout] {
2872         set loadtimeout [target_info gdb_load_timeout]
2873     } else {
2874         set loadtimeout 1600
2875     }
2876     send_gdb "load $args\n"
2877     verbose "Timeout is now $loadtimeout seconds" 2
2878     gdb_expect $loadtimeout {
2879         -re "Loading section\[^\r\]*\r\n" {
2880             exp_continue
2881         }
2882         -re "Start address\[\r\]*\r\n" {
2883             exp_continue
2884         }
2885         -re "Transfer rate\[\r\]*\r\n" {
2886             exp_continue
2887         }
2888         -re "Memory access error\[^\r\]*\r\n" {
2889             perror "Failed to load program"
2890             return -1
2891         }
2892         -re "$gdb_prompt $" {
2893             return 0
2894         }
2895         -re "(.*)\r\n$gdb_prompt " {
2896             perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
2897             return -1
2898         }
2899         timeout {
2900             perror "Timed out trying to load $args."
2901             return -1
2902         }
2903     }
2904     return -1
2905 }
2906
2907 # Return the filename to download to the target and load on the target
2908 # for this shared library.  Normally just LIBNAME, unless shared libraries
2909 # for this target have separate link and load images.
2910
2911 proc shlib_target_file { libname } {
2912     return $libname
2913 }
2914
2915 # Return the filename GDB will load symbols from when debugging this
2916 # shared library.  Normally just LIBNAME, unless shared libraries for
2917 # this target have separate link and load images.
2918
2919 proc shlib_symbol_file { libname } {
2920     return $libname
2921 }
2922
2923 # Return the filename to download to the target and load for this
2924 # executable.  Normally just BINFILE unless it is renamed to something
2925 # else for this target.
2926
2927 proc exec_target_file { binfile } {
2928     return $binfile
2929 }
2930
2931 # Return the filename GDB will load symbols from when debugging this
2932 # executable.  Normally just BINFILE unless executables for this target
2933 # have separate files for symbols.
2934
2935 proc exec_symbol_file { binfile } {
2936     return $binfile
2937 }
2938
2939 # Rename the executable file.  Normally this is just BINFILE1 being renamed
2940 # to BINFILE2, but some targets require multiple binary files.
2941 proc gdb_rename_execfile { binfile1 binfile2 } {
2942     file rename -force [exec_target_file ${binfile1}] \
2943                        [exec_target_file ${binfile2}]
2944     if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
2945         file rename -force [exec_symbol_file ${binfile1}] \
2946                            [exec_symbol_file ${binfile2}]
2947     }
2948 }
2949
2950 # "Touch" the executable file to update the date.  Normally this is just
2951 # BINFILE, but some targets require multiple files.
2952 proc gdb_touch_execfile { binfile } {
2953     set time [clock seconds]
2954     file mtime [exec_target_file ${binfile}] $time
2955     if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
2956         file mtime [exec_symbol_file ${binfile}] $time
2957     }
2958 }
2959
2960 # gdb_download
2961 #
2962 # Copy a file to the remote target and return its target filename.
2963 # Schedule the file to be deleted at the end of this test.
2964
2965 proc gdb_download { filename } {
2966     global cleanfiles
2967
2968     set destname [remote_download target $filename]
2969     lappend cleanfiles $destname
2970     return $destname
2971 }
2972
2973 # gdb_load_shlibs LIB...
2974 #
2975 # Copy the listed libraries to the target.
2976
2977 proc gdb_load_shlibs { args } {
2978     if {![is_remote target]} {
2979         return
2980     }
2981
2982     foreach file $args {
2983         gdb_download [shlib_target_file $file]
2984     }
2985
2986     # Even if the target supplies full paths for shared libraries,
2987     # they may not be paths for this system.
2988     gdb_test "set solib-search-path [file dirname [lindex $args 0]]" "" ""
2989 }
2990
2991 #
2992 # gdb_load -- load a file into the debugger.
2993 # Many files in config/*.exp override this procedure.
2994 #
2995 proc gdb_load { arg } {
2996     return [gdb_file_cmd $arg]
2997 }
2998
2999 # gdb_reload -- load a file into the target.  Called before "running",
3000 # either the first time or after already starting the program once,
3001 # for remote targets.  Most files that override gdb_load should now
3002 # override this instead.
3003
3004 proc gdb_reload { } {
3005     # For the benefit of existing configurations, default to gdb_load.
3006     # Specifying no file defaults to the executable currently being
3007     # debugged.
3008     return [gdb_load ""]
3009 }
3010
3011 proc gdb_continue { function } {
3012     global decimal
3013
3014     return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"];
3015 }
3016
3017 proc default_gdb_init { args } {
3018     global gdb_wrapper_initialized
3019     global gdb_wrapper_target
3020     global cleanfiles
3021     
3022     set cleanfiles {}
3023
3024     gdb_clear_suppressed;
3025
3026     # Make sure that the wrapper is rebuilt
3027     # with the appropriate multilib option.
3028     if { $gdb_wrapper_target != [current_target_name] } {
3029         set gdb_wrapper_initialized 0
3030     }
3031     
3032     # Unlike most tests, we have a small number of tests that generate
3033     # a very large amount of output.  We therefore increase the expect
3034     # buffer size to be able to contain the entire test output.
3035     match_max -d 30000
3036     # Also set this value for the currently running GDB. 
3037     match_max [match_max -d]
3038
3039     # We want to add the name of the TCL testcase to the PASS/FAIL messages.
3040     if { [llength $args] > 0 } {
3041         global pf_prefix
3042
3043         set file [lindex $args 0];
3044
3045         set pf_prefix "[file tail [file dirname $file]]/[file tail $file]:";
3046     }
3047     global gdb_prompt;
3048     if [target_info exists gdb_prompt] {
3049         set gdb_prompt [target_info gdb_prompt];
3050     } else {
3051         set gdb_prompt "\\(gdb\\)"
3052     }
3053     global use_gdb_stub
3054     if [info exists use_gdb_stub] {
3055         unset use_gdb_stub
3056     }
3057 }
3058
3059 # The default timeout used when testing GDB commands.  We want to use
3060 # the same timeout as the default dejagnu timeout, unless the user has
3061 # already provided a specific value (probably through a site.exp file).
3062 global gdb_test_timeout
3063 if ![info exists gdb_test_timeout] {
3064     set gdb_test_timeout $timeout
3065 }
3066
3067 # A list of global variables that GDB testcases should not use.
3068 # We try to prevent their use by monitoring write accesses and raising
3069 # an error when that happens.
3070 set banned_variables { bug_id prms_id }
3071
3072 # A list of procedures that GDB testcases should not use.
3073 # We try to prevent their use by monitoring invocations and raising
3074 # an error when that happens.
3075 set banned_procedures { strace }
3076
3077 # gdb_init is called by runtest at start, but also by several
3078 # tests directly; gdb_finish is only called from within runtest after
3079 # each test source execution.
3080 # Placing several traces by repetitive calls to gdb_init leads
3081 # to problems, as only one trace is removed in gdb_finish.
3082 # To overcome this possible problem, we add a variable that records
3083 # if the banned variables and procedures are already traced.
3084 set banned_traced 0
3085
3086 proc gdb_init { args } {
3087     # Reset the timeout value to the default.  This way, any testcase
3088     # that changes the timeout value without resetting it cannot affect
3089     # the timeout used in subsequent testcases.
3090     global gdb_test_timeout
3091     global timeout
3092     set timeout $gdb_test_timeout
3093
3094     # Block writes to all banned variables, and invocation of all
3095     # banned procedures...
3096     global banned_variables
3097     global banned_procedures
3098     global banned_traced
3099     if (!$banned_traced) {
3100         foreach banned_var $banned_variables {
3101             global "$banned_var"
3102             trace add variable "$banned_var" write error
3103         }
3104         foreach banned_proc $banned_procedures {
3105             global "$banned_proc"
3106             trace add execution "$banned_proc" enter error
3107         }
3108         set banned_traced 1
3109     }
3110
3111     # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
3112     # messages as expected.
3113     setenv LC_ALL C
3114     setenv LC_CTYPE C
3115     setenv LANG C
3116
3117     # Don't let a .inputrc file or an existing setting of INPUTRC mess up
3118     # the test results.  Even if /dev/null doesn't exist on the particular
3119     # platform, the readline library will use the default setting just by
3120     # failing to open the file.  OTOH, opening /dev/null successfully will
3121     # also result in the default settings being used since nothing will be
3122     # read from this file.
3123     setenv INPUTRC "/dev/null"
3124
3125     # The gdb.base/readline.exp arrow key test relies on the standard VT100
3126     # bindings, so make sure that an appropriate terminal is selected.
3127     # The same bug doesn't show up if we use ^P / ^N instead.
3128     setenv TERM "vt100"
3129
3130     # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
3131     # grep.  Clear GREP_OPTIONS to make the behavoiur predictable, 
3132     # especially having color output turned on can cause tests to fail.
3133     setenv GREP_OPTIONS ""
3134
3135     # Clear $gdbserver_reconnect_p.
3136     global gdbserver_reconnect_p
3137     set gdbserver_reconnect_p 1
3138     unset gdbserver_reconnect_p
3139
3140     return [eval default_gdb_init $args];
3141 }
3142
3143 proc gdb_finish { } {
3144     global cleanfiles
3145
3146     # Exit first, so that the files are no longer in use.
3147     gdb_exit
3148
3149     if { [llength $cleanfiles] > 0 } {
3150         eval remote_file target delete $cleanfiles
3151         set cleanfiles {}
3152     }
3153
3154     # Unblock write access to the banned variables.  Dejagnu typically
3155     # resets some of them between testcases.
3156     global banned_variables
3157     global banned_procedures
3158     global banned_traced
3159     if ($banned_traced) {
3160         foreach banned_var $banned_variables {
3161             global "$banned_var"
3162             trace remove variable "$banned_var" write error
3163         }
3164         foreach banned_proc $banned_procedures {
3165             global "$banned_proc"
3166             trace remove execution "$banned_proc" enter error
3167         }
3168         set banned_traced 0
3169     }
3170 }
3171
3172 global debug_format
3173 set debug_format "unknown"
3174
3175 # Run the gdb command "info source" and extract the debugging format
3176 # information from the output and save it in debug_format.
3177
3178 proc get_debug_format { } {
3179     global gdb_prompt
3180     global verbose
3181     global expect_out
3182     global debug_format
3183
3184     set debug_format "unknown"
3185     send_gdb "info source\n"
3186     gdb_expect 10 {
3187         -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
3188             set debug_format $expect_out(1,string)
3189             verbose "debug format is $debug_format"
3190             return 1;
3191         }
3192         -re "No current source file.\r\n$gdb_prompt $" {
3193             perror "get_debug_format used when no current source file"
3194             return 0;
3195         }
3196         -re "$gdb_prompt $" {
3197             warning "couldn't check debug format (no valid response)."
3198             return 1;
3199         }
3200         timeout {
3201             warning "couldn't check debug format (timed out)."
3202             return 1;
3203         }
3204     }
3205 }
3206
3207 # Return true if FORMAT matches the debug format the current test was
3208 # compiled with.  FORMAT is a shell-style globbing pattern; it can use
3209 # `*', `[...]', and so on.
3210 #
3211 # This function depends on variables set by `get_debug_format', above.
3212
3213 proc test_debug_format {format} {
3214     global debug_format
3215
3216     return [expr [string match $format $debug_format] != 0]
3217 }
3218
3219 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
3220 # COFF, stabs, etc).  If that format matches the format that the
3221 # current test was compiled with, then the next test is expected to
3222 # fail for any target.  Returns 1 if the next test or set of tests is
3223 # expected to fail, 0 otherwise (or if it is unknown).  Must have
3224 # previously called get_debug_format.
3225 proc setup_xfail_format { format } {
3226     set ret [test_debug_format $format];
3227
3228     if {$ret} then {
3229         setup_xfail "*-*-*"
3230     }
3231     return $ret;
3232 }
3233
3234 # Like setup_kfail, but only call setup_kfail conditionally if
3235 # istarget[TARGET] returns true.
3236 proc setup_kfail_for_target { PR target } {
3237     if { [istarget $target] } {
3238         setup_kfail $PR $target
3239     }
3240 }
3241
3242 # gdb_get_line_number TEXT [FILE]
3243 #
3244 # Search the source file FILE, and return the line number of the
3245 # first line containing TEXT.  If no match is found, return -1.
3246
3247 # TEXT is a string literal, not a regular expression.
3248 #
3249 # The default value of FILE is "$srcdir/$subdir/$srcfile".  If FILE is
3250 # specified, and does not start with "/", then it is assumed to be in
3251 # "$srcdir/$subdir".  This is awkward, and can be fixed in the future,
3252 # by changing the callers and the interface at the same time.
3253 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
3254 # gdb.base/ena-dis-br.exp.
3255 #
3256 # Use this function to keep your test scripts independent of the
3257 # exact line numbering of the source file.  Don't write:
3258
3259 #   send_gdb "break 20"
3260
3261 # This means that if anyone ever edits your test's source file, 
3262 # your test could break.  Instead, put a comment like this on the
3263 # source file line you want to break at:
3264
3265 #   /* breakpoint spot: frotz.exp: test name */
3266
3267 # and then write, in your test script (which we assume is named
3268 # frotz.exp):
3269
3270 #   send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
3271 #
3272 # (Yes, Tcl knows how to handle the nested quotes and brackets.
3273 # Try this:
3274 #       $ tclsh
3275 #       % puts "foo [lindex "bar baz" 1]"
3276 #       foo baz
3277 #       % 
3278 # Tcl is quite clever, for a little stringy language.)
3279 #
3280 # ===
3281 #
3282 # The previous implementation of this procedure used the gdb search command.
3283 # This version is different:
3284 #
3285 #   . It works with MI, and it also works when gdb is not running.
3286 #
3287 #   . It operates on the build machine, not the host machine.
3288 #
3289 #   . For now, this implementation fakes a current directory of
3290 #     $srcdir/$subdir to be compatible with the old implementation.
3291 #     This will go away eventually and some callers will need to
3292 #     be changed.
3293 #
3294 #   . The TEXT argument is literal text and matches literally,
3295 #     not a regular expression as it was before.
3296 #
3297 #   . State changes in gdb, such as changing the current file
3298 #     and setting $_, no longer happen.
3299 #
3300 # After a bit of time we can forget about the differences from the
3301 # old implementation.
3302 #
3303 # --chastain 2004-08-05
3304
3305 proc gdb_get_line_number { text { file "" } } {
3306     global srcdir
3307     global subdir
3308     global srcfile
3309
3310     if { "$file" == "" } then {
3311         set file "$srcfile"
3312     }
3313     if { ! [regexp "^/" "$file"] } then {
3314         set file "$srcdir/$subdir/$file"
3315     }
3316
3317     if { [ catch { set fd [open "$file"] } message ] } then {
3318         perror "$message"
3319         return -1
3320     }
3321
3322     set found -1
3323     for { set line 1 } { 1 } { incr line } {
3324         if { [ catch { set nchar [gets "$fd" body] } message ] } then {
3325             perror "$message"
3326             return -1
3327         }
3328         if { $nchar < 0 } then {
3329             break
3330         }
3331         if { [string first "$text" "$body"] >= 0 } then {
3332             set found $line
3333             break
3334         }
3335     }
3336
3337     if { [ catch { close "$fd" } message ] } then {
3338         perror "$message"
3339         return -1
3340     }
3341
3342     return $found
3343 }
3344
3345 # gdb_continue_to_end:
3346 #       The case where the target uses stubs has to be handled specially. If a
3347 #       stub is used, we set a breakpoint at exit because we cannot rely on
3348 #       exit() behavior of a remote target.
3349
3350 # MSSG is the error message that gets printed.  If not given, a
3351 #       default is used.
3352 # COMMAND is the command to invoke.  If not given, "continue" is
3353 #       used.
3354 # ALLOW_EXTRA is a flag indicating whether the test should expect
3355 #       extra output between the "Continuing." line and the program
3356 #       exiting.  By default it is zero; if nonzero, any extra output
3357 #       is accepted.
3358
3359 proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
3360   global inferior_exited_re use_gdb_stub
3361
3362   if {$mssg == ""} {
3363       set text "continue until exit"
3364   } else {
3365       set text "continue until exit at $mssg"
3366   }
3367   if {$allow_extra} {
3368       set extra ".*"
3369   } else {
3370       set extra ""
3371   }
3372   if $use_gdb_stub {
3373     if {![gdb_breakpoint "exit"]} {
3374       return 0
3375     }
3376     gdb_test $command "Continuing..*Breakpoint .*exit.*" \
3377         $text
3378   } else {
3379     # Continue until we exit.  Should not stop again.
3380     # Don't bother to check the output of the program, that may be
3381     # extremely tough for some remote systems.
3382     gdb_test $command \
3383       "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
3384         $text
3385   }
3386 }
3387
3388 proc rerun_to_main {} {
3389   global gdb_prompt use_gdb_stub
3390
3391   if $use_gdb_stub {
3392     gdb_run_cmd
3393     gdb_expect {
3394       -re ".*Breakpoint .*main .*$gdb_prompt $"\
3395               {pass "rerun to main" ; return 0}
3396       -re "$gdb_prompt $"\
3397               {fail "rerun to main" ; return 0}
3398       timeout {fail "(timeout) rerun to main" ; return 0}
3399     }
3400   } else {
3401     send_gdb "run\n"
3402     gdb_expect {
3403       -re "The program .* has been started already.*y or n. $" {
3404           send_gdb "y\n"
3405           exp_continue
3406       }
3407       -re "Starting program.*$gdb_prompt $"\
3408               {pass "rerun to main" ; return 0}
3409       -re "$gdb_prompt $"\
3410               {fail "rerun to main" ; return 0}
3411       timeout {fail "(timeout) rerun to main" ; return 0}
3412     }
3413   }
3414 }
3415
3416 # Print a message and return true if a test should be skipped
3417 # due to lack of floating point suport.
3418
3419 proc gdb_skip_float_test { msg } {
3420     if [target_info exists gdb,skip_float_tests] {
3421         verbose "Skipping test '$msg': no float tests.";
3422         return 1;
3423     }
3424     return 0;
3425 }
3426
3427 # Print a message and return true if a test should be skipped
3428 # due to lack of stdio support.
3429
3430 proc gdb_skip_stdio_test { msg } {
3431     if [target_info exists gdb,noinferiorio] {
3432         verbose "Skipping test '$msg': no inferior i/o.";
3433         return 1;
3434     }
3435     return 0;
3436 }
3437
3438 proc gdb_skip_bogus_test { msg } {
3439     return 0;
3440 }
3441
3442 # Return true if a test should be skipped due to lack of XML support
3443 # in the host GDB.
3444 # NOTE: This must be called while gdb is *not* running.
3445
3446 proc gdb_skip_xml_test { } {
3447     global gdb_prompt
3448     global srcdir
3449     global xml_missing_cached
3450
3451     if {[info exists xml_missing_cached]} {
3452         return $xml_missing_cached
3453     }
3454
3455     gdb_start
3456     set xml_missing_cached 0
3457     gdb_test_multiple "set tdesc filename ${srcdir}/gdb.xml/trivial.xml" "" {
3458         -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
3459             set xml_missing_cached 1
3460         }
3461         -re ".*$gdb_prompt $" { }
3462     }
3463     gdb_exit
3464     return $xml_missing_cached
3465 }
3466
3467 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
3468 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
3469 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
3470 # the name of a debuginfo only file. This file will be stored in the same
3471 # subdirectory.
3472
3473 # Functions for separate debug info testing
3474
3475 # starting with an executable:
3476 # foo --> original executable
3477
3478 # at the end of the process we have:
3479 # foo.stripped --> foo w/o debug info
3480 # foo.debug --> foo's debug info
3481 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
3482
3483 # Return the build-id hex string (usually 160 bits as 40 hex characters)
3484 # converted to the form: .build-id/ab/cdef1234...89.debug
3485 # Return "" if no build-id found.
3486 proc build_id_debug_filename_get { exec } {
3487     set tmp "${exec}-tmp"
3488     set objcopy_program [transform objcopy]
3489
3490     set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $exec $tmp" output]
3491     verbose "result is $result"
3492     verbose "output is $output"
3493     if {$result == 1} {
3494         return ""
3495     }
3496     set fi [open $tmp]
3497     fconfigure $fi -translation binary
3498     # Skip the NOTE header.
3499     read $fi 16
3500     set data [read $fi]
3501     close $fi
3502     file delete $tmp
3503     if ![string compare $data ""] then {
3504         return ""
3505     }
3506     # Convert it to hex.
3507     binary scan $data H* data
3508     regsub {^..} $data {\0/} data
3509     return ".build-id/${data}.debug";
3510 }
3511
3512 # Create stripped files for DEST, replacing it.  If ARGS is passed, it is a
3513 # list of optional flags.  The only currently supported flag is no-main,
3514 # which removes the symbol entry for main from the separate debug file.
3515 #
3516 # Function returns zero on success.  Function will return non-zero failure code
3517 # on some targets not supporting separate debug info (such as i386-msdos).
3518
3519 proc gdb_gnu_strip_debug { dest args } {
3520
3521     # Use the first separate debug info file location searched by GDB so the
3522     # run cannot be broken by some stale file searched with higher precedence.
3523     set debug_file "${dest}.debug"
3524
3525     set strip_to_file_program [transform strip]
3526     set objcopy_program [transform objcopy]
3527
3528     set debug_link [file tail $debug_file]
3529     set stripped_file "${dest}.stripped"
3530
3531     # Get rid of the debug info, and store result in stripped_file
3532     # something like gdb/testsuite/gdb.base/blah.stripped.
3533     set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
3534     verbose "result is $result"
3535     verbose "output is $output"
3536     if {$result == 1} {
3537       return 1
3538     }
3539
3540     # Workaround PR binutils/10802:
3541     # Preserve the 'x' bit also for PIEs (Position Independent Executables).
3542     set perm [file attributes ${dest} -permissions]
3543     file attributes ${stripped_file} -permissions $perm
3544
3545     # Get rid of everything but the debug info, and store result in debug_file
3546     # This will be in the .debug subdirectory, see above.
3547     set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
3548     verbose "result is $result"
3549     verbose "output is $output"
3550     if {$result == 1} {
3551       return 1
3552     }
3553
3554     # If no-main is passed, strip the symbol for main from the separate
3555     # file.  This is to simulate the behavior of elfutils's eu-strip, which
3556     # leaves the symtab in the original file only.  There's no way to get
3557     # objcopy or strip to remove the symbol table without also removing the
3558     # debugging sections, so this is as close as we can get.
3559     if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
3560         set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
3561         verbose "result is $result"
3562         verbose "output is $output"
3563         if {$result == 1} {
3564             return 1
3565         }
3566         file delete "${debug_file}"
3567         file rename "${debug_file}-tmp" "${debug_file}"
3568     }
3569
3570     # Link the two previous output files together, adding the .gnu_debuglink
3571     # section to the stripped_file, containing a pointer to the debug_file,
3572     # save the new file in dest.
3573     # This will be the regular executable filename, in the usual location.
3574     set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
3575     verbose "result is $result"
3576     verbose "output is $output"
3577     if {$result == 1} {
3578       return 1
3579     }
3580
3581     # Workaround PR binutils/10802:
3582     # Preserve the 'x' bit also for PIEs (Position Independent Executables).
3583     set perm [file attributes ${stripped_file} -permissions]
3584     file attributes ${dest} -permissions $perm
3585
3586     return 0
3587 }
3588
3589 # Test the output of GDB_COMMAND matches the pattern obtained
3590 # by concatenating all elements of EXPECTED_LINES.  This makes
3591 # it possible to split otherwise very long string into pieces.
3592 # If third argument is not empty, it's used as the name of the
3593 # test to be printed on pass/fail.
3594 proc help_test_raw { gdb_command expected_lines args } {
3595     set message $gdb_command
3596     if [llength $args]>0 then {
3597         set message [lindex $args 0]
3598     } 
3599     set expected_output [join $expected_lines ""]
3600     gdb_test "${gdb_command}" "${expected_output}" $message
3601 }
3602
3603 # Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
3604 # are regular expressions that should match the beginning of output,
3605 # before the list of commands in that class.  The presence of 
3606 # command list and standard epilogue will be tested automatically.
3607 proc test_class_help { command_class expected_initial_lines args } {
3608     set l_stock_body {
3609         "List of commands\:.*\[\r\n\]+"
3610         "Type \"help\" followed by command name for full documentation\.\[\r\n\]+"
3611         "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n\]+"
3612         "Command name abbreviations are allowed if unambiguous\." 
3613     }
3614     set l_entire_body [concat $expected_initial_lines $l_stock_body]
3615
3616     eval [list help_test_raw "help ${command_class}" $l_entire_body] $args
3617 }
3618
3619 # COMMAND_LIST should have either one element -- command to test, or
3620 # two elements -- abbreviated command to test, and full command the first
3621 # element is abbreviation of.
3622 # The command must be a prefix command.  EXPECTED_INITIAL_LINES
3623 # are regular expressions that should match the beginning of output,
3624 # before the list of subcommands.  The presence of 
3625 # subcommand list and standard epilogue will be tested automatically.
3626 proc test_prefix_command_help { command_list expected_initial_lines args } {
3627     set command [lindex $command_list 0]   
3628     if {[llength $command_list]>1} {        
3629         set full_command [lindex $command_list 1]
3630     } else {
3631         set full_command $command
3632     }
3633     # Use 'list' and not just {} because we want variables to
3634     # be expanded in this list.
3635     set l_stock_body [list\
3636          "List of $full_command subcommands\:.*\[\r\n\]+"\
3637          "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"\
3638          "Type \"apropos word\" to search for commands related to \"word\"\.\[\r\n\]+"\
3639          "Command name abbreviations are allowed if unambiguous\."]
3640     set l_entire_body [concat $expected_initial_lines $l_stock_body]
3641     if {[llength $args]>0} {
3642         help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
3643     } else {
3644         help_test_raw "help ${command}" $l_entire_body
3645     }
3646 }
3647
3648 # Build executable named EXECUTABLE, from SOURCES.  If SOURCES are not
3649 # provided, uses $EXECUTABLE.c.  The TESTNAME paramer is the name of test
3650 # to pass to untested, if something is wrong.  OPTIONS are passed
3651 # to gdb_compile directly.
3652 proc build_executable { testname executable {sources ""} {options {debug}} } {
3653
3654     global objdir
3655     global subdir
3656     global srcdir
3657     if {[llength $sources]==0} {
3658         set sources ${executable}.c
3659     }
3660
3661     set binfile ${objdir}/${subdir}/${executable}
3662
3663     set objects {}
3664     for {set i 0} "\$i<[llength $sources]" {incr i} {
3665         set s [lindex $sources $i]
3666         if  { [gdb_compile "${srcdir}/${subdir}/${s}" "${binfile}${i}.o" object $options] != "" } {
3667             untested $testname
3668             return -1
3669         }
3670         lappend objects "${binfile}${i}.o"
3671     }
3672     
3673     if  { [gdb_compile $objects "${binfile}" executable $options] != "" } {
3674         untested $testname
3675         return -1
3676     }
3677
3678     set info_options ""
3679     if { [lsearch -exact $options "c++"] >= 0 } {
3680         set info_options "c++"
3681     }
3682     if [get_compiler_info ${binfile} ${info_options}] {
3683         return -1
3684     }
3685     return 0
3686 }
3687
3688 # Starts fresh GDB binary and loads EXECUTABLE into GDB. EXECUTABLE is
3689 # the name of binary in ${objdir}/${subdir}.
3690 proc clean_restart { executable } {
3691     global srcdir
3692     global objdir
3693     global subdir
3694     set binfile ${objdir}/${subdir}/${executable}
3695
3696     gdb_exit
3697     gdb_start
3698     gdb_reinitialize_dir $srcdir/$subdir
3699     gdb_load ${binfile}
3700 }
3701
3702 # Prepares for testing, by calling build_executable, and then clean_restart.
3703 # Please refer to build_executable for parameter description.
3704 proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
3705
3706     if {[build_executable $testname $executable $sources $options] == -1} {
3707         return -1
3708     }
3709     clean_restart $executable
3710
3711     return 0
3712 }
3713
3714 proc get_valueof { fmt exp default } {
3715     global gdb_prompt
3716
3717     set test "get valueof \"${exp}\""
3718     set val ${default}
3719     gdb_test_multiple "print${fmt} ${exp}" "$test" {
3720         -re "\\$\[0-9\]* = (.*)\[\r\n\]*$gdb_prompt $" {
3721             set val $expect_out(1,string)
3722             pass "$test ($val)"
3723         }
3724         timeout {
3725             fail "$test (timeout)"
3726         }
3727     }
3728     return ${val}
3729 }
3730
3731 proc get_integer_valueof { exp default } {
3732     global gdb_prompt
3733
3734     set test "get integer valueof \"${exp}\""
3735     set val ${default}
3736     gdb_test_multiple "print /d ${exp}" "$test" {
3737         -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
3738             set val $expect_out(1,string)
3739             pass "$test ($val)"
3740         }
3741         timeout {
3742             fail "$test (timeout)"
3743         }
3744     }
3745     return ${val}
3746 }
3747
3748 proc get_hexadecimal_valueof { exp default } {
3749     global gdb_prompt
3750     send_gdb "print /x ${exp}\n"
3751     set test "get hexadecimal valueof \"${exp}\""
3752     gdb_expect {
3753         -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
3754             set val $expect_out(1,string)
3755             pass "$test"
3756         }
3757         timeout {
3758             set val ${default}
3759             fail "$test (timeout)"
3760         }
3761     }
3762     return ${val}
3763 }
3764
3765 proc get_sizeof { type default } {
3766     return [get_integer_valueof "sizeof (${type})" $default]
3767 }
3768
3769 # Get the current value for remotetimeout and return it.
3770 proc get_remotetimeout { } {
3771     global gdb_prompt
3772     global decimal
3773
3774     gdb_test_multiple "show remotetimeout" "" {
3775         -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
3776             return $expect_out(1,string);
3777         }
3778     }
3779
3780     # Pick the default that gdb uses
3781     warning "Unable to read remotetimeout"
3782     return 300
3783 }
3784
3785 # Set the remotetimeout to the specified timeout.  Nothing is returned.
3786 proc set_remotetimeout { timeout } {
3787     global gdb_prompt
3788
3789     gdb_test_multiple "set remotetimeout $timeout" "" {
3790         -re "$gdb_prompt $" {
3791             verbose "Set remotetimeout to $timeout\n"
3792         }
3793     }
3794 }
3795
3796 # Log gdb command line and script if requested.
3797 if {[info exists TRANSCRIPT]} {
3798   rename send_gdb real_send_gdb
3799   rename remote_spawn real_remote_spawn
3800   rename remote_close real_remote_close
3801
3802   global gdb_transcript
3803   set gdb_transcript ""
3804
3805   global gdb_trans_count
3806   set gdb_trans_count 1
3807
3808   proc remote_spawn {args} {
3809     global gdb_transcript gdb_trans_count outdir
3810
3811     if {$gdb_transcript != ""} {
3812       close $gdb_transcript
3813     }
3814     set gdb_transcript [open [file join $outdir transcript.$gdb_trans_count] w]
3815     puts $gdb_transcript [lindex $args 1]
3816     incr gdb_trans_count
3817
3818     return [uplevel real_remote_spawn $args]
3819   }
3820
3821   proc remote_close {args} {
3822     global gdb_transcript
3823
3824     if {$gdb_transcript != ""} {
3825       close $gdb_transcript
3826       set gdb_transcript ""
3827     }
3828
3829     return [uplevel real_remote_close $args]
3830   }
3831
3832   proc send_gdb {args} {
3833     global gdb_transcript
3834
3835     if {$gdb_transcript != ""} {
3836       puts -nonewline $gdb_transcript [lindex $args 0]
3837     }
3838
3839     return [uplevel real_send_gdb $args]
3840   }
3841 }
3842
3843 proc core_find {binfile {deletefiles {}} {arg ""}} {
3844     global objdir subdir
3845
3846     set destcore "$binfile.core"
3847     file delete $destcore
3848
3849     # Create a core file named "$destcore" rather than just "core", to
3850     # avoid problems with sys admin types that like to regularly prune all
3851     # files named "core" from the system.
3852     #
3853     # Arbitrarily try setting the core size limit to "unlimited" since
3854     # this does not hurt on systems where the command does not work and
3855     # allows us to generate a core on systems where it does.
3856     #
3857     # Some systems append "core" to the name of the program; others append
3858     # the name of the program to "core"; still others (like Linux, as of
3859     # May 2003) create cores named "core.PID".  In the latter case, we
3860     # could have many core files lying around, and it may be difficult to
3861     # tell which one is ours, so let's run the program in a subdirectory.
3862     set found 0
3863     set coredir "${objdir}/${subdir}/coredir.[getpid]"
3864     file mkdir $coredir
3865     catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
3866     #      remote_exec host "${binfile}"
3867     foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
3868         if [remote_file build exists $i] {
3869             remote_exec build "mv $i $destcore"
3870             set found 1
3871         }
3872     }
3873     # Check for "core.PID".
3874     if { $found == 0 } {
3875         set names [glob -nocomplain -directory $coredir core.*]
3876         if {[llength $names] == 1} {
3877             set corefile [file join $coredir [lindex $names 0]]
3878             remote_exec build "mv $corefile $destcore"
3879             set found 1
3880         }
3881     }
3882     if { $found == 0 } {
3883         # The braindamaged HPUX shell quits after the ulimit -c above
3884         # without executing ${binfile}.  So we try again without the
3885         # ulimit here if we didn't find a core file above.
3886         # Oh, I should mention that any "braindamaged" non-Unix system has
3887         # the same problem. I like the cd bit too, it's really neat'n stuff.
3888         catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
3889         foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
3890             if [remote_file build exists $i] {
3891                 remote_exec build "mv $i $destcore"
3892                 set found 1
3893             }
3894         }
3895     }
3896
3897     # Try to clean up after ourselves. 
3898     foreach deletefile $deletefiles {
3899         remote_file build delete [file join $coredir $deletefile]
3900     }
3901     remote_exec build "rmdir $coredir"
3902         
3903     if { $found == 0  } {
3904         warning "can't generate a core file - core tests suppressed - check ulimit -c"
3905         return ""
3906     }
3907     return $destcore
3908 }
3909
3910 # gdb_target_symbol_prefix_flags returns a string that can be added
3911 # to gdb_compile options to define SYMBOL_PREFIX macro value
3912 # symbol_prefix_flags returns a string that can be added
3913 # for targets that use underscore as symbol prefix.
3914 # TODO: find out automatically if the target needs this.
3915
3916 proc gdb_target_symbol_prefix_flags {} {
3917     if { [istarget "*-*-cygwin*"] || [istarget "i?86-*-mingw*"]
3918          || [istarget "*-*-msdosdjgpp*"] || [istarget "*-*-go32*"] } {
3919         return "additional_flags=-DSYMBOL_PREFIX=\"_\""
3920     } else {
3921         return ""
3922     }
3923 }
3924
3925 # Always load compatibility stuff.
3926 load_lib future.exp