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