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