1 # Copyright 1992-2016 Free Software Foundation, Inc.
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.
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.
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/>.
16 # This file was written by Fred Fish. (fnf@cygnus.com)
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.
23 # Tests would fail, logs on get_compiler_info() would be missing.
24 send_error "`site.exp' not found, run `make site.exp'!\n"
30 load_lib gdb-utils.exp
34 # The spawn ID used for I/O interaction with the inferior. For native
35 # targets, or remote targets that can do I/O through GDB
36 # (semi-hosting) this will be the same as the host/GDB's spawn ID.
37 # Otherwise, the board may set this to some other spawn ID. E.g.,
38 # when debugging with GDBserver, this is set to GDBserver's spawn ID,
39 # so input/output is done on gdbserver's tty.
40 global inferior_spawn_id
42 if [info exists TOOL_EXECUTABLE] {
43 set GDB $TOOL_EXECUTABLE
45 if ![info exists GDB] {
46 if ![is_remote host] {
47 set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
49 set GDB [transform gdb]
52 verbose "using GDB = $GDB" 2
54 # GDBFLAGS is available for the user to set on the command line.
55 # E.g. make check RUNTESTFLAGS=GDBFLAGS=mumble
56 # Testcases may use it to add additional flags, but they must:
57 # - append new flags, not overwrite
58 # - restore the original value when done
60 if ![info exists GDBFLAGS] {
63 verbose "using GDBFLAGS = $GDBFLAGS" 2
65 # Make the build data directory available to tests.
66 set BUILD_DATA_DIRECTORY "[pwd]/../data-directory"
68 # INTERNAL_GDBFLAGS contains flags that the testsuite requires.
69 global INTERNAL_GDBFLAGS
70 if ![info exists INTERNAL_GDBFLAGS] {
71 set INTERNAL_GDBFLAGS "-nw -nx -data-directory $BUILD_DATA_DIRECTORY"
74 # The variable gdb_prompt is a regexp which matches the gdb prompt.
75 # Set it if it is not already set. This is also set by default_gdb_init
76 # but it's not clear what removing one of them will break.
77 # See with_gdb_prompt for more details on prompt handling.
79 if ![info exists gdb_prompt] then {
80 set gdb_prompt "\\(gdb\\)"
83 # A regexp that matches the pagination prompt.
84 set pagination_prompt [string_to_regexp "---Type <return> to continue, or q <return> to quit---"]
86 # The variable fullname_syntax_POSIX is a regexp which matches a POSIX
87 # absolute path ie. /foo/
88 set fullname_syntax_POSIX {/[^\n]*/}
89 # The variable fullname_syntax_UNC is a regexp which matches a Windows
90 # UNC path ie. \\D\foo\
91 set fullname_syntax_UNC {\\\\[^\\]+\\[^\n]+\\}
92 # The variable fullname_syntax_DOS_CASE is a regexp which matches a
93 # particular DOS case that GDB most likely will output
94 # ie. \foo\, but don't match \\.*\
95 set fullname_syntax_DOS_CASE {\\[^\\][^\n]*\\}
96 # The variable fullname_syntax_DOS is a regexp which matches a DOS path
97 # ie. a:\foo\ && a:foo\
98 set fullname_syntax_DOS {[a-zA-Z]:[^\n]*\\}
99 # The variable fullname_syntax is a regexp which matches what GDB considers
100 # an absolute path. It is currently debatable if the Windows style paths
101 # d:foo and \abc should be considered valid as an absolute path.
102 # Also, the purpse of this regexp is not to recognize a well formed
103 # absolute path, but to say with certainty that a path is absolute.
104 set fullname_syntax "($fullname_syntax_POSIX|$fullname_syntax_UNC|$fullname_syntax_DOS_CASE|$fullname_syntax_DOS)"
106 # Needed for some tests under Cygwin.
110 if ![info exists env(EXEEXT)] {
113 set EXEEXT $env(EXEEXT)
118 set inferior_exited_re "(\\\[Inferior \[0-9\]+ \\(.*\\) exited)"
120 ### Only procedures should come after this point.
123 # gdb_version -- extract and print the version number of GDB
125 proc default_gdb_version {} {
127 global INTERNAL_GDBFLAGS GDBFLAGS
131 if {[info exists inotify_pid]} {
132 eval exec kill $inotify_pid
135 set output [remote_exec host "$GDB $INTERNAL_GDBFLAGS --version"]
136 set tmp [lindex $output 1]
138 regexp " \[0-9\]\[^ \t\n\r\]+" "$tmp" version
139 if ![is_remote host] {
140 clone_output "[which $GDB] version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
142 clone_output "$GDB on remote host version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
146 proc gdb_version { } {
147 return [default_gdb_version]
151 # gdb_unload -- unload a file if one is loaded
152 # Return 0 on success, -1 on error.
161 -re "No executable file now\[^\r\n\]*\[\r\n\]" { exp_continue }
162 -re "No symbol file now\[^\r\n\]*\[\r\n\]" { exp_continue }
163 -re "A program is being debugged already.*Are you sure you want to change the file.*y or n. $" {
167 -re "Discard symbol table from .*y or n.*$" {
171 -re "$gdb_prompt $" {}
173 perror "couldn't unload file in $GDB (timeout)."
180 # Many of the tests depend on setting breakpoints at various places and
181 # running until that breakpoint is reached. At times, we want to start
182 # with a clean-slate with respect to breakpoints, so this utility proc
183 # lets us do this without duplicating this code everywhere.
186 proc delete_breakpoints {} {
189 # we need a larger timeout value here or this thing just confuses
190 # itself. May need a better implementation if possible. - guo
194 set msg "delete all breakpoints in delete_breakpoints"
196 gdb_test_multiple "delete breakpoints" "$msg" {
197 -re "Delete all breakpoints.*y or n.*$" {
201 -re "$gdb_prompt $" {
207 # Confirm with "info breakpoints".
209 set msg "info breakpoints"
210 gdb_test_multiple $msg $msg {
211 -re "No breakpoints or watchpoints..*$gdb_prompt $" {
214 -re "$gdb_prompt $" {
220 perror "breakpoints not deleted"
224 # Generic run command.
226 # The second pattern below matches up to the first newline *only*.
227 # Using ``.*$'' could swallow up output that we attempt to match
230 # N.B. This function does not wait for gdb to return to the prompt,
231 # that is the caller's responsibility.
233 proc gdb_run_cmd {args} {
234 global gdb_prompt use_gdb_stub
236 foreach command [gdb_init_commands] {
237 send_gdb "$command\n"
239 -re "$gdb_prompt $" { }
241 perror "gdb_init_command for target failed"
248 if [target_info exists gdb,do_reload_on_run] {
249 if { [gdb_reload] != 0 } {
252 send_gdb "continue\n"
254 -re "Continu\[^\r\n\]*\[\r\n\]" {}
260 if [target_info exists gdb,start_symbol] {
261 set start [target_info gdb,start_symbol]
265 send_gdb "jump *$start\n"
267 while { $start_attempt } {
268 # Cap (re)start attempts at three to ensure that this loop
269 # always eventually fails. Don't worry about trying to be
270 # clever and not send a command when it has failed.
271 if [expr $start_attempt > 3] {
272 perror "Jump to start() failed (retry count exceeded)"
275 set start_attempt [expr $start_attempt + 1]
277 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
280 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
281 perror "Can't find start symbol to run in gdb_run"
284 -re "No symbol \"start\" in current.*$gdb_prompt $" {
285 send_gdb "jump *_start\n"
287 -re "No symbol.*context.*$gdb_prompt $" {
290 -re "Line.* Jump anyway.*y or n. $" {
293 -re "The program is not being run.*$gdb_prompt $" {
294 if { [gdb_reload] != 0 } {
297 send_gdb "jump *$start\n"
300 perror "Jump to start() failed (timeout)"
308 if [target_info exists gdb,do_reload_on_run] {
309 if { [gdb_reload] != 0 } {
313 send_gdb "run $args\n"
314 # This doesn't work quite right yet.
315 # Use -notransfer here so that test cases (like chng-sym.exp)
316 # may test for additional start-up messages.
318 -re "The program .* has been started already.*y or n. $" {
322 -notransfer -re "Starting program: \[^\r\n\]*" {}
323 -notransfer -re "$gdb_prompt $" {
324 # There is no more input expected.
329 # Generic start command. Return 0 if we could start the program, -1
332 # N.B. This function does not wait for gdb to return to the prompt,
333 # that is the caller's responsibility.
335 proc gdb_start_cmd {args} {
336 global gdb_prompt use_gdb_stub
338 foreach command [gdb_init_commands] {
339 send_gdb "$command\n"
341 -re "$gdb_prompt $" { }
343 perror "gdb_init_command for target failed"
353 send_gdb "start $args\n"
354 # Use -notransfer here so that test cases (like chng-sym.exp)
355 # may test for additional start-up messages.
357 -re "The program .* has been started already.*y or n. $" {
361 -notransfer -re "Starting program: \[^\r\n\]*" {
368 # Set a breakpoint at FUNCTION. If there is an additional argument it is
369 # a list of options; the supported options are allow-pending, temporary,
370 # message, no-message, and passfail.
371 # The result is 1 for success, 0 for failure.
373 # Note: The handling of message vs no-message is messed up, but it's based
374 # on historical usage. By default this function does not print passes,
376 # no-message: turns off printing of fails (and passes, but they're already off)
377 # message: turns on printing of passes (and fails, but they're already on)
379 proc gdb_breakpoint { function args } {
383 set pending_response n
384 if {[lsearch -exact $args allow-pending] != -1} {
385 set pending_response y
388 set break_command "break"
389 set break_message "Breakpoint"
390 if {[lsearch -exact $args temporary] != -1} {
391 set break_command "tbreak"
392 set break_message "Temporary breakpoint"
397 set no_message_loc [lsearch -exact $args no-message]
398 set message_loc [lsearch -exact $args message]
399 # The last one to appear in args wins.
400 if { $no_message_loc > $message_loc } {
402 } elseif { $message_loc > $no_message_loc } {
406 set test_name "setting breakpoint at $function"
408 send_gdb "$break_command $function\n"
409 # The first two regexps are what we get with -g, the third is without -g.
411 -re "$break_message \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
412 -re "$break_message \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
413 -re "$break_message \[0-9\]* at .*$gdb_prompt $" {}
414 -re "$break_message \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
415 if {$pending_response == "n"} {
422 -re "Make breakpoint pending.*y or \\\[n\\\]. $" {
423 send_gdb "$pending_response\n"
426 -re "A problem internal to GDB has been detected" {
428 fail "$test_name (GDB internal error)"
430 gdb_internal_error_resync
433 -re "$gdb_prompt $" {
441 fail "$test_name (eof)"
447 fail "$test_name (timeout)"
458 # Set breakpoint at function and run gdb until it breaks there.
459 # Since this is the only breakpoint that will be set, if it stops
460 # at a breakpoint, we will assume it is the one we want. We can't
461 # just compare to "function" because it might be a fully qualified,
462 # single quoted C++ function specifier.
464 # If there are additional arguments, pass them to gdb_breakpoint.
465 # We recognize no-message/message ourselves.
466 # The default is no-message.
467 # no-message is messed up here, like gdb_breakpoint: to preserve
468 # historical usage fails are always printed by default.
469 # no-message: turns off printing of fails (and passes, but they're already off)
470 # message: turns on printing of passes (and fails, but they're already on)
472 proc runto { function args } {
478 # Default to "no-message".
479 set args "no-message $args"
483 set no_message_loc [lsearch -exact $args no-message]
484 set message_loc [lsearch -exact $args message]
485 # The last one to appear in args wins.
486 if { $no_message_loc > $message_loc } {
488 } elseif { $message_loc > $no_message_loc } {
492 set test_name "running to $function in runto"
494 # We need to use eval here to pass our varargs args to gdb_breakpoint
495 # which is also a varargs function.
496 # But we also have to be careful because $function may have multiple
497 # elements, and we don't want Tcl to move the remaining elements after
498 # the first to $args. That is why $function is wrapped in {}.
499 if ![eval gdb_breakpoint {$function} $args] {
505 # the "at foo.c:36" output we get with -g.
506 # the "in func" output we get without -g.
508 -re "Break.* at .*:$decimal.*$gdb_prompt $" {
514 -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
520 -re "The target does not support running in non-stop mode.\r\n$gdb_prompt $" {
522 unsupported "Non-stop mode not supported"
526 -re ".*A problem internal to GDB has been detected" {
528 fail "$test_name (GDB internal error)"
530 gdb_internal_error_resync
533 -re "$gdb_prompt $" {
541 fail "$test_name (eof)"
547 fail "$test_name (timeout)"
558 # Ask gdb to run until we hit a breakpoint at main.
560 # N.B. This function deletes all existing breakpoints.
561 # If you don't want that, use gdb_start_cmd.
563 proc runto_main { } {
564 return [runto main no-message]
567 ### Continue, and expect to hit a breakpoint.
568 ### Report a pass or fail, depending on whether it seems to have
569 ### worked. Use NAME as part of the test name; each call to
570 ### continue_to_breakpoint should use a NAME which is unique within
572 proc gdb_continue_to_breakpoint {name {location_pattern .*}} {
574 set full_name "continue to breakpoint: $name"
576 gdb_test_multiple "continue" $full_name {
577 -re "(?:Breakpoint|Temporary breakpoint) .* (at|in) $location_pattern\r\n$gdb_prompt $" {
584 # gdb_internal_error_resync:
586 # Answer the questions GDB asks after it reports an internal error
587 # until we get back to a GDB prompt. Decline to quit the debugging
588 # session, and decline to create a core file. Return non-zero if the
591 # This procedure just answers whatever questions come up until it sees
592 # a GDB prompt; it doesn't require you to have matched the input up to
593 # any specific point. However, it only answers questions it sees in
594 # the output itself, so if you've matched a question, you had better
595 # answer it yourself before calling this.
597 # You can use this function thus:
601 # -re ".*A problem internal to GDB has been detected" {
602 # gdb_internal_error_resync
607 proc gdb_internal_error_resync {} {
610 verbose -log "Resyncing due to internal error."
613 while {$count < 10} {
615 -re "Quit this debugging session\\? \\(y or n\\) $" {
619 -re "Create a core file of GDB\\? \\(y or n\\) $" {
623 -re "$gdb_prompt $" {
624 # We're resynchronized.
628 perror "Could not resync from internal error (timeout)"
633 perror "Could not resync from internal error (resync count exceeded)"
638 # gdb_test_multiple COMMAND MESSAGE EXPECT_ARGUMENTS
639 # Send a command to gdb; test the result.
641 # COMMAND is the command to execute, send to GDB with send_gdb. If
642 # this is the null string no command is sent.
643 # MESSAGE is a message to be printed with the built-in failure patterns
644 # if one of them matches. If MESSAGE is empty COMMAND will be used.
645 # EXPECT_ARGUMENTS will be fed to expect in addition to the standard
646 # patterns. Pattern elements will be evaluated in the caller's
647 # context; action elements will be executed in the caller's context.
648 # Unlike patterns for gdb_test, these patterns should generally include
649 # the final newline and prompt.
652 # 1 if the test failed, according to a built-in failure pattern
653 # 0 if only user-supplied patterns matched
654 # -1 if there was an internal error.
656 # You can use this function thus:
658 # gdb_test_multiple "print foo" "test foo" {
659 # -re "expected output 1" {
662 # -re "expected output 2" {
667 # Like with "expect", you can also specify the spawn id to match with
668 # -i "$id". Interesting spawn ids are $inferior_spawn_id and
669 # $gdb_spawn_id. The former matches inferior I/O, while the latter
670 # matches GDB I/O. E.g.:
672 # send_inferior "hello\n"
673 # gdb_test_multiple "continue" "test echo" {
674 # -i "$inferior_spawn_id" -re "^hello\r\nhello\r\n$" {
677 # -i "$gdb_spawn_id" -re "Breakpoint.*$gdb_prompt $" {
678 # fail "hit breakpoint"
682 # The standard patterns, such as "Inferior exited..." and "A problem
683 # ...", all being implicitly appended to that list. These are always
684 # expected from $gdb_spawn_id. IOW, callers do not need to worry
685 # about resetting "-i" back to $gdb_spawn_id explicitly.
687 proc gdb_test_multiple { command message user_code } {
688 global verbose use_gdb_stub
689 global gdb_prompt pagination_prompt
692 global inferior_exited_re
693 upvar timeout timeout
694 upvar expect_out expect_out
697 if { $message == "" } {
701 if [string match "*\[\r\n\]" $command] {
702 error "Invalid trailing newline in \"$message\" test"
705 if [string match "*\[\r\n\]*" $message] {
706 error "Invalid newline in \"$message\" test"
710 && [regexp -nocase {^\s*(r|run|star|start|at|att|atta|attac|attach)\M} \
712 error "gdbserver does not support $command without extended-remote"
715 # TCL/EXPECT WART ALERT
716 # Expect does something very strange when it receives a single braced
717 # argument. It splits it along word separators and performs substitutions.
718 # This means that { "[ab]" } is evaluated as "[ab]", but { "\[ab\]" } is
719 # evaluated as "\[ab\]". But that's not how TCL normally works; inside a
720 # double-quoted list item, "\[ab\]" is just a long way of representing
721 # "[ab]", because the backslashes will be removed by lindex.
723 # Unfortunately, there appears to be no easy way to duplicate the splitting
724 # that expect will do from within TCL. And many places make use of the
725 # "\[0-9\]" construct, so we need to support that; and some places make use
726 # of the "[func]" construct, so we need to support that too. In order to
727 # get this right we have to substitute quoted list elements differently
728 # from braced list elements.
730 # We do this roughly the same way that Expect does it. We have to use two
731 # lists, because if we leave unquoted newlines in the argument to uplevel
732 # they'll be treated as command separators, and if we escape newlines
733 # we mangle newlines inside of command blocks. This assumes that the
734 # input doesn't contain a pattern which contains actual embedded newlines
737 regsub -all {\n} ${user_code} { } subst_code
738 set subst_code [uplevel list $subst_code]
740 set processed_code ""
742 set expecting_action 0
744 foreach item $user_code subst_item $subst_code {
745 if { $item == "-n" || $item == "-notransfer" || $item == "-nocase" } {
746 lappend processed_code $item
749 if { $item == "-indices" || $item == "-re" || $item == "-ex" } {
750 lappend processed_code $item
753 if { $item == "-timeout" || $item == "-i" } {
755 lappend processed_code $item
758 if { $expecting_arg } {
760 lappend processed_code $subst_item
763 if { $expecting_action } {
764 lappend processed_code "uplevel [list $item]"
765 set expecting_action 0
766 # Cosmetic, no effect on the list.
767 append processed_code "\n"
770 set expecting_action 1
771 lappend processed_code $subst_item
772 if {$patterns != ""} {
775 append patterns "\"$subst_item\""
778 # Also purely cosmetic.
779 regsub -all {\r} $patterns {\\r} patterns
780 regsub -all {\n} $patterns {\\n} patterns
783 send_user "Sending \"$command\" to gdb\n"
784 send_user "Looking to match \"$patterns\"\n"
785 send_user "Message is \"$message\"\n"
789 set string "${command}\n"
790 if { $command != "" } {
791 set multi_line_re "\[\r\n\] *>"
792 while { "$string" != "" } {
793 set foo [string first "\n" "$string"]
794 set len [string length "$string"]
795 if { $foo < [expr $len - 1] } {
796 set str [string range "$string" 0 $foo]
797 if { [send_gdb "$str"] != "" } {
800 if { ! $suppress_flag } {
801 perror "Couldn't send $command to GDB."
806 # since we're checking if each line of the multi-line
807 # command are 'accepted' by GDB here,
808 # we need to set -notransfer expect option so that
809 # command output is not lost for pattern matching
812 -notransfer -re "$multi_line_re$" { verbose "partial: match" 3 }
813 timeout { verbose "partial: timeout" 3 }
815 set string [string range "$string" [expr $foo + 1] end]
816 set multi_line_re "$multi_line_re.*\[\r\n\] *>"
821 if { "$string" != "" } {
822 if { [send_gdb "$string"] != "" } {
825 if { ! $suppress_flag } {
826 perror "Couldn't send $command to GDB."
835 -re ".*A problem internal to GDB has been detected" {
836 fail "$message (GDB internal error)"
837 gdb_internal_error_resync
840 -re "\\*\\*\\* DOSEXIT code.*" {
841 if { $message != "" } {
844 gdb_suppress_entire_file "GDB died"
848 append code $processed_code
850 # Reset the spawn id, in case the processed code used -i.
853 -re "Ending remote debugging.*$gdb_prompt $" {
854 if ![isnative] then {
855 warning "Can`t communicate to remote target."
861 -re "Undefined\[a-z\]* command:.*$gdb_prompt $" {
862 perror "Undefined command \"$command\"."
866 -re "Ambiguous command.*$gdb_prompt $" {
867 perror "\"$command\" is not a unique command name."
871 -re "$inferior_exited_re with code \[0-9\]+.*$gdb_prompt $" {
872 if ![string match "" $message] then {
873 set errmsg "$message (the program exited)"
875 set errmsg "$command (the program exited)"
880 -re "$inferior_exited_re normally.*$gdb_prompt $" {
881 if ![string match "" $message] then {
882 set errmsg "$message (the program exited)"
884 set errmsg "$command (the program exited)"
889 -re "The program is not being run.*$gdb_prompt $" {
890 if ![string match "" $message] then {
891 set errmsg "$message (the program is no longer running)"
893 set errmsg "$command (the program is no longer running)"
898 -re "\r\n$gdb_prompt $" {
899 if ![string match "" $message] then {
904 -re "$pagination_prompt" {
906 perror "Window too small."
910 -re "\\((y or n|y or \\\[n\\\]|\\\[y\\\] or n)\\) " {
912 gdb_expect -re "$gdb_prompt $"
913 fail "$message (got interactive prompt)"
916 -re "\\\[0\\\] cancel\r\n\\\[1\\\] all.*\r\n> $" {
918 gdb_expect -re "$gdb_prompt $"
919 fail "$message (got breakpoint menu)"
923 # Patterns below apply to any spawn id specified.
926 perror "Process no longer exists"
927 if { $message != "" } {
933 perror "internal buffer is full."
938 if ![string match "" $message] then {
939 fail "$message (timeout)"
946 set code [catch {gdb_expect $code} string]
948 global errorInfo errorCode
949 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
950 } elseif {$code > 1} {
951 return -code $code $string
956 # gdb_test COMMAND PATTERN MESSAGE QUESTION RESPONSE
957 # Send a command to gdb; test the result.
959 # COMMAND is the command to execute, send to GDB with send_gdb. If
960 # this is the null string no command is sent.
961 # PATTERN is the pattern to match for a PASS, and must NOT include
962 # the \r\n sequence immediately before the gdb prompt. This argument
963 # may be omitted to just match the prompt, ignoring whatever output
965 # MESSAGE is an optional message to be printed. If this is
966 # omitted, then the pass/fail messages use the command string as the
967 # message. (If this is the empty string, then sometimes we don't
968 # call pass or fail at all; I don't understand this at all.)
969 # QUESTION is a question GDB may ask in response to COMMAND, like
971 # RESPONSE is the response to send if QUESTION appears.
974 # 1 if the test failed,
975 # 0 if the test passes,
976 # -1 if there was an internal error.
978 proc gdb_test { args } {
980 upvar timeout timeout
982 if [llength $args]>2 then {
983 set message [lindex $args 2]
985 set message [lindex $args 0]
987 set command [lindex $args 0]
988 set pattern [lindex $args 1]
990 if [llength $args]==5 {
991 set question_string [lindex $args 3]
992 set response_string [lindex $args 4]
994 set question_string "^FOOBAR$"
997 return [gdb_test_multiple $command $message {
998 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
999 if ![string match "" $message] then {
1003 -re "(${question_string})$" {
1004 send_gdb "$response_string\n"
1010 # gdb_test_no_output COMMAND MESSAGE
1011 # Send a command to GDB and verify that this command generated no output.
1013 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
1014 # parameters. If MESSAGE is ommitted, then COMMAND will be used as
1015 # the message. (If MESSAGE is the empty string, then sometimes we do not
1016 # call pass or fail at all; I don't understand this at all.)
1018 proc gdb_test_no_output { args } {
1020 set command [lindex $args 0]
1021 if [llength $args]>1 then {
1022 set message [lindex $args 1]
1024 set message $command
1027 set command_regex [string_to_regexp $command]
1028 gdb_test_multiple $command $message {
1029 -re "^$command_regex\r\n$gdb_prompt $" {
1030 if ![string match "" $message] then {
1037 # Send a command and then wait for a sequence of outputs.
1038 # This is useful when the sequence is long and contains ".*", a single
1039 # regexp to match the entire output can get a timeout much easier.
1041 # COMMAND is the command to send.
1042 # TEST_NAME is passed to pass/fail. COMMAND is used if TEST_NAME is "".
1043 # EXPECTED_OUTPUT_LIST is a list of regexps of expected output, which are
1044 # processed in order, and all must be present in the output.
1046 # It is unnecessary to specify ".*" at the beginning or end of any regexp,
1047 # there is an implicit ".*" between each element of EXPECTED_OUTPUT_LIST.
1048 # There is also an implicit ".*" between the last regexp and the gdb prompt.
1050 # Like gdb_test and gdb_test_multiple, the output is expected to end with the
1051 # gdb prompt, which must not be specified in EXPECTED_OUTPUT_LIST.
1054 # 1 if the test failed,
1055 # 0 if the test passes,
1056 # -1 if there was an internal error.
1058 proc gdb_test_sequence { command test_name expected_output_list } {
1060 if { $test_name == "" } {
1061 set test_name $command
1063 lappend expected_output_list ""; # implicit ".*" before gdb prompt
1064 send_gdb "$command\n"
1065 return [gdb_expect_list $test_name "$gdb_prompt $" $expected_output_list]
1069 # Test that a command gives an error. For pass or fail, return
1070 # a 1 to indicate that more tests can proceed. However a timeout
1071 # is a serious error, generates a special fail message, and causes
1072 # a 0 to be returned to indicate that more tests are likely to fail
1075 proc test_print_reject { args } {
1079 if [llength $args]==2 then {
1080 set expectthis [lindex $args 1]
1082 set expectthis "should never match this bogus string"
1084 set sendthis [lindex $args 0]
1085 if $verbose>2 then {
1086 send_user "Sending \"$sendthis\" to gdb\n"
1087 send_user "Looking to match \"$expectthis\"\n"
1089 send_gdb "$sendthis\n"
1090 #FIXME: Should add timeout as parameter.
1092 -re "A .* in expression.*\\.*$gdb_prompt $" {
1093 pass "reject $sendthis"
1096 -re "Invalid syntax in expression.*$gdb_prompt $" {
1097 pass "reject $sendthis"
1100 -re "Junk after end of expression.*$gdb_prompt $" {
1101 pass "reject $sendthis"
1104 -re "Invalid number.*$gdb_prompt $" {
1105 pass "reject $sendthis"
1108 -re "Invalid character constant.*$gdb_prompt $" {
1109 pass "reject $sendthis"
1112 -re "No symbol table is loaded.*$gdb_prompt $" {
1113 pass "reject $sendthis"
1116 -re "No symbol .* in current context.*$gdb_prompt $" {
1117 pass "reject $sendthis"
1120 -re "Unmatched single quote.*$gdb_prompt $" {
1121 pass "reject $sendthis"
1124 -re "A character constant must contain at least one character.*$gdb_prompt $" {
1125 pass "reject $sendthis"
1128 -re "$expectthis.*$gdb_prompt $" {
1129 pass "reject $sendthis"
1132 -re ".*$gdb_prompt $" {
1133 fail "reject $sendthis"
1137 fail "reject $sendthis (eof or timeout)"
1144 # Same as gdb_test, but the second parameter is not a regexp,
1145 # but a string that must match exactly.
1147 proc gdb_test_exact { args } {
1148 upvar timeout timeout
1150 set command [lindex $args 0]
1152 # This applies a special meaning to a null string pattern. Without
1153 # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
1154 # messages from commands that should have no output except a new
1155 # prompt. With this, only results of a null string will match a null
1158 set pattern [lindex $args 1]
1159 if [string match $pattern ""] {
1160 set pattern [string_to_regexp [lindex $args 0]]
1162 set pattern [string_to_regexp [lindex $args 1]]
1165 # It is most natural to write the pattern argument with only
1166 # embedded \n's, especially if you are trying to avoid Tcl quoting
1167 # problems. But gdb_expect really wants to see \r\n in patterns. So
1168 # transform the pattern here. First transform \r\n back to \n, in
1169 # case some users of gdb_test_exact already do the right thing.
1170 regsub -all "\r\n" $pattern "\n" pattern
1171 regsub -all "\n" $pattern "\r\n" pattern
1172 if [llength $args]==3 then {
1173 set message [lindex $args 2]
1175 set message $command
1178 return [gdb_test $command $pattern $message]
1181 # Wrapper around gdb_test_multiple that looks for a list of expected
1182 # output elements, but which can appear in any order.
1183 # CMD is the gdb command.
1184 # NAME is the name of the test.
1185 # ELM_FIND_REGEXP specifies how to partition the output into elements to
1187 # ELM_EXTRACT_REGEXP specifies the part of ELM_FIND_REGEXP to compare.
1188 # RESULT_MATCH_LIST is a list of exact matches for each expected element.
1189 # All elements of RESULT_MATCH_LIST must appear for the test to pass.
1191 # A typical use of ELM_FIND_REGEXP/ELM_EXTRACT_REGEXP is to extract one line
1192 # of text per element and then strip trailing \r\n's.
1194 # gdb_test_list_exact "foo" "bar" \
1195 # "\[^\r\n\]+\[\r\n\]+" \
1198 # {expected result 1} \
1199 # {expected result 2} \
1202 proc gdb_test_list_exact { cmd name elm_find_regexp elm_extract_regexp result_match_list } {
1205 set matches [lsort $result_match_list]
1207 gdb_test_multiple $cmd $name {
1208 "$cmd\[\r\n\]" { exp_continue }
1209 -re $elm_find_regexp {
1210 set str $expect_out(0,string)
1211 verbose -log "seen: $str" 3
1212 regexp -- $elm_extract_regexp $str elm_seen
1213 verbose -log "extracted: $elm_seen" 3
1214 lappend seen $elm_seen
1217 -re "$gdb_prompt $" {
1219 foreach got [lsort $seen] have $matches {
1220 if {![string equal $got $have]} {
1225 if {[string length $failed] != 0} {
1226 fail "$name ($failed not found)"
1234 # gdb_test_stdio COMMAND INFERIOR_PATTERN GDB_PATTERN MESSAGE
1235 # Send a command to gdb; expect inferior and gdb output.
1237 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
1240 # INFERIOR_PATTERN is the pattern to match against inferior output.
1242 # GDB_PATTERN is the pattern to match against gdb output, and must NOT
1243 # include the \r\n sequence immediately before the gdb prompt, nor the
1244 # prompt. The default is empty.
1246 # Both inferior and gdb patterns must match for a PASS.
1248 # If MESSAGE is ommitted, then COMMAND will be used as the message.
1251 # 1 if the test failed,
1252 # 0 if the test passes,
1253 # -1 if there was an internal error.
1256 proc gdb_test_stdio {command inferior_pattern {gdb_pattern ""} {message ""}} {
1257 global inferior_spawn_id gdb_spawn_id
1260 if {$message == ""} {
1261 set message $command
1264 set inferior_matched 0
1267 # Use an indirect spawn id list, and remove the inferior spawn id
1268 # from the expected output as soon as it matches, in case
1269 # $inferior_pattern happens to be a prefix of the resulting full
1270 # gdb pattern below (e.g., "\r\n").
1271 global gdb_test_stdio_spawn_id_list
1272 set gdb_test_stdio_spawn_id_list "$inferior_spawn_id"
1274 # Note that if $inferior_spawn_id and $gdb_spawn_id are different,
1275 # then we may see gdb's output arriving before the inferior's
1277 set res [gdb_test_multiple $command $message {
1278 -i gdb_test_stdio_spawn_id_list -re "$inferior_pattern" {
1279 set inferior_matched 1
1280 if {!$gdb_matched} {
1281 set gdb_test_stdio_spawn_id_list ""
1285 -i $gdb_spawn_id -re "$gdb_pattern\r\n$gdb_prompt $" {
1287 if {!$inferior_matched} {
1295 verbose -log "inferior_matched=$inferior_matched, gdb_matched=$gdb_matched"
1302 # Issue a PASS and return true if evaluating CONDITION in the caller's
1303 # frame returns true, and issue a FAIL and return false otherwise.
1304 # MESSAGE is the pass/fail message to be printed. If MESSAGE is
1305 # omitted or is empty, then the pass/fail messages use the condition
1306 # string as the message.
1308 proc gdb_assert { condition {message ""} } {
1309 if { $message == ""} {
1310 set message $condition
1313 set res [uplevel 1 expr $condition]
1322 proc gdb_reinitialize_dir { subdir } {
1325 if [is_remote host] {
1330 -re "Reinitialize source path to empty.*y or n. " {
1333 -re "Source directories searched.*$gdb_prompt $" {
1334 send_gdb "dir $subdir\n"
1336 -re "Source directories searched.*$gdb_prompt $" {
1337 verbose "Dir set to $subdir"
1339 -re "$gdb_prompt $" {
1340 perror "Dir \"$subdir\" failed."
1344 -re "$gdb_prompt $" {
1345 perror "Dir \"$subdir\" failed."
1349 -re "$gdb_prompt $" {
1350 perror "Dir \"$subdir\" failed."
1356 # gdb_exit -- exit the GDB, killing the target program if necessary
1358 proc default_gdb_exit {} {
1360 global INTERNAL_GDBFLAGS GDBFLAGS
1362 global gdb_spawn_id inferior_spawn_id
1363 global inotify_log_file
1365 gdb_stop_suppressing_tests
1367 if ![info exists gdb_spawn_id] {
1371 verbose "Quitting $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1373 if {[info exists inotify_log_file] && [file exists $inotify_log_file]} {
1374 set fd [open $inotify_log_file]
1375 set data [read -nonewline $fd]
1378 if {[string compare $data ""] != 0} {
1379 warning "parallel-unsafe file creations noticed"
1382 set fd [open $inotify_log_file w]
1387 if { [is_remote host] && [board_info host exists fileid] } {
1394 -re "DOSEXIT code" { }
1399 if ![is_remote host] {
1403 unset inferior_spawn_id
1406 # Load a file into the debugger.
1407 # The return value is 0 for success, -1 for failure.
1409 # This procedure also set the global variable GDB_FILE_CMD_DEBUG_INFO
1410 # to one of these values:
1412 # debug file was loaded successfully and has debug information
1413 # nodebug file was loaded successfully and has no debug information
1414 # lzma file was loaded, .gnu_debugdata found, but no LZMA support
1416 # fail file was not loaded
1418 # I tried returning this information as part of the return value,
1419 # but ran into a mess because of the many re-implementations of
1420 # gdb_load in config/*.exp.
1422 # TODO: gdb.base/sepdebug.exp and gdb.stabs/weird.exp might be able to use
1423 # this if they can get more information set.
1425 proc gdb_file_cmd { arg } {
1429 global last_loaded_file
1431 # Save this for the benefit of gdbserver-support.exp.
1432 set last_loaded_file $arg
1434 # Set whether debug info was found.
1435 # Default to "fail".
1436 global gdb_file_cmd_debug_info
1437 set gdb_file_cmd_debug_info "fail"
1439 if [is_remote host] {
1440 set arg [remote_download host $arg]
1442 perror "download failed"
1447 # The file command used to kill the remote target. For the benefit
1448 # of the testsuite, preserve this behavior.
1451 -re "Kill the program being debugged. .y or n. $" {
1453 verbose "\t\tKilling previous program being debugged"
1456 -re "$gdb_prompt $" {
1461 send_gdb "file $arg\n"
1463 -re "Reading symbols from.*LZMA support was disabled.*done.*$gdb_prompt $" {
1464 verbose "\t\tLoaded $arg into $GDB; .gnu_debugdata found but no LZMA available"
1465 set gdb_file_cmd_debug_info "lzma"
1468 -re "Reading symbols from.*no debugging symbols found.*done.*$gdb_prompt $" {
1469 verbose "\t\tLoaded $arg into $GDB with no debugging symbols"
1470 set gdb_file_cmd_debug_info "nodebug"
1473 -re "Reading symbols from.*done.*$gdb_prompt $" {
1474 verbose "\t\tLoaded $arg into $GDB"
1475 set gdb_file_cmd_debug_info "debug"
1478 -re "Load new symbol table from \".*\".*y or n. $" {
1481 -re "Reading symbols from.*done.*$gdb_prompt $" {
1482 verbose "\t\tLoaded $arg with new symbol table into $GDB"
1483 set gdb_file_cmd_debug_info "debug"
1487 perror "Couldn't load $arg, other program already loaded (timeout)."
1491 perror "Couldn't load $arg, other program already loaded (eof)."
1496 -re "No such file or directory.*$gdb_prompt $" {
1497 perror "($arg) No such file or directory"
1500 -re "A problem internal to GDB has been detected" {
1501 fail "($arg) (GDB internal error)"
1502 gdb_internal_error_resync
1505 -re "$gdb_prompt $" {
1506 perror "Couldn't load $arg into $GDB."
1510 perror "Couldn't load $arg into $GDB (timeout)."
1514 # This is an attempt to detect a core dump, but seems not to
1515 # work. Perhaps we need to match .* followed by eof, in which
1516 # gdb_expect does not seem to have a way to do that.
1517 perror "Couldn't load $arg into $GDB (eof)."
1523 # Default gdb_spawn procedure.
1525 proc default_gdb_spawn { } {
1528 global INTERNAL_GDBFLAGS GDBFLAGS
1531 gdb_stop_suppressing_tests
1533 # Set the default value, it may be overriden later by specific testfile.
1535 # Use `set_board_info use_gdb_stub' for the board file to flag the inferior
1536 # is already started after connecting and run/attach are not supported.
1537 # This is used for the "remote" protocol. After GDB starts you should
1538 # check global $use_gdb_stub instead of the board as the testfile may force
1539 # a specific different target protocol itself.
1540 set use_gdb_stub [target_info exists use_gdb_stub]
1542 verbose "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1544 if [info exists gdb_spawn_id] {
1548 if ![is_remote host] {
1549 if { [which $GDB] == 0 } then {
1550 perror "$GDB does not exist."
1554 set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS [host_info gdb_opts]"]
1555 if { $res < 0 || $res == "" } {
1556 perror "Spawning $GDB failed."
1560 set gdb_spawn_id $res
1564 # Default gdb_start procedure.
1566 proc default_gdb_start { } {
1567 global gdb_prompt pagination_prompt
1569 global inferior_spawn_id
1571 if [info exists gdb_spawn_id] {
1580 # Default to assuming inferior I/O is done on GDB's terminal.
1581 if {![info exists inferior_spawn_id]} {
1582 set inferior_spawn_id $gdb_spawn_id
1585 # When running over NFS, particularly if running many simultaneous
1586 # tests on different hosts all using the same server, things can
1587 # get really slow. Give gdb at least 3 minutes to start up.
1589 while { $loop_again } {
1592 -re "$pagination_prompt" {
1593 verbose "Hit pagination during startup. Pressing enter to continue."
1597 -re "\[\r\n\]$gdb_prompt $" {
1598 verbose "GDB initialized."
1600 -re "$gdb_prompt $" {
1601 perror "GDB never initialized."
1606 perror "(timeout) GDB never initialized after 10 seconds."
1614 # force the height to "unlimited", so no pagers get used
1616 send_gdb "set height 0\n"
1618 -re "$gdb_prompt $" {
1619 verbose "Setting height to 0." 2
1622 warning "Couldn't set the height to 0"
1625 # force the width to "unlimited", so no wraparound occurs
1626 send_gdb "set width 0\n"
1628 -re "$gdb_prompt $" {
1629 verbose "Setting width to 0." 2
1632 warning "Couldn't set the width to 0."
1638 # Utility procedure to give user control of the gdb prompt in a script. It is
1639 # meant to be used for debugging test cases, and should not be left in the
1642 proc gdb_interact { } {
1644 set spawn_id $gdb_spawn_id
1646 send_user "+------------------------------------------+\n"
1647 send_user "| Script interrupted, you can now interact |\n"
1648 send_user "| with by gdb. Type >>> to continue. |\n"
1649 send_user "+------------------------------------------+\n"
1656 # Examine the output of compilation to determine whether compilation
1657 # failed or not. If it failed determine whether it is due to missing
1658 # compiler or due to compiler error. Report pass, fail or unsupported
1661 proc gdb_compile_test {src output} {
1662 if { $output == "" } {
1663 pass "compilation [file tail $src]"
1664 } elseif { [regexp {^[a-zA-Z_0-9]+: Can't find [^ ]+\.$} $output] } {
1665 unsupported "compilation [file tail $src]"
1666 } elseif { [regexp {.*: command not found[\r|\n]*$} $output] } {
1667 unsupported "compilation [file tail $src]"
1668 } elseif { [regexp {.*: [^\r\n]*compiler not installed[^\r\n]*[\r|\n]*$} $output] } {
1669 unsupported "compilation [file tail $src]"
1671 verbose -log "compilation failed: $output" 2
1672 fail "compilation [file tail $src]"
1676 # Return a 1 for configurations for which we don't even want to try to
1679 proc skip_cplus_tests {} {
1680 if { [istarget "h8300-*-*"] } {
1684 # The C++ IO streams are too large for HC11/HC12 and are thus not
1685 # available. The gdb C++ tests use them and don't compile.
1686 if { [istarget "m6811-*-*"] } {
1689 if { [istarget "m6812-*-*"] } {
1695 # Return a 1 for configurations for which don't have both C++ and the STL.
1697 proc skip_stl_tests {} {
1698 # Symbian supports the C++ language, but the STL is missing
1699 # (both headers and libraries).
1700 if { [istarget "arm*-*-symbianelf*"] } {
1704 return [skip_cplus_tests]
1707 # Return a 1 if I don't even want to try to test FORTRAN.
1709 proc skip_fortran_tests {} {
1713 # Return a 1 if I don't even want to try to test ada.
1715 proc skip_ada_tests {} {
1719 # Return a 1 if I don't even want to try to test GO.
1721 proc skip_go_tests {} {
1725 # Return a 1 if I don't even want to try to test D.
1727 proc skip_d_tests {} {
1731 # Return 1 to skip Rust tests, 0 to try them.
1732 proc skip_rust_tests {} {
1733 return [expr {![isnative]}]
1736 # Return a 1 for configurations that do not support Python scripting.
1737 # PROMPT_REGEXP is the expected prompt.
1739 proc skip_python_tests_prompt { prompt_regexp } {
1740 global gdb_py_is_py3k
1741 global gdb_py_is_py24
1743 gdb_test_multiple "python print ('test')" "verify python support" {
1744 -re "not supported.*$prompt_regexp" {
1745 unsupported "Python support is disabled."
1748 -re "$prompt_regexp" {}
1751 set gdb_py_is_py24 0
1752 gdb_test_multiple "python print (sys.version_info\[0\])" "check if python 3" {
1753 -re "3.*$prompt_regexp" {
1754 set gdb_py_is_py3k 1
1756 -re ".*$prompt_regexp" {
1757 set gdb_py_is_py3k 0
1760 if { $gdb_py_is_py3k == 0 } {
1761 gdb_test_multiple "python print (sys.version_info\[1\])" "check if python 2.4" {
1762 -re "\[45\].*$prompt_regexp" {
1763 set gdb_py_is_py24 1
1765 -re ".*$prompt_regexp" {
1766 set gdb_py_is_py24 0
1774 # Return a 1 for configurations that do not support Python scripting.
1775 # Note: This also sets various globals that specify which version of Python
1776 # is in use. See skip_python_tests_prompt.
1778 proc skip_python_tests {} {
1780 return [skip_python_tests_prompt "$gdb_prompt $"]
1783 # Return a 1 if we should skip shared library tests.
1785 proc skip_shlib_tests {} {
1786 # Run the shared library tests on native systems.
1791 # An abbreviated list of remote targets where we should be able to
1792 # run shared library tests.
1793 if {([istarget *-*-linux*]
1794 || [istarget *-*-*bsd*]
1795 || [istarget *-*-solaris2*]
1796 || [istarget arm*-*-symbianelf*]
1797 || [istarget *-*-mingw*]
1798 || [istarget *-*-cygwin*]
1799 || [istarget *-*-pe*])} {
1806 # Return 1 if we should skip tui related tests.
1808 proc skip_tui_tests {} {
1811 gdb_test_multiple "help layout" "verify tui support" {
1812 -re "Undefined command: \"layout\".*$gdb_prompt $" {
1815 -re "$gdb_prompt $" {
1822 # Test files shall make sure all the test result lines in gdb.sum are
1823 # unique in a test run, so that comparing the gdb.sum files of two
1824 # test runs gives correct results. Test files that exercise
1825 # variations of the same tests more than once, shall prefix the
1826 # different test invocations with different identifying strings in
1827 # order to make them unique.
1829 # About test prefixes:
1831 # $pf_prefix is the string that dejagnu prints after the result (FAIL,
1832 # PASS, etc.), and before the test message/name in gdb.sum. E.g., the
1833 # underlined substring in
1835 # PASS: gdb.base/mytest.exp: some test
1836 # ^^^^^^^^^^^^^^^^^^^^
1840 # The easiest way to adjust the test prefix is to append a test
1841 # variation prefix to the $pf_prefix, using the with_test_prefix
1844 # proc do_tests {} {
1845 # gdb_test ... ... "test foo"
1846 # gdb_test ... ... "test bar"
1848 # with_test_prefix "subvariation a" {
1849 # gdb_test ... ... "test x"
1852 # with_test_prefix "subvariation b" {
1853 # gdb_test ... ... "test x"
1857 # with_test_prefix "variation1" {
1858 # ...do setup for variation 1...
1862 # with_test_prefix "variation2" {
1863 # ...do setup for variation 2...
1869 # PASS: gdb.base/mytest.exp: variation1: test foo
1870 # PASS: gdb.base/mytest.exp: variation1: test bar
1871 # PASS: gdb.base/mytest.exp: variation1: subvariation a: test x
1872 # PASS: gdb.base/mytest.exp: variation1: subvariation b: test x
1873 # PASS: gdb.base/mytest.exp: variation2: test foo
1874 # PASS: gdb.base/mytest.exp: variation2: test bar
1875 # PASS: gdb.base/mytest.exp: variation2: subvariation a: test x
1876 # PASS: gdb.base/mytest.exp: variation2: subvariation b: test x
1878 # If for some reason more flexibility is necessary, one can also
1879 # manipulate the pf_prefix global directly, treating it as a string.
1883 # set saved_pf_prefix
1884 # append pf_prefix "${foo}: bar"
1885 # ... actual tests ...
1886 # set pf_prefix $saved_pf_prefix
1889 # Run BODY in the context of the caller, with the current test prefix
1890 # (pf_prefix) appended with one space, then PREFIX, and then a colon.
1891 # Returns the result of BODY.
1893 proc with_test_prefix { prefix body } {
1896 set saved $pf_prefix
1897 append pf_prefix " " $prefix ":"
1898 set code [catch {uplevel 1 $body} result]
1899 set pf_prefix $saved
1902 global errorInfo errorCode
1903 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
1905 return -code $code $result
1909 # Wrapper for foreach that calls with_test_prefix on each iteration,
1910 # including the iterator's name and current value in the prefix.
1912 proc foreach_with_prefix {var list body} {
1914 foreach myvar $list {
1915 with_test_prefix "$var=$myvar" {
1921 # Like TCL's native proc, but defines a procedure that wraps its body
1922 # within 'with_test_prefix "$proc_name" { ... }'.
1923 proc proc_with_prefix {name arguments body} {
1924 # Define the advertised proc.
1925 proc $name $arguments [list with_test_prefix $name $body]
1929 # Run BODY in the context of the caller. After BODY is run, the variables
1930 # listed in VARS will be reset to the values they had before BODY was run.
1932 # This is useful for providing a scope in which it is safe to temporarily
1933 # modify global variables, e.g.
1935 # global INTERNAL_GDBFLAGS
1938 # set foo GDBHISTSIZE
1940 # save_vars { INTERNAL_GDBFLAGS env($foo) env(HOME) } {
1941 # append INTERNAL_GDBFLAGS " -nx"
1942 # unset -nocomplain env(GDBHISTSIZE)
1947 # Here, although INTERNAL_GDBFLAGS, env(GDBHISTSIZE) and env(HOME) may be
1948 # modified inside BODY, this proc guarantees that the modifications will be
1949 # undone after BODY finishes executing.
1951 proc save_vars { vars body } {
1952 array set saved_scalars { }
1953 array set saved_arrays { }
1957 # First evaluate VAR in the context of the caller in case the variable
1958 # name may be a not-yet-interpolated string like env($foo)
1959 set var [uplevel 1 list $var]
1961 if [uplevel 1 [list info exists $var]] {
1962 if [uplevel 1 [list array exists $var]] {
1963 set saved_arrays($var) [uplevel 1 [list array get $var]]
1965 set saved_scalars($var) [uplevel 1 [list set $var]]
1968 lappend unset_vars $var
1972 set code [catch {uplevel 1 $body} result]
1974 foreach {var value} [array get saved_scalars] {
1975 uplevel 1 [list set $var $value]
1978 foreach {var value} [array get saved_arrays] {
1979 uplevel 1 [list unset $var]
1980 uplevel 1 [list array set $var $value]
1983 foreach var $unset_vars {
1984 uplevel 1 [list unset -nocomplain $var]
1988 global errorInfo errorCode
1989 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
1991 return -code $code $result
1996 # Run tests in BODY with GDB prompt and variable $gdb_prompt set to
1997 # PROMPT. When BODY is finished, restore GDB prompt and variable
1999 # Returns the result of BODY.
2003 # 1) If you want to use, for example, "(foo)" as the prompt you must pass it
2004 # as "(foo)", and not the regexp form "\(foo\)" (expressed as "\\(foo\\)" in
2005 # TCL). PROMPT is internally converted to a suitable regexp for matching.
2006 # We do the conversion from "(foo)" to "\(foo\)" here for a few reasons:
2007 # a) It's more intuitive for callers to pass the plain text form.
2008 # b) We need two forms of the prompt:
2009 # - a regexp to use in output matching,
2010 # - a value to pass to the "set prompt" command.
2011 # c) It's easier to convert the plain text form to its regexp form.
2013 # 2) Don't add a trailing space, we do that here.
2015 proc with_gdb_prompt { prompt body } {
2018 # Convert "(foo)" to "\(foo\)".
2019 # We don't use string_to_regexp because while it works today it's not
2020 # clear it will work tomorrow: the value we need must work as both a
2021 # regexp *and* as the argument to the "set prompt" command, at least until
2022 # we start recording both forms separately instead of just $gdb_prompt.
2023 # The testsuite is pretty-much hardwired to interpret $gdb_prompt as the
2025 regsub -all {[]*+.|()^$\[\\]} $prompt {\\&} prompt
2027 set saved $gdb_prompt
2029 verbose -log "Setting gdb prompt to \"$prompt \"."
2030 set gdb_prompt $prompt
2031 gdb_test_no_output "set prompt $prompt " ""
2033 set code [catch {uplevel 1 $body} result]
2035 verbose -log "Restoring gdb prompt to \"$saved \"."
2036 set gdb_prompt $saved
2037 gdb_test_no_output "set prompt $saved " ""
2040 global errorInfo errorCode
2041 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2043 return -code $code $result
2047 # Run tests in BODY with target-charset setting to TARGET_CHARSET. When
2048 # BODY is finished, restore target-charset.
2050 proc with_target_charset { target_charset body } {
2054 gdb_test_multiple "show target-charset" "" {
2055 -re "The target character set is \".*; currently (.*)\"\..*$gdb_prompt " {
2056 set saved $expect_out(1,string)
2058 -re "The target character set is \"(.*)\".*$gdb_prompt " {
2059 set saved $expect_out(1,string)
2061 -re ".*$gdb_prompt " {
2062 fail "get target-charset"
2066 gdb_test_no_output "set target-charset $target_charset" ""
2068 set code [catch {uplevel 1 $body} result]
2070 gdb_test_no_output "set target-charset $saved" ""
2073 global errorInfo errorCode
2074 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2076 return -code $code $result
2080 # Switch the default spawn id to SPAWN_ID, so that gdb_test,
2081 # mi_gdb_test etc. default to using it.
2083 proc switch_gdb_spawn_id {spawn_id} {
2085 global board board_info
2087 set gdb_spawn_id $spawn_id
2088 set board [host_info name]
2089 set board_info($board,fileid) $spawn_id
2092 # Clear the default spawn id.
2094 proc clear_gdb_spawn_id {} {
2096 global board board_info
2098 unset -nocomplain gdb_spawn_id
2099 set board [host_info name]
2100 unset -nocomplain board_info($board,fileid)
2103 # Run BODY with SPAWN_ID as current spawn id.
2105 proc with_spawn_id { spawn_id body } {
2108 if [info exists gdb_spawn_id] {
2109 set saved_spawn_id $gdb_spawn_id
2112 switch_gdb_spawn_id $spawn_id
2114 set code [catch {uplevel 1 $body} result]
2116 if [info exists saved_spawn_id] {
2117 switch_gdb_spawn_id $saved_spawn_id
2123 global errorInfo errorCode
2124 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2126 return -code $code $result
2130 # Select the largest timeout from all the timeouts:
2131 # - the local "timeout" variable of the scope two levels above,
2132 # - the global "timeout" variable,
2133 # - the board variable "gdb,timeout".
2135 proc get_largest_timeout {} {
2136 upvar #0 timeout gtimeout
2137 upvar 2 timeout timeout
2140 if [info exists timeout] {
2143 if { [info exists gtimeout] && $gtimeout > $tmt } {
2146 if { [target_info exists gdb,timeout]
2147 && [target_info gdb,timeout] > $tmt } {
2148 set tmt [target_info gdb,timeout]
2158 # Run tests in BODY with timeout increased by factor of FACTOR. When
2159 # BODY is finished, restore timeout.
2161 proc with_timeout_factor { factor body } {
2164 set savedtimeout $timeout
2166 set timeout [expr [get_largest_timeout] * $factor]
2167 set code [catch {uplevel 1 $body} result]
2169 set timeout $savedtimeout
2171 global errorInfo errorCode
2172 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2174 return -code $code $result
2178 # Return 1 if _Complex types are supported, otherwise, return 0.
2180 gdb_caching_proc support_complex_tests {
2182 if { [gdb_skip_float_test] } {
2183 # If floating point is not supported, _Complex is not
2188 # Set up, compile, and execute a test program containing _Complex types.
2189 # Include the current process ID in the file names to prevent conflicts
2190 # with invocations for multiple testsuites.
2191 set src [standard_temp_file complex[pid].c]
2192 set exe [standard_temp_file complex[pid].x]
2194 gdb_produce_source $src {
2198 _Complex long double cld;
2203 verbose "compiling testfile $src" 2
2204 set compile_flags {debug nowarnings quiet}
2205 set lines [gdb_compile $src $exe executable $compile_flags]
2209 if ![string match "" $lines] then {
2210 verbose "testfile compilation failed, returning 0" 2
2219 # Return 1 if GDB can get a type for siginfo from the target, otherwise
2222 proc supports_get_siginfo_type {} {
2223 if { [istarget "*-*-linux*"] } {
2230 # Return 1 if the target supports hardware single stepping.
2232 proc can_hardware_single_step {} {
2234 if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
2235 || [istarget "tic6x-*-*"] || [istarget "sparc*-*-linux*"]
2236 || [istarget "nios2-*-*"] } {
2243 # Return 1 if target hardware or OS supports single stepping to signal
2244 # handler, otherwise, return 0.
2246 proc can_single_step_to_signal_handler {} {
2247 # Targets don't have hardware single step. On these targets, when
2248 # a signal is delivered during software single step, gdb is unable
2249 # to determine the next instruction addresses, because start of signal
2250 # handler is one of them.
2251 return [can_hardware_single_step]
2254 # Return 1 if target supports process record, otherwise return 0.
2256 proc supports_process_record {} {
2258 if [target_info exists gdb,use_precord] {
2259 return [target_info gdb,use_precord]
2262 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2263 || [istarget "i\[34567\]86-*-linux*"]
2264 || [istarget "aarch64*-*-linux*"]
2265 || [istarget "powerpc*-*-linux*"]
2266 || [istarget "s390*-*-linux*"] } {
2273 # Return 1 if target supports reverse debugging, otherwise return 0.
2275 proc supports_reverse {} {
2277 if [target_info exists gdb,can_reverse] {
2278 return [target_info gdb,can_reverse]
2281 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2282 || [istarget "i\[34567\]86-*-linux*"]
2283 || [istarget "aarch64*-*-linux*"]
2284 || [istarget "powerpc*-*-linux*"]
2285 || [istarget "s390*-*-linux*"] } {
2292 # Return 1 if readline library is used.
2294 proc readline_is_used { } {
2297 gdb_test_multiple "show editing" "" {
2298 -re ".*Editing of command lines as they are typed is on\..*$gdb_prompt $" {
2301 -re ".*$gdb_prompt $" {
2307 # Return 1 if target is ELF.
2308 gdb_caching_proc is_elf_target {
2309 set me "is_elf_target"
2311 set src [standard_temp_file is_elf_target[pid].c]
2312 set obj [standard_temp_file is_elf_target[pid].o]
2314 gdb_produce_source $src {
2315 int foo () {return 0;}
2318 verbose "$me: compiling testfile $src" 2
2319 set lines [gdb_compile $src $obj object {quiet}]
2323 if ![string match "" $lines] then {
2324 verbose "$me: testfile compilation failed, returning 0" 2
2328 set fp_obj [open $obj "r"]
2329 fconfigure $fp_obj -translation binary
2330 set data [read $fp_obj]
2335 set ELFMAG "\u007FELF"
2337 if {[string compare -length 4 $data $ELFMAG] != 0} {
2338 verbose "$me: returning 0" 2
2342 verbose "$me: returning 1" 2
2346 # Return 1 if the memory at address zero is readable.
2348 gdb_caching_proc is_address_zero_readable {
2352 gdb_test_multiple "x 0" "" {
2353 -re "Cannot access memory at address 0x0.*$gdb_prompt $" {
2356 -re ".*$gdb_prompt $" {
2364 # Produce source file NAME and write SOURCES into it.
2366 proc gdb_produce_source { name sources } {
2368 set f [open $name "w"]
2374 # Return 1 if target is ILP32.
2375 # This cannot be decided simply from looking at the target string,
2376 # as it might depend on externally passed compiler options like -m64.
2377 gdb_caching_proc is_ilp32_target {
2378 set me "is_ilp32_target"
2380 set src [standard_temp_file ilp32[pid].c]
2381 set obj [standard_temp_file ilp32[pid].o]
2383 gdb_produce_source $src {
2384 int dummy[sizeof (int) == 4
2385 && sizeof (void *) == 4
2386 && sizeof (long) == 4 ? 1 : -1];
2389 verbose "$me: compiling testfile $src" 2
2390 set lines [gdb_compile $src $obj object {quiet}]
2394 if ![string match "" $lines] then {
2395 verbose "$me: testfile compilation failed, returning 0" 2
2399 verbose "$me: returning 1" 2
2403 # Return 1 if target is LP64.
2404 # This cannot be decided simply from looking at the target string,
2405 # as it might depend on externally passed compiler options like -m64.
2406 gdb_caching_proc is_lp64_target {
2407 set me "is_lp64_target"
2409 set src [standard_temp_file lp64[pid].c]
2410 set obj [standard_temp_file lp64[pid].o]
2412 gdb_produce_source $src {
2413 int dummy[sizeof (int) == 4
2414 && sizeof (void *) == 8
2415 && sizeof (long) == 8 ? 1 : -1];
2418 verbose "$me: compiling testfile $src" 2
2419 set lines [gdb_compile $src $obj object {quiet}]
2423 if ![string match "" $lines] then {
2424 verbose "$me: testfile compilation failed, returning 0" 2
2428 verbose "$me: returning 1" 2
2432 # Return 1 if target has 64 bit addresses.
2433 # This cannot be decided simply from looking at the target string,
2434 # as it might depend on externally passed compiler options like -m64.
2435 gdb_caching_proc is_64_target {
2436 set me "is_64_target"
2438 set src [standard_temp_file is64[pid].c]
2439 set obj [standard_temp_file is64[pid].o]
2441 gdb_produce_source $src {
2442 int function(void) { return 3; }
2443 int dummy[sizeof (&function) == 8 ? 1 : -1];
2446 verbose "$me: compiling testfile $src" 2
2447 set lines [gdb_compile $src $obj object {quiet}]
2451 if ![string match "" $lines] then {
2452 verbose "$me: testfile compilation failed, returning 0" 2
2456 verbose "$me: returning 1" 2
2460 # Return 1 if target has x86_64 registers - either amd64 or x32.
2461 # x32 target identifies as x86_64-*-linux*, therefore it cannot be determined
2462 # just from the target string.
2463 gdb_caching_proc is_amd64_regs_target {
2464 if {![istarget "x86_64-*-*"] && ![istarget "i?86-*"]} {
2468 set me "is_amd64_regs_target"
2470 set src [standard_temp_file reg64[pid].s]
2471 set obj [standard_temp_file reg64[pid].o]
2475 {rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15} {
2476 lappend list "\tincq %$reg"
2478 gdb_produce_source $src [join $list \n]
2480 verbose "$me: compiling testfile $src" 2
2481 set lines [gdb_compile $src $obj object {quiet}]
2485 if ![string match "" $lines] then {
2486 verbose "$me: testfile compilation failed, returning 0" 2
2490 verbose "$me: returning 1" 2
2494 # Return 1 if this target is an x86 or x86-64 with -m32.
2495 proc is_x86_like_target {} {
2496 if {![istarget "x86_64-*-*"] && ![istarget i?86-*]} {
2499 return [expr [is_ilp32_target] && ![is_amd64_regs_target]]
2502 # Return 1 if this target is an arm or aarch32 on aarch64.
2504 gdb_caching_proc is_aarch32_target {
2505 if { [istarget "arm*-*-*"] } {
2509 if { ![istarget "aarch64*-*-*"] } {
2513 set me "is_aarch32_target"
2515 set src [standard_temp_file aarch32[pid].s]
2516 set obj [standard_temp_file aarch32[pid].o]
2521 lappend list "\tmov $reg, $reg"
2523 gdb_produce_source $src [join $list \n]
2525 verbose "$me: compiling testfile $src" 2
2526 set lines [gdb_compile $src $obj object {quiet}]
2530 if ![string match "" $lines] then {
2531 verbose "$me: testfile compilation failed, returning 0" 2
2535 verbose "$me: returning 1" 2
2539 # Return 1 if this target is an aarch64, either lp64 or ilp32.
2541 proc is_aarch64_target {} {
2542 if { ![istarget "aarch64*-*-*"] } {
2546 return [expr ![is_aarch32_target]]
2549 # Return 1 if displaced stepping is supported on target, otherwise, return 0.
2550 proc support_displaced_stepping {} {
2552 if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"]
2553 || [istarget "arm*-*-linux*"] || [istarget "powerpc-*-linux*"]
2554 || [istarget "powerpc64-*-linux*"] || [istarget "s390*-*-*"]
2555 || [istarget "aarch64*-*-linux*"] } {
2562 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2563 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2565 gdb_caching_proc skip_altivec_tests {
2566 global srcdir subdir gdb_prompt inferior_exited_re
2568 set me "skip_altivec_tests"
2570 # Some simulators are known to not support VMX instructions.
2571 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2572 verbose "$me: target known to not support VMX, returning 1" 2
2576 # Make sure we have a compiler that understands altivec.
2577 set compile_flags {debug nowarnings}
2578 if [get_compiler_info] {
2579 warning "Could not get compiler info"
2582 if [test_compiler_info gcc*] {
2583 set compile_flags "$compile_flags additional_flags=-maltivec"
2584 } elseif [test_compiler_info xlc*] {
2585 set compile_flags "$compile_flags additional_flags=-qaltivec"
2587 verbose "Could not compile with altivec support, returning 1" 2
2591 # Set up, compile, and execute a test program containing VMX instructions.
2592 # Include the current process ID in the file names to prevent conflicts
2593 # with invocations for multiple testsuites.
2594 set src [standard_temp_file vmx[pid].c]
2595 set exe [standard_temp_file vmx[pid].x]
2597 gdb_produce_source $src {
2600 asm volatile ("vor v0,v0,v0");
2602 asm volatile ("vor 0,0,0");
2608 verbose "$me: compiling testfile $src" 2
2609 set lines [gdb_compile $src $exe executable $compile_flags]
2612 if ![string match "" $lines] then {
2613 verbose "$me: testfile compilation failed, returning 1" 2
2617 # No error message, compilation succeeded so now run it via gdb.
2621 gdb_reinitialize_dir $srcdir/$subdir
2625 -re ".*Illegal instruction.*${gdb_prompt} $" {
2626 verbose -log "\n$me altivec hardware not detected"
2627 set skip_vmx_tests 1
2629 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2630 verbose -log "\n$me: altivec hardware detected"
2631 set skip_vmx_tests 0
2634 warning "\n$me: default case taken"
2635 set skip_vmx_tests 1
2639 remote_file build delete $exe
2641 verbose "$me: returning $skip_vmx_tests" 2
2642 return $skip_vmx_tests
2645 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2646 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2648 gdb_caching_proc skip_vsx_tests {
2649 global srcdir subdir gdb_prompt inferior_exited_re
2651 set me "skip_vsx_tests"
2653 # Some simulators are known to not support Altivec instructions, so
2654 # they won't support VSX instructions as well.
2655 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2656 verbose "$me: target known to not support VSX, returning 1" 2
2660 # Make sure we have a compiler that understands altivec.
2661 set compile_flags {debug nowarnings quiet}
2662 if [get_compiler_info] {
2663 warning "Could not get compiler info"
2666 if [test_compiler_info gcc*] {
2667 set compile_flags "$compile_flags additional_flags=-mvsx"
2668 } elseif [test_compiler_info xlc*] {
2669 set compile_flags "$compile_flags additional_flags=-qasm=gcc"
2671 verbose "Could not compile with vsx support, returning 1" 2
2675 set src [standard_temp_file vsx[pid].c]
2676 set exe [standard_temp_file vsx[pid].x]
2678 gdb_produce_source $src {
2680 double a[2] = { 1.0, 2.0 };
2682 asm volatile ("lxvd2x v0,v0,%[addr]" : : [addr] "r" (a));
2684 asm volatile ("lxvd2x 0,0,%[addr]" : : [addr] "r" (a));
2690 verbose "$me: compiling testfile $src" 2
2691 set lines [gdb_compile $src $exe executable $compile_flags]
2694 if ![string match "" $lines] then {
2695 verbose "$me: testfile compilation failed, returning 1" 2
2699 # No error message, compilation succeeded so now run it via gdb.
2703 gdb_reinitialize_dir $srcdir/$subdir
2707 -re ".*Illegal instruction.*${gdb_prompt} $" {
2708 verbose -log "\n$me VSX hardware not detected"
2709 set skip_vsx_tests 1
2711 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2712 verbose -log "\n$me: VSX hardware detected"
2713 set skip_vsx_tests 0
2716 warning "\n$me: default case taken"
2717 set skip_vsx_tests 1
2721 remote_file build delete $exe
2723 verbose "$me: returning $skip_vsx_tests" 2
2724 return $skip_vsx_tests
2727 # Run a test on the target to see if it supports TSX hardware. Return 0 if so,
2728 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2730 gdb_caching_proc skip_tsx_tests {
2731 global srcdir subdir gdb_prompt inferior_exited_re
2733 set me "skip_tsx_tests"
2735 set src [standard_temp_file tsx[pid].c]
2736 set exe [standard_temp_file tsx[pid].x]
2738 gdb_produce_source $src {
2740 asm volatile ("xbegin .L0");
2741 asm volatile ("xend");
2742 asm volatile (".L0: nop");
2747 verbose "$me: compiling testfile $src" 2
2748 set lines [gdb_compile $src $exe executable {nowarnings quiet}]
2751 if ![string match "" $lines] then {
2752 verbose "$me: testfile compilation failed." 2
2756 # No error message, compilation succeeded so now run it via gdb.
2760 gdb_reinitialize_dir $srcdir/$subdir
2764 -re ".*Illegal instruction.*${gdb_prompt} $" {
2765 verbose -log "$me: TSX hardware not detected."
2766 set skip_tsx_tests 1
2768 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2769 verbose -log "$me: TSX hardware detected."
2770 set skip_tsx_tests 0
2773 warning "\n$me: default case taken."
2774 set skip_tsx_tests 1
2778 remote_file build delete $exe
2780 verbose "$me: returning $skip_tsx_tests" 2
2781 return $skip_tsx_tests
2784 # Run a test on the target to see if it supports btrace hardware. Return 0 if so,
2785 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2787 gdb_caching_proc skip_btrace_tests {
2788 global srcdir subdir gdb_prompt inferior_exited_re
2790 set me "skip_btrace_tests"
2791 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2792 verbose "$me: target does not support btrace, returning 1" 2
2796 # Set up, compile, and execute a test program.
2797 # Include the current process ID in the file names to prevent conflicts
2798 # with invocations for multiple testsuites.
2799 set src [standard_temp_file btrace[pid].c]
2800 set exe [standard_temp_file btrace[pid].x]
2802 gdb_produce_source $src {
2803 int main(void) { return 0; }
2806 verbose "$me: compiling testfile $src" 2
2807 set compile_flags {debug nowarnings quiet}
2808 set lines [gdb_compile $src $exe executable $compile_flags]
2810 if ![string match "" $lines] then {
2811 verbose "$me: testfile compilation failed, returning 1" 2
2816 # No error message, compilation succeeded so now run it via gdb.
2820 gdb_reinitialize_dir $srcdir/$subdir
2827 # In case of an unexpected output, we return 2 as a fail value.
2828 set skip_btrace_tests 2
2829 gdb_test_multiple "record btrace" "check btrace support" {
2830 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
2831 set skip_btrace_tests 1
2833 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
2834 set skip_btrace_tests 1
2836 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
2837 set skip_btrace_tests 1
2839 -re "^record btrace\r\n$gdb_prompt $" {
2840 set skip_btrace_tests 0
2844 remote_file build delete $exe
2846 verbose "$me: returning $skip_btrace_tests" 2
2847 return $skip_btrace_tests
2850 # Run a test on the target to see if it supports btrace pt hardware.
2851 # Return 0 if so, 1 if it does not. Based on 'check_vmx_hw_available'
2852 # from the GCC testsuite.
2854 gdb_caching_proc skip_btrace_pt_tests {
2855 global srcdir subdir gdb_prompt inferior_exited_re
2857 set me "skip_btrace_tests"
2858 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2859 verbose "$me: target does not support btrace, returning 1" 2
2863 # Set up, compile, and execute a test program.
2864 # Include the current process ID in the file names to prevent conflicts
2865 # with invocations for multiple testsuites.
2866 set src [standard_temp_file btrace[pid].c]
2867 set exe [standard_temp_file btrace[pid].x]
2869 gdb_produce_source $src {
2870 int main(void) { return 0; }
2873 verbose "$me: compiling testfile $src" 2
2874 set compile_flags {debug nowarnings quiet}
2875 set lines [gdb_compile $src $exe executable $compile_flags]
2877 if ![string match "" $lines] then {
2878 verbose "$me: testfile compilation failed, returning 1" 2
2883 # No error message, compilation succeeded so now run it via gdb.
2887 gdb_reinitialize_dir $srcdir/$subdir
2894 # In case of an unexpected output, we return 2 as a fail value.
2895 set skip_btrace_tests 2
2896 gdb_test_multiple "record btrace pt" "check btrace support" {
2897 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
2898 set skip_btrace_tests 1
2900 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
2901 set skip_btrace_tests 1
2903 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
2904 set skip_btrace_tests 1
2906 -re "GDB does not support.*\r\n$gdb_prompt $" {
2907 set skip_btrace_tests 1
2909 -re "^record btrace pt\r\n$gdb_prompt $" {
2910 set skip_btrace_tests 0
2914 remote_file build delete $exe
2916 verbose "$me: returning $skip_btrace_tests" 2
2917 return $skip_btrace_tests
2920 # Return whether we should skip tests for showing inlined functions in
2921 # backtraces. Requires get_compiler_info and get_debug_format.
2923 proc skip_inline_frame_tests {} {
2924 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2925 if { ! [test_debug_format "DWARF 2"] } {
2929 # GCC before 4.1 does not emit DW_AT_call_file / DW_AT_call_line.
2930 if { ([test_compiler_info "gcc-2-*"]
2931 || [test_compiler_info "gcc-3-*"]
2932 || [test_compiler_info "gcc-4-0-*"]) } {
2939 # Return whether we should skip tests for showing variables from
2940 # inlined functions. Requires get_compiler_info and get_debug_format.
2942 proc skip_inline_var_tests {} {
2943 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2944 if { ! [test_debug_format "DWARF 2"] } {
2951 # Return a 1 if we should skip tests that require hardware breakpoints
2953 proc skip_hw_breakpoint_tests {} {
2954 # Skip tests if requested by the board (note that no_hardware_watchpoints
2955 # disables both watchpoints and breakpoints)
2956 if { [target_info exists gdb,no_hardware_watchpoints]} {
2960 # These targets support hardware breakpoints natively
2961 if { [istarget "i?86-*-*"]
2962 || [istarget "x86_64-*-*"]
2963 || [istarget "ia64-*-*"]
2964 || [istarget "arm*-*-*"]
2965 || [istarget "aarch64*-*-*"]
2966 || [istarget "s390*-*-*"] } {
2973 # Return a 1 if we should skip tests that require hardware watchpoints
2975 proc skip_hw_watchpoint_tests {} {
2976 # Skip tests if requested by the board
2977 if { [target_info exists gdb,no_hardware_watchpoints]} {
2981 # These targets support hardware watchpoints natively
2982 if { [istarget "i?86-*-*"]
2983 || [istarget "x86_64-*-*"]
2984 || [istarget "ia64-*-*"]
2985 || [istarget "arm*-*-*"]
2986 || [istarget "aarch64*-*-*"]
2987 || [istarget "powerpc*-*-linux*"]
2988 || [istarget "s390*-*-*"] } {
2995 # Return a 1 if we should skip tests that require *multiple* hardware
2996 # watchpoints to be active at the same time
2998 proc skip_hw_watchpoint_multi_tests {} {
2999 if { [skip_hw_watchpoint_tests] } {
3003 # These targets support just a single hardware watchpoint
3004 if { [istarget "arm*-*-*"]
3005 || [istarget "powerpc*-*-linux*"] } {
3012 # Return a 1 if we should skip tests that require read/access watchpoints
3014 proc skip_hw_watchpoint_access_tests {} {
3015 if { [skip_hw_watchpoint_tests] } {
3019 # These targets support just write watchpoints
3020 if { [istarget "s390*-*-*"] } {
3027 # Return 1 if we should skip tests that require the runtime unwinder
3028 # hook. This must be invoked while gdb is running, after shared
3029 # libraries have been loaded. This is needed because otherwise a
3030 # shared libgcc won't be visible.
3032 proc skip_unwinder_tests {} {
3036 gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook" {
3037 -re "= .*no debug info.*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
3039 -re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
3042 -re "No symbol .* in current context.\r\n$gdb_prompt $" {
3046 gdb_test_multiple "info probe" "check for stap probe in unwinder" {
3047 -re ".*libgcc.*unwind.*\r\n$gdb_prompt $" {
3050 -re "\r\n$gdb_prompt $" {
3057 # Return 0 if we should skip tests that require the libstdc++ stap
3058 # probes. This must be invoked while gdb is running, after shared
3059 # libraries have been loaded.
3061 proc skip_libstdcxx_probe_tests {} {
3065 gdb_test_multiple "info probe" "check for stap probe in libstdc++" {
3066 -re ".*libstdcxx.*catch.*\r\n$gdb_prompt $" {
3069 -re "\r\n$gdb_prompt $" {
3075 # Return 1 if we should skip tests of the "compile" feature.
3076 # This must be invoked after the inferior has been started.
3078 proc skip_compile_feature_tests {} {
3082 gdb_test_multiple "compile code -- ;" "check for working compile command" {
3083 "Could not load libcc1.*\r\n$gdb_prompt $" {
3086 -re "Command not supported on this host\\..*\r\n$gdb_prompt $" {
3089 -re "\r\n$gdb_prompt $" {
3095 # Helper for gdb_is_target_remote. PROMPT_REGEXP is the expected
3098 proc gdb_is_target_remote_prompt { prompt_regexp } {
3100 set test "probe for target remote"
3101 gdb_test_multiple "maint print target-stack" $test {
3102 -re ".*emote serial target in gdb-specific protocol.*$prompt_regexp" {
3106 -re "$prompt_regexp" {
3113 # Check whether we're testing with the remote or extended-remote
3116 proc gdb_is_target_remote {} {
3119 return [gdb_is_target_remote_prompt "$gdb_prompt $"]
3122 # Return the effective value of use_gdb_stub.
3124 # If the use_gdb_stub global has been set (it is set when the gdb process is
3125 # spawned), return that. Otherwise, return the value of the use_gdb_stub
3126 # property from the board file.
3128 # This is the preferred way of checking use_gdb_stub, since it allows to check
3129 # the value before the gdb has been spawned and it will return the correct value
3130 # even when it was overriden by the test.
3132 proc use_gdb_stub {} {
3135 if [info exists use_gdb_stub] {
3136 return $use_gdb_stub
3139 return [target_info exists use_gdb_stub]
3142 # Return 1 if the current remote target is an instance of our GDBserver, 0
3143 # otherwise. Return -1 if there was an error and we can't tell.
3145 gdb_caching_proc target_is_gdbserver {
3149 set test "Probing for GDBserver"
3151 gdb_test_multiple "monitor help" $test {
3152 -re "The following monitor commands are supported.*Quit GDBserver.*$gdb_prompt $" {
3155 -re "$gdb_prompt $" {
3160 if { $is_gdbserver == -1 } {
3161 verbose -log "Unable to tell whether we are using GDBserver or not."
3164 return $is_gdbserver
3167 # N.B. compiler_info is intended to be local to this file.
3168 # Call test_compiler_info with no arguments to fetch its value.
3169 # Yes, this is counterintuitive when there's get_compiler_info,
3170 # but that's the current API.
3171 if [info exists compiler_info] {
3177 # Figure out what compiler I am using.
3178 # The result is cached so only the first invocation runs the compiler.
3180 # ARG can be empty or "C++". If empty, "C" is assumed.
3182 # There are several ways to do this, with various problems.
3184 # [ gdb_compile -E $ifile -o $binfile.ci ]
3185 # source $binfile.ci
3187 # Single Unix Spec v3 says that "-E -o ..." together are not
3188 # specified. And in fact, the native compiler on hp-ux 11 (among
3189 # others) does not work with "-E -o ...". Most targets used to do
3190 # this, and it mostly worked, because it works with gcc.
3192 # [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
3193 # source $binfile.ci
3195 # This avoids the problem with -E and -o together. This almost works
3196 # if the build machine is the same as the host machine, which is
3197 # usually true of the targets which are not gcc. But this code does
3198 # not figure which compiler to call, and it always ends up using the C
3199 # compiler. Not good for setting hp_aCC_compiler. Target
3200 # hppa*-*-hpux* used to do this.
3202 # [ gdb_compile -E $ifile > $binfile.ci ]
3203 # source $binfile.ci
3205 # dejagnu target_compile says that it supports output redirection,
3206 # but the code is completely different from the normal path and I
3207 # don't want to sweep the mines from that path. So I didn't even try
3210 # set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
3213 # I actually do this for all targets now. gdb_compile runs the right
3214 # compiler, and TCL captures the output, and I eval the output.
3216 # Unfortunately, expect logs the output of the command as it goes by,
3217 # and dejagnu helpfully prints a second copy of it right afterwards.
3218 # So I turn off expect logging for a moment.
3220 # [ gdb_compile $ifile $ciexe_file executable $args ]
3221 # [ remote_exec $ciexe_file ]
3222 # [ source $ci_file.out ]
3224 # I could give up on -E and just do this.
3225 # I didn't get desperate enough to try this.
3227 # -- chastain 2004-01-06
3229 proc get_compiler_info {{arg ""}} {
3230 # For compiler.c and compiler.cc
3233 # I am going to play with the log to keep noise out.
3237 # These come from compiler.c or compiler.cc
3238 global compiler_info
3240 # Legacy global data symbols.
3243 if [info exists compiler_info] {
3248 # Choose which file to preprocess.
3249 set ifile "${srcdir}/lib/compiler.c"
3250 if { $arg == "c++" } {
3251 set ifile "${srcdir}/lib/compiler.cc"
3254 # Run $ifile through the right preprocessor.
3255 # Toggle gdb.log to keep the compiler output out of the log.
3256 set saved_log [log_file -info]
3258 if [is_remote host] {
3259 # We have to use -E and -o together, despite the comments
3260 # above, because of how DejaGnu handles remote host testing.
3261 set ppout "$outdir/compiler.i"
3262 gdb_compile "${ifile}" "$ppout" preprocess [list "$arg" quiet]
3263 set file [open $ppout r]
3264 set cppout [read $file]
3267 set cppout [ gdb_compile "${ifile}" "" preprocess [list "$arg" quiet] ]
3269 eval log_file $saved_log
3273 foreach cppline [ split "$cppout" "\n" ] {
3274 if { [ regexp "^#" "$cppline" ] } {
3276 } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
3278 } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
3280 verbose "get_compiler_info: $cppline" 2
3284 verbose -log "get_compiler_info: $cppline"
3289 # Set to unknown if for some reason compiler_info didn't get defined.
3290 if ![info exists compiler_info] {
3291 verbose -log "get_compiler_info: compiler_info not provided"
3292 set compiler_info "unknown"
3294 # Also set to unknown compiler if any diagnostics happened.
3296 verbose -log "get_compiler_info: got unexpected diagnostics"
3297 set compiler_info "unknown"
3300 # Set the legacy symbols.
3302 regexp "^gcc-(\[0-9\]+)-" "$compiler_info" matchall gcc_compiled
3304 # Log what happened.
3305 verbose -log "get_compiler_info: $compiler_info"
3307 # Most compilers will evaluate comparisons and other boolean
3308 # operations to 0 or 1.
3309 uplevel \#0 { set true 1 }
3310 uplevel \#0 { set false 0 }
3315 # Return the compiler_info string if no arg is provided.
3316 # Otherwise the argument is a glob-style expression to match against
3319 proc test_compiler_info { {compiler ""} } {
3320 global compiler_info
3323 # If no arg, return the compiler_info string.
3324 if [string match "" $compiler] {
3325 return $compiler_info
3328 return [string match $compiler $compiler_info]
3331 proc current_target_name { } {
3333 if [info exists target_info(target,name)] {
3334 set answer $target_info(target,name)
3341 set gdb_wrapper_initialized 0
3342 set gdb_wrapper_target ""
3344 proc gdb_wrapper_init { args } {
3345 global gdb_wrapper_initialized
3346 global gdb_wrapper_file
3347 global gdb_wrapper_flags
3348 global gdb_wrapper_target
3350 if { $gdb_wrapper_initialized == 1 } { return; }
3352 if {[target_info exists needs_status_wrapper] && \
3353 [target_info needs_status_wrapper] != "0"} {
3354 set result [build_wrapper "testglue.o"]
3355 if { $result != "" } {
3356 set gdb_wrapper_file [lindex $result 0]
3357 set gdb_wrapper_flags [lindex $result 1]
3359 warning "Status wrapper failed to build."
3362 set gdb_wrapper_initialized 1
3363 set gdb_wrapper_target [current_target_name]
3366 # Some targets need to always link a special object in. Save its path here.
3367 global gdb_saved_set_unbuffered_mode_obj
3368 set gdb_saved_set_unbuffered_mode_obj ""
3370 # Compile source files specified by SOURCE into a binary of type TYPE at path
3371 # DEST. gdb_compile is implemented using DejaGnu's target_compile, so the type
3372 # parameter and most options are passed directly to it.
3374 # The type can be one of the following:
3376 # - object: Compile into an object file.
3377 # - executable: Compile and link into an executable.
3378 # - preprocess: Preprocess the source files.
3379 # - assembly: Generate assembly listing.
3381 # The following options are understood and processed by gdb_compile:
3383 # - shlib=so_path: Add SO_PATH to the sources, and enable some target-specific
3384 # quirks to be able to use shared libraries.
3385 # - shlib_load: Link with appropriate libraries to allow the test to
3386 # dynamically load libraries at runtime. For example, on Linux, this adds
3387 # -ldl so that the test can use dlopen.
3388 # - nowarnings: Inhibit all compiler warnings.
3390 # And here are some of the not too obscure options understood by DejaGnu that
3391 # influence the compilation:
3393 # - additional_flags=flag: Add FLAG to the compiler flags.
3394 # - libs=library: Add LIBRARY to the libraries passed to the linker. The
3395 # argument can be a file, in which case it's added to the sources, or a
3397 # - ldflags=flag: Add FLAG to the linker flags.
3398 # - incdir=path: Add PATH to the searched include directories.
3399 # - libdir=path: Add PATH to the linker searched directories.
3400 # - ada, c++, f77: Compile the file as Ada, C++ or Fortran.
3401 # - debug: Build with debug information.
3402 # - optimize: Build with optimization.
3404 proc gdb_compile {source dest type options} {
3405 global GDB_TESTCASE_OPTIONS
3406 global gdb_wrapper_file
3407 global gdb_wrapper_flags
3408 global gdb_wrapper_initialized
3411 global gdb_saved_set_unbuffered_mode_obj
3413 set outdir [file dirname $dest]
3415 # Add platform-specific options if a shared library was specified using
3416 # "shlib=librarypath" in OPTIONS.
3420 foreach opt $options {
3421 if [regexp {^shlib=(.*)} $opt dummy_var shlib_name] {
3422 if [test_compiler_info "xlc-*"] {
3423 # IBM xlc compiler doesn't accept shared library named other
3424 # than .so: use "-Wl," to bypass this
3425 lappend source "-Wl,$shlib_name"
3426 } elseif { ([istarget "*-*-mingw*"]
3427 || [istarget *-*-cygwin*]
3428 || [istarget *-*-pe*])} {
3429 lappend source "${shlib_name}.a"
3431 lappend source $shlib_name
3433 if { $shlib_found == 0 } {
3435 if { ([istarget "*-*-mingw*"]
3436 || [istarget *-*-cygwin*]) } {
3437 lappend new_options "additional_flags=-Wl,--enable-auto-import"
3439 if { [test_compiler_info "gcc-*"] || [test_compiler_info "clang-*"] } {
3440 # Undo debian's change in the default.
3441 # Put it at the front to not override any user-provided
3442 # value, and to make sure it appears in front of all the
3444 lappend new_options "early_flags=-Wl,--no-as-needed"
3447 } elseif { $opt == "shlib_load" } {
3450 lappend new_options $opt
3454 # Because we link with libraries using their basename, we may need
3455 # (depending on the platform) to set a special rpath value, to allow
3456 # the executable to find the libraries it depends on.
3457 if { $shlib_load || $shlib_found } {
3458 if { ([istarget "*-*-mingw*"]
3459 || [istarget *-*-cygwin*]
3460 || [istarget *-*-pe*]) } {
3461 # Do not need anything.
3462 } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
3463 lappend new_options "ldflags=-Wl,-rpath,${outdir}"
3464 } elseif { [istarget arm*-*-symbianelf*] } {
3465 if { $shlib_load } {
3466 lappend new_options "libs=-ldl"
3469 if { $shlib_load } {
3470 lappend new_options "libs=-ldl"
3472 lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
3475 set options $new_options
3477 if [info exists GDB_TESTCASE_OPTIONS] {
3478 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS"
3480 verbose "options are $options"
3481 verbose "source is $source $dest $type $options"
3483 if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
3485 if {[target_info exists needs_status_wrapper] && \
3486 [target_info needs_status_wrapper] != "0" && \
3487 [info exists gdb_wrapper_file]} {
3488 lappend options "libs=${gdb_wrapper_file}"
3489 lappend options "ldflags=${gdb_wrapper_flags}"
3492 # Replace the "nowarnings" option with the appropriate additional_flags
3493 # to disable compiler warnings.
3494 set nowarnings [lsearch -exact $options nowarnings]
3495 if {$nowarnings != -1} {
3496 if [target_info exists gdb,nowarnings_flag] {
3497 set flag "additional_flags=[target_info gdb,nowarnings_flag]"
3499 set flag "additional_flags=-w"
3501 set options [lreplace $options $nowarnings $nowarnings $flag]
3504 if { $type == "executable" } {
3505 if { ([istarget "*-*-mingw*"]
3506 || [istarget "*-*-*djgpp"]
3507 || [istarget "*-*-cygwin*"])} {
3508 # Force output to unbuffered mode, by linking in an object file
3509 # with a global contructor that calls setvbuf.
3511 # Compile the special object seperatelly for two reasons:
3512 # 1) Insulate it from $options.
3513 # 2) Avoid compiling it for every gdb_compile invocation,
3514 # which is time consuming, especially if we're remote
3517 if { $gdb_saved_set_unbuffered_mode_obj == "" } {
3518 verbose "compiling gdb_saved_set_unbuffered_obj"
3519 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
3520 set unbuf_obj ${objdir}/set_unbuffered_mode.o
3522 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
3523 if { $result != "" } {
3526 if {[is_remote host]} {
3527 set gdb_saved_set_unbuffered_mode_obj set_unbuffered_mode_saved.o
3529 set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
3531 # Link a copy of the output object, because the
3532 # original may be automatically deleted.
3533 remote_download host $unbuf_obj $gdb_saved_set_unbuffered_mode_obj
3535 verbose "gdb_saved_set_unbuffered_obj already compiled"
3538 # Rely on the internal knowledge that the global ctors are ran in
3539 # reverse link order. In that case, we can use ldflags to
3540 # avoid copying the object file to the host multiple
3542 # This object can only be added if standard libraries are
3543 # used. Thus, we need to disable it if -nostdlib option is used
3544 if {[lsearch -regexp $options "-nostdlib"] < 0 } {
3545 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
3550 set result [target_compile $source $dest $type $options]
3552 # Prune uninteresting compiler (and linker) output.
3553 regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
3555 regsub "\[\r\n\]*$" "$result" "" result
3556 regsub "^\[\r\n\]*" "$result" "" result
3558 if {[lsearch $options quiet] < 0} {
3559 # We shall update this on a per language basis, to avoid
3560 # changing the entire testsuite in one go.
3561 if {[lsearch $options f77] >= 0} {
3562 gdb_compile_test $source $result
3563 } elseif { $result != "" } {
3564 clone_output "gdb compile failed, $result"
3571 # This is just like gdb_compile, above, except that it tries compiling
3572 # against several different thread libraries, to see which one this
3574 proc gdb_compile_pthreads {source dest type options} {
3576 set why_msg "unrecognized error"
3577 foreach lib {-lpthreads -lpthread -lthread ""} {
3578 # This kind of wipes out whatever libs the caller may have
3579 # set. Or maybe theirs will override ours. How infelicitous.
3580 set options_with_lib [concat $options [list libs=$lib quiet]]
3581 set ccout [gdb_compile $source $dest $type $options_with_lib]
3582 switch -regexp -- $ccout {
3583 ".*no posix threads support.*" {
3584 set why_msg "missing threads include file"
3587 ".*cannot open -lpthread.*" {
3588 set why_msg "missing runtime threads library"
3590 ".*Can't find library for -lpthread.*" {
3591 set why_msg "missing runtime threads library"
3594 pass "successfully compiled posix threads test case"
3600 if {!$built_binfile} {
3601 unsupported "Couldn't compile [file tail $source]: ${why_msg}"
3606 # Build a shared library from SOURCES.
3608 proc gdb_compile_shlib {sources dest options} {
3609 set obj_options $options
3612 if { [lsearch -exact $options "c++"] >= 0 } {
3613 set info_options "c++"
3615 if [get_compiler_info ${info_options}] {
3619 switch -glob [test_compiler_info] {
3621 lappend obj_options "additional_flags=-qpic"
3624 if { !([istarget "*-*-cygwin*"]
3625 || [istarget "*-*-mingw*"]) } {
3626 lappend obj_options "additional_flags=-fpic"
3630 if { !([istarget "powerpc*-*-aix*"]
3631 || [istarget "rs6000*-*-aix*"]
3632 || [istarget "*-*-cygwin*"]
3633 || [istarget "*-*-mingw*"]
3634 || [istarget "*-*-pe*"]) } {
3635 lappend obj_options "additional_flags=-fpic"
3639 lappend obj_options "additional_flags=-fpic"
3642 # don't know what the compiler is...
3646 set outdir [file dirname $dest]
3648 foreach source $sources {
3649 set sourcebase [file tail $source]
3650 if {[gdb_compile $source "${outdir}/${sourcebase}.o" object $obj_options] != ""} {
3653 lappend objects ${outdir}/${sourcebase}.o
3656 set link_options $options
3657 if [test_compiler_info "xlc-*"] {
3658 lappend link_options "additional_flags=-qmkshrobj"
3660 lappend link_options "additional_flags=-shared"
3662 if { ([istarget "*-*-mingw*"]
3663 || [istarget *-*-cygwin*]
3664 || [istarget *-*-pe*]) } {
3665 if { [is_remote host] } {
3666 set name [file tail ${dest}]
3670 lappend link_options "additional_flags=-Wl,--out-implib,${name}.a"
3672 # Set the soname of the library. This causes the linker on ELF
3673 # systems to create the DT_NEEDED entry in the executable referring
3674 # to the soname of the library, and not its absolute path. This
3675 # (using the absolute path) would be problem when testing on a
3678 # In conjunction with setting the soname, we add the special
3679 # rpath=$ORIGIN value when building the executable, so that it's
3680 # able to find the library in its own directory.
3681 set destbase [file tail $dest]
3682 lappend link_options "additional_flags=-Wl,-soname,$destbase"
3685 if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
3688 if { [is_remote host]
3689 && ([istarget "*-*-mingw*"]
3690 || [istarget *-*-cygwin*]
3691 || [istarget *-*-pe*]) } {
3692 set dest_tail_name [file tail ${dest}]
3693 remote_upload host $dest_tail_name.a ${dest}.a
3694 remote_file host delete $dest_tail_name.a
3700 # This is just like gdb_compile_shlib, above, except that it tries compiling
3701 # against several different thread libraries, to see which one this
3703 proc gdb_compile_shlib_pthreads {sources dest options} {
3705 set why_msg "unrecognized error"
3706 foreach lib {-lpthreads -lpthread -lthread ""} {
3707 # This kind of wipes out whatever libs the caller may have
3708 # set. Or maybe theirs will override ours. How infelicitous.
3709 set options_with_lib [concat $options [list libs=$lib quiet]]
3710 set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
3711 switch -regexp -- $ccout {
3712 ".*no posix threads support.*" {
3713 set why_msg "missing threads include file"
3716 ".*cannot open -lpthread.*" {
3717 set why_msg "missing runtime threads library"
3719 ".*Can't find library for -lpthread.*" {
3720 set why_msg "missing runtime threads library"
3723 pass "successfully compiled posix threads test case"
3729 if {!$built_binfile} {
3730 unsupported "Couldn't compile $sources: ${why_msg}"
3735 # This is just like gdb_compile_pthreads, above, except that we always add the
3736 # objc library for compiling Objective-C programs
3737 proc gdb_compile_objc {source dest type options} {
3739 set why_msg "unrecognized error"
3740 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
3741 # This kind of wipes out whatever libs the caller may have
3742 # set. Or maybe theirs will override ours. How infelicitous.
3743 if { $lib == "solaris" } {
3744 set lib "-lpthread -lposix4"
3746 if { $lib != "-lobjc" } {
3747 set lib "-lobjc $lib"
3749 set options_with_lib [concat $options [list libs=$lib quiet]]
3750 set ccout [gdb_compile $source $dest $type $options_with_lib]
3751 switch -regexp -- $ccout {
3752 ".*no posix threads support.*" {
3753 set why_msg "missing threads include file"
3756 ".*cannot open -lpthread.*" {
3757 set why_msg "missing runtime threads library"
3759 ".*Can't find library for -lpthread.*" {
3760 set why_msg "missing runtime threads library"
3763 pass "successfully compiled objc with posix threads test case"
3769 if {!$built_binfile} {
3770 unsupported "Couldn't compile [file tail $source]: ${why_msg}"
3775 proc send_gdb { string } {
3776 global suppress_flag
3777 if { $suppress_flag } {
3780 return [remote_send host "$string"]
3783 # Send STRING to the inferior's terminal.
3785 proc send_inferior { string } {
3786 global inferior_spawn_id
3788 if {[catch "send -i $inferior_spawn_id -- \$string" errorInfo]} {
3798 proc gdb_expect { args } {
3799 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
3800 set atimeout [lindex $args 0]
3801 set expcode [list [lindex $args 1]]
3806 # A timeout argument takes precedence, otherwise of all the timeouts
3807 # select the largest.
3808 if [info exists atimeout] {
3811 set tmt [get_largest_timeout]
3814 global suppress_flag
3815 global remote_suppress_flag
3816 if [info exists remote_suppress_flag] {
3817 set old_val $remote_suppress_flag
3819 if [info exists suppress_flag] {
3820 if { $suppress_flag } {
3821 set remote_suppress_flag 1
3825 {uplevel remote_expect host $tmt $expcode} string]
3826 if [info exists old_val] {
3827 set remote_suppress_flag $old_val
3829 if [info exists remote_suppress_flag] {
3830 unset remote_suppress_flag
3835 global errorInfo errorCode
3837 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
3839 return -code $code $string
3843 # gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
3845 # Check for long sequence of output by parts.
3846 # TEST: is the test message to be printed with the test success/fail.
3847 # SENTINEL: Is the terminal pattern indicating that output has finished.
3848 # LIST: is the sequence of outputs to match.
3849 # If the sentinel is recognized early, it is considered an error.
3852 # 1 if the test failed,
3853 # 0 if the test passes,
3854 # -1 if there was an internal error.
3856 proc gdb_expect_list {test sentinel list} {
3858 global suppress_flag
3861 if { $suppress_flag } {
3863 unresolved "${test}"
3865 while { ${index} < [llength ${list}] } {
3866 set pattern [lindex ${list} ${index}]
3867 set index [expr ${index} + 1]
3868 verbose -log "gdb_expect_list pattern: /$pattern/" 2
3869 if { ${index} == [llength ${list}] } {
3872 -re "${pattern}${sentinel}" {
3873 # pass "${test}, pattern ${index} + sentinel"
3876 fail "${test} (pattern ${index} + sentinel)"
3879 -re ".*A problem internal to GDB has been detected" {
3880 fail "${test} (GDB internal error)"
3882 gdb_internal_error_resync
3885 fail "${test} (pattern ${index} + sentinel) (timeout)"
3890 # unresolved "${test}, pattern ${index} + sentinel"
3896 # pass "${test}, pattern ${index}"
3899 fail "${test} (pattern ${index})"
3902 -re ".*A problem internal to GDB has been detected" {
3903 fail "${test} (GDB internal error)"
3905 gdb_internal_error_resync
3908 fail "${test} (pattern ${index}) (timeout)"
3913 # unresolved "${test}, pattern ${index}"
3927 proc gdb_suppress_entire_file { reason } {
3928 global suppress_flag
3931 set suppress_flag -1
3935 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
3936 # gdb_expect to fail immediately (until the next call to
3937 # gdb_stop_suppressing_tests).
3939 proc gdb_suppress_tests { args } {
3940 global suppress_flag
3942 return; # fnf - disable pending review of results where
3943 # testsuite ran better without this
3946 if { $suppress_flag == 1 } {
3947 if { [llength $args] > 0 } {
3948 warning "[lindex $args 0]\n"
3950 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n"
3956 # Clear suppress_flag.
3958 proc gdb_stop_suppressing_tests { } {
3959 global suppress_flag
3961 if [info exists suppress_flag] {
3962 if { $suppress_flag > 0 } {
3964 clone_output "Tests restarted.\n"
3971 proc gdb_clear_suppressed { } {
3972 global suppress_flag
3977 # Spawn the gdb process.
3979 # This doesn't expect any output or do any other initialization,
3980 # leaving those to the caller.
3982 # Overridable function -- you can override this function in your
3985 proc gdb_spawn { } {
3989 # Spawn GDB with CMDLINE_FLAGS appended to the GDBFLAGS global.
3991 proc gdb_spawn_with_cmdline_opts { cmdline_flags } {
3994 set saved_gdbflags $GDBFLAGS
3996 if {$GDBFLAGS != ""} {
3999 append GDBFLAGS $cmdline_flags
4003 set GDBFLAGS $saved_gdbflags
4008 # Start gdb running, wait for prompt, and disable the pagers.
4010 # Overridable function -- you can override this function in your
4013 proc gdb_start { } {
4018 catch default_gdb_exit
4021 # Return true if we can spawn a program on the target and attach to
4024 proc can_spawn_for_attach { } {
4025 # We use exp_pid to get the inferior's pid, assuming that gives
4026 # back the pid of the program. On remote boards, that would give
4027 # us instead the PID of e.g., the ssh client, etc.
4028 if [is_remote target] then {
4032 # The "attach" command doesn't make sense when the target is
4033 # stub-like, where GDB finds the program already started on
4034 # initial connection.
4035 if {[target_info exists use_gdb_stub]} {
4043 # Kill a progress previously started with spawn_wait_for_attach, and
4044 # reap its wait status. PROC_SPAWN_ID is the spawn id associated with
4047 proc kill_wait_spawned_process { proc_spawn_id } {
4048 set pid [exp_pid -i $proc_spawn_id]
4050 verbose -log "killing ${pid}"
4051 remote_exec build "kill -9 ${pid}"
4053 verbose -log "closing ${proc_spawn_id}"
4054 catch "close -i $proc_spawn_id"
4055 verbose -log "waiting for ${proc_spawn_id}"
4057 # If somehow GDB ends up still attached to the process here, a
4058 # blocking wait hangs until gdb is killed (or until gdb / the
4059 # ptracer reaps the exit status too, but that won't happen because
4060 # something went wrong.) Passing -nowait makes expect tell Tcl to
4061 # wait for the PID in the background. That's fine because we
4062 # don't care about the exit status. */
4063 wait -nowait -i $proc_spawn_id
4066 # Returns the process id corresponding to the given spawn id.
4068 proc spawn_id_get_pid { spawn_id } {
4069 set testpid [exp_pid -i $spawn_id]
4071 if { [istarget "*-*-cygwin*"] } {
4072 # testpid is the Cygwin PID, GDB uses the Windows PID, which
4073 # might be different due to the way fork/exec works.
4074 set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
4080 # Start a set of programs running and then wait for a bit, to be sure
4081 # that they can be attached to. Return a list of processes spawn IDs,
4082 # one element for each process spawned. It's a test error to call
4083 # this when [can_spawn_for_attach] is false.
4085 proc spawn_wait_for_attach { executable_list } {
4086 set spawn_id_list {}
4088 if ![can_spawn_for_attach] {
4089 # The caller should have checked can_spawn_for_attach itself
4090 # before getting here.
4091 error "can't spawn for attach with this target/board"
4094 foreach {executable} $executable_list {
4095 # Note we use Expect's spawn, not Tcl's exec, because with
4096 # spawn we control when to wait for/reap the process. That
4097 # allows killing the process by PID without being subject to
4099 lappend spawn_id_list [remote_spawn target $executable]
4104 return $spawn_id_list
4108 # gdb_load_cmd -- load a file into the debugger.
4109 # ARGS - additional args to load command.
4110 # return a -1 if anything goes wrong.
4112 proc gdb_load_cmd { args } {
4115 if [target_info exists gdb_load_timeout] {
4116 set loadtimeout [target_info gdb_load_timeout]
4118 set loadtimeout 1600
4120 send_gdb "load $args\n"
4121 verbose "Timeout is now $loadtimeout seconds" 2
4122 gdb_expect $loadtimeout {
4123 -re "Loading section\[^\r\]*\r\n" {
4126 -re "Start address\[\r\]*\r\n" {
4129 -re "Transfer rate\[\r\]*\r\n" {
4132 -re "Memory access error\[^\r\]*\r\n" {
4133 perror "Failed to load program"
4136 -re "$gdb_prompt $" {
4139 -re "(.*)\r\n$gdb_prompt " {
4140 perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
4144 perror "Timed out trying to load $args."
4151 # Invoke "gcore". CORE is the name of the core file to write. TEST
4152 # is the name of the test case. This will return 1 if the core file
4153 # was created, 0 otherwise. If this fails to make a core file because
4154 # this configuration of gdb does not support making core files, it
4155 # will call "unsupported", not "fail". However, if this fails to make
4156 # a core file for some other reason, then it will call "fail".
4158 proc gdb_gcore_cmd {core test} {
4162 gdb_test_multiple "gcore $core" $test {
4163 -re "Saved corefile .*\[\r\n\]+$gdb_prompt $" {
4167 -re "(?:Can't create a corefile|Target does not support core file generation\\.)\[\r\n\]+$gdb_prompt $" {
4175 # Load core file CORE. TEST is the name of the test case.
4176 # This will record a pass/fail for loading the core file.
4178 # 1 - core file is successfully loaded
4179 # 0 - core file loaded but has a non fatal error
4180 # -1 - core file failed to load
4182 proc gdb_core_cmd { core test } {
4185 gdb_test_multiple "core $core" "$test" {
4186 -re "\\\[Thread debugging using \[^ \r\n\]* enabled\\\]\r\n" {
4189 -re " is not a core dump:.*\r\n$gdb_prompt $" {
4190 fail "$test (bad file format)"
4193 -re ": No such file or directory.*\r\n$gdb_prompt $" {
4194 fail "$test (file not found)"
4197 -re "Couldn't find .* registers in core file.*\r\n$gdb_prompt $" {
4198 fail "$test (incomplete note section)"
4201 -re "Core was generated by .*\r\n$gdb_prompt $" {
4205 -re ".*$gdb_prompt $" {
4210 fail "$test (timeout)"
4214 fail "unsupported output from 'core' command"
4218 # Return the filename to download to the target and load on the target
4219 # for this shared library. Normally just LIBNAME, unless shared libraries
4220 # for this target have separate link and load images.
4222 proc shlib_target_file { libname } {
4226 # Return the filename GDB will load symbols from when debugging this
4227 # shared library. Normally just LIBNAME, unless shared libraries for
4228 # this target have separate link and load images.
4230 proc shlib_symbol_file { libname } {
4234 # Return the filename to download to the target and load for this
4235 # executable. Normally just BINFILE unless it is renamed to something
4236 # else for this target.
4238 proc exec_target_file { binfile } {
4242 # Return the filename GDB will load symbols from when debugging this
4243 # executable. Normally just BINFILE unless executables for this target
4244 # have separate files for symbols.
4246 proc exec_symbol_file { binfile } {
4250 # Rename the executable file. Normally this is just BINFILE1 being renamed
4251 # to BINFILE2, but some targets require multiple binary files.
4252 proc gdb_rename_execfile { binfile1 binfile2 } {
4253 file rename -force [exec_target_file ${binfile1}] \
4254 [exec_target_file ${binfile2}]
4255 if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
4256 file rename -force [exec_symbol_file ${binfile1}] \
4257 [exec_symbol_file ${binfile2}]
4261 # "Touch" the executable file to update the date. Normally this is just
4262 # BINFILE, but some targets require multiple files.
4263 proc gdb_touch_execfile { binfile } {
4264 set time [clock seconds]
4265 file mtime [exec_target_file ${binfile}] $time
4266 if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
4267 file mtime [exec_symbol_file ${binfile}] $time
4271 # Like remote_download but provides a gdb-specific behavior.
4273 # If the destination board is remote, the local file FROMFILE is transferred as
4274 # usual with remote_download to TOFILE on the remote board. The destination
4275 # filename is added to the CLEANFILES global, so it can be cleaned up at the
4278 # If the destination board is local, the destination path TOFILE is passed
4279 # through standard_output_file, and FROMFILE is copied there.
4281 # In both cases, if TOFILE is omitted, it defaults to the [file tail] of
4284 proc gdb_remote_download {dest fromfile {tofile {}}} {
4285 # If TOFILE is not given, default to the same filename as FROMFILE.
4286 if {[string length $tofile] == 0} {
4287 set tofile [file tail $fromfile]
4290 if {[is_remote $dest]} {
4291 # When the DEST is remote, we simply send the file to DEST.
4294 set destname [remote_download $dest $fromfile $tofile]
4295 lappend cleanfiles $destname
4299 # When the DEST is local, we copy the file to the test directory (where
4300 # the executable is).
4302 # Note that we pass TOFILE through standard_output_file, regardless of
4303 # whether it is absolute or relative, because we don't want the tests
4304 # to be able to write outside their standard output directory.
4306 set tofile [standard_output_file $tofile]
4308 file copy -force $fromfile $tofile
4314 # gdb_load_shlib LIB...
4316 # Copy the listed library to the target.
4318 proc gdb_load_shlib { file } {
4319 set dest [gdb_remote_download target [shlib_target_file $file]]
4321 if {[is_remote target]} {
4322 # If the target is remote, we need to tell gdb where to find the
4325 # We could set this even when not testing remotely, but a user
4326 # generally won't set it unless necessary. In order to make the tests
4327 # more like the real-life scenarios, we don't set it for local testing.
4328 gdb_test "set solib-search-path [file dirname $file]" "" ""
4335 # gdb_load -- load a file into the debugger. Specifying no file
4336 # defaults to the executable currently being debugged.
4337 # The return value is 0 for success, -1 for failure.
4338 # Many files in config/*.exp override this procedure.
4340 proc gdb_load { arg } {
4342 return [gdb_file_cmd $arg]
4347 # gdb_reload -- load a file into the target. Called before "running",
4348 # either the first time or after already starting the program once,
4349 # for remote targets. Most files that override gdb_load should now
4350 # override this instead.
4352 proc gdb_reload { } {
4353 # For the benefit of existing configurations, default to gdb_load.
4354 # Specifying no file defaults to the executable currently being
4356 return [gdb_load ""]
4359 proc gdb_continue { function } {
4362 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"]
4365 proc default_gdb_init { test_file_name } {
4366 global gdb_wrapper_initialized
4367 global gdb_wrapper_target
4368 global gdb_test_file_name
4374 gdb_clear_suppressed
4376 set gdb_test_file_name [file rootname [file tail $test_file_name]]
4378 # Make sure that the wrapper is rebuilt
4379 # with the appropriate multilib option.
4380 if { $gdb_wrapper_target != [current_target_name] } {
4381 set gdb_wrapper_initialized 0
4384 # Unlike most tests, we have a small number of tests that generate
4385 # a very large amount of output. We therefore increase the expect
4386 # buffer size to be able to contain the entire test output. This
4387 # is especially needed by gdb.base/info-macros.exp.
4389 # Also set this value for the currently running GDB.
4390 match_max [match_max -d]
4392 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
4393 set pf_prefix "[file tail [file dirname $test_file_name]]/[file tail $test_file_name]:"
4396 if [target_info exists gdb_prompt] {
4397 set gdb_prompt [target_info gdb_prompt]
4399 set gdb_prompt "\\(gdb\\)"
4402 if [info exists use_gdb_stub] {
4407 # Return a path using GDB_PARALLEL.
4408 # ARGS is a list of path elements to append to "$objdir/$GDB_PARALLEL".
4409 # GDB_PARALLEL must be defined, the caller must check.
4411 # The default value for GDB_PARALLEL is, canonically, ".".
4412 # The catch is that tests don't expect an additional "./" in file paths so
4413 # omit any directory for the default case.
4414 # GDB_PARALLEL is written as "yes" for the default case in Makefile.in to mark
4415 # its special handling.
4417 proc make_gdb_parallel_path { args } {
4418 global GDB_PARALLEL objdir
4419 set joiner [list "file" "join" $objdir]
4420 if { [info exists GDB_PARALLEL] && $GDB_PARALLEL != "yes" } {
4421 lappend joiner $GDB_PARALLEL
4423 set joiner [concat $joiner $args]
4424 return [eval $joiner]
4427 # Turn BASENAME into a full file name in the standard output
4428 # directory. It is ok if BASENAME is the empty string; in this case
4429 # the directory is returned.
4431 proc standard_output_file {basename} {
4432 global objdir subdir gdb_test_file_name
4434 set dir [make_gdb_parallel_path outputs $subdir $gdb_test_file_name]
4436 return [file join $dir $basename]
4439 # Return the name of a file in our standard temporary directory.
4441 proc standard_temp_file {basename} {
4442 # Since a particular runtest invocation is only executing a single test
4443 # file at any given time, we can use the runtest pid to build the
4444 # path of the temp directory.
4445 set dir [make_gdb_parallel_path temp [pid]]
4447 return [file join $dir $basename]
4450 # Set 'testfile', 'srcfile', and 'binfile'.
4452 # ARGS is a list of source file specifications.
4453 # Without any arguments, the .exp file's base name is used to
4454 # compute the source file name. The ".c" extension is added in this case.
4455 # If ARGS is not empty, each entry is a source file specification.
4456 # If the specification starts with a ".", it is treated as a suffix
4457 # to append to the .exp file's base name.
4458 # If the specification is the empty string, it is treated as if it
4460 # Otherwise it is a file name.
4461 # The first file in the list is used to set the 'srcfile' global.
4462 # Each subsequent name is used to set 'srcfile2', 'srcfile3', etc.
4464 # Most tests should call this without arguments.
4466 # If a completely different binary file name is needed, then it
4467 # should be handled in the .exp file with a suitable comment.
4469 proc standard_testfile {args} {
4470 global gdb_test_file_name
4472 global gdb_test_file_last_vars
4475 global testfile binfile
4477 set testfile $gdb_test_file_name
4478 set binfile [standard_output_file ${testfile}]
4480 if {[llength $args] == 0} {
4484 # Unset our previous output variables.
4485 # This can help catch hidden bugs.
4486 if {[info exists gdb_test_file_last_vars]} {
4487 foreach varname $gdb_test_file_last_vars {
4489 catch {unset $varname}
4492 # 'executable' is often set by tests.
4493 set gdb_test_file_last_vars {executable}
4497 set varname srcfile$suffix
4500 # Handle an extension.
4503 } elseif {[string range $arg 0 0] == "."} {
4504 set arg $testfile$arg
4508 lappend gdb_test_file_last_vars $varname
4510 if {$suffix == ""} {
4518 # The default timeout used when testing GDB commands. We want to use
4519 # the same timeout as the default dejagnu timeout, unless the user has
4520 # already provided a specific value (probably through a site.exp file).
4521 global gdb_test_timeout
4522 if ![info exists gdb_test_timeout] {
4523 set gdb_test_timeout $timeout
4526 # A list of global variables that GDB testcases should not use.
4527 # We try to prevent their use by monitoring write accesses and raising
4528 # an error when that happens.
4529 set banned_variables { bug_id prms_id }
4531 # A list of procedures that GDB testcases should not use.
4532 # We try to prevent their use by monitoring invocations and raising
4533 # an error when that happens.
4534 set banned_procedures { strace }
4536 # gdb_init is called by runtest at start, but also by several
4537 # tests directly; gdb_finish is only called from within runtest after
4538 # each test source execution.
4539 # Placing several traces by repetitive calls to gdb_init leads
4540 # to problems, as only one trace is removed in gdb_finish.
4541 # To overcome this possible problem, we add a variable that records
4542 # if the banned variables and procedures are already traced.
4545 proc gdb_init { test_file_name } {
4546 # Reset the timeout value to the default. This way, any testcase
4547 # that changes the timeout value without resetting it cannot affect
4548 # the timeout used in subsequent testcases.
4549 global gdb_test_timeout
4551 set timeout $gdb_test_timeout
4553 if { [regexp ".*gdb\.reverse\/.*" $test_file_name]
4554 && [target_info exists gdb_reverse_timeout] } {
4555 set timeout [target_info gdb_reverse_timeout]
4558 # If GDB_INOTIFY is given, check for writes to '.'. This is a
4559 # debugging tool to help confirm that the test suite is
4560 # parallel-safe. You need "inotifywait" from the
4561 # inotify-tools package to use this.
4562 global GDB_INOTIFY inotify_pid
4563 if {[info exists GDB_INOTIFY] && ![info exists inotify_pid]} {
4564 global outdir tool inotify_log_file
4566 set exclusions {outputs temp gdb[.](log|sum) cache}
4567 set exclusion_re ([join $exclusions |])
4569 set inotify_log_file [standard_temp_file inotify.out]
4570 set inotify_pid [exec inotifywait -r -m -e move,create,delete . \
4571 --exclude $exclusion_re \
4572 |& tee -a $outdir/$tool.log $inotify_log_file &]
4574 # Wait for the watches; hopefully this is long enough.
4577 # Clear the log so that we don't emit a warning the first time
4579 set fd [open $inotify_log_file w]
4583 # Block writes to all banned variables, and invocation of all
4584 # banned procedures...
4585 global banned_variables
4586 global banned_procedures
4587 global banned_traced
4588 if (!$banned_traced) {
4589 foreach banned_var $banned_variables {
4590 global "$banned_var"
4591 trace add variable "$banned_var" write error
4593 foreach banned_proc $banned_procedures {
4594 global "$banned_proc"
4595 trace add execution "$banned_proc" enter error
4600 # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
4601 # messages as expected.
4606 # Don't let a .inputrc file or an existing setting of INPUTRC mess up
4607 # the test results. Even if /dev/null doesn't exist on the particular
4608 # platform, the readline library will use the default setting just by
4609 # failing to open the file. OTOH, opening /dev/null successfully will
4610 # also result in the default settings being used since nothing will be
4611 # read from this file.
4612 setenv INPUTRC "/dev/null"
4614 # The gdb.base/readline.exp arrow key test relies on the standard VT100
4615 # bindings, so make sure that an appropriate terminal is selected.
4616 # The same bug doesn't show up if we use ^P / ^N instead.
4619 # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
4620 # grep. Clear GREP_OPTIONS to make the behavior predictable,
4621 # especially having color output turned on can cause tests to fail.
4622 setenv GREP_OPTIONS ""
4624 # Clear $gdbserver_reconnect_p.
4625 global gdbserver_reconnect_p
4626 set gdbserver_reconnect_p 1
4627 unset gdbserver_reconnect_p
4629 return [default_gdb_init $test_file_name]
4632 proc gdb_finish { } {
4633 global gdbserver_reconnect_p
4637 # Exit first, so that the files are no longer in use.
4640 if { [llength $cleanfiles] > 0 } {
4641 eval remote_file target delete $cleanfiles
4645 # Unblock write access to the banned variables. Dejagnu typically
4646 # resets some of them between testcases.
4647 global banned_variables
4648 global banned_procedures
4649 global banned_traced
4650 if ($banned_traced) {
4651 foreach banned_var $banned_variables {
4652 global "$banned_var"
4653 trace remove variable "$banned_var" write error
4655 foreach banned_proc $banned_procedures {
4656 global "$banned_proc"
4657 trace remove execution "$banned_proc" enter error
4664 set debug_format "unknown"
4666 # Run the gdb command "info source" and extract the debugging format
4667 # information from the output and save it in debug_format.
4669 proc get_debug_format { } {
4675 set debug_format "unknown"
4676 send_gdb "info source\n"
4678 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
4679 set debug_format $expect_out(1,string)
4680 verbose "debug format is $debug_format"
4683 -re "No current source file.\r\n$gdb_prompt $" {
4684 perror "get_debug_format used when no current source file"
4687 -re "$gdb_prompt $" {
4688 warning "couldn't check debug format (no valid response)."
4692 warning "couldn't check debug format (timeout)."
4698 # Return true if FORMAT matches the debug format the current test was
4699 # compiled with. FORMAT is a shell-style globbing pattern; it can use
4700 # `*', `[...]', and so on.
4702 # This function depends on variables set by `get_debug_format', above.
4704 proc test_debug_format {format} {
4707 return [expr [string match $format $debug_format] != 0]
4710 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
4711 # COFF, stabs, etc). If that format matches the format that the
4712 # current test was compiled with, then the next test is expected to
4713 # fail for any target. Returns 1 if the next test or set of tests is
4714 # expected to fail, 0 otherwise (or if it is unknown). Must have
4715 # previously called get_debug_format.
4716 proc setup_xfail_format { format } {
4717 set ret [test_debug_format $format]
4725 # gdb_get_line_number TEXT [FILE]
4727 # Search the source file FILE, and return the line number of the
4728 # first line containing TEXT. If no match is found, an error is thrown.
4730 # TEXT is a string literal, not a regular expression.
4732 # The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
4733 # specified, and does not start with "/", then it is assumed to be in
4734 # "$srcdir/$subdir". This is awkward, and can be fixed in the future,
4735 # by changing the callers and the interface at the same time.
4736 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
4737 # gdb.base/ena-dis-br.exp.
4739 # Use this function to keep your test scripts independent of the
4740 # exact line numbering of the source file. Don't write:
4742 # send_gdb "break 20"
4744 # This means that if anyone ever edits your test's source file,
4745 # your test could break. Instead, put a comment like this on the
4746 # source file line you want to break at:
4748 # /* breakpoint spot: frotz.exp: test name */
4750 # and then write, in your test script (which we assume is named
4753 # send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
4755 # (Yes, Tcl knows how to handle the nested quotes and brackets.
4758 # % puts "foo [lindex "bar baz" 1]"
4761 # Tcl is quite clever, for a little stringy language.)
4765 # The previous implementation of this procedure used the gdb search command.
4766 # This version is different:
4768 # . It works with MI, and it also works when gdb is not running.
4770 # . It operates on the build machine, not the host machine.
4772 # . For now, this implementation fakes a current directory of
4773 # $srcdir/$subdir to be compatible with the old implementation.
4774 # This will go away eventually and some callers will need to
4777 # . The TEXT argument is literal text and matches literally,
4778 # not a regular expression as it was before.
4780 # . State changes in gdb, such as changing the current file
4781 # and setting $_, no longer happen.
4783 # After a bit of time we can forget about the differences from the
4784 # old implementation.
4786 # --chastain 2004-08-05
4788 proc gdb_get_line_number { text { file "" } } {
4793 if { "$file" == "" } then {
4796 if { ! [regexp "^/" "$file"] } then {
4797 set file "$srcdir/$subdir/$file"
4800 if { [ catch { set fd [open "$file"] } message ] } then {
4805 for { set line 1 } { 1 } { incr line } {
4806 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
4809 if { $nchar < 0 } then {
4812 if { [string first "$text" "$body"] >= 0 } then {
4818 if { [ catch { close "$fd" } message ] } then {
4823 error "undefined tag \"$text\""
4829 # Continue the program until it ends.
4831 # MSSG is the error message that gets printed. If not given, a
4833 # COMMAND is the command to invoke. If not given, "continue" is
4835 # ALLOW_EXTRA is a flag indicating whether the test should expect
4836 # extra output between the "Continuing." line and the program
4837 # exiting. By default it is zero; if nonzero, any extra output
4840 proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
4841 global inferior_exited_re use_gdb_stub
4844 set text "continue until exit"
4846 set text "continue until exit at $mssg"
4854 # By default, we don't rely on exit() behavior of remote stubs --
4855 # it's common for exit() to be implemented as a simple infinite
4856 # loop, or a forced crash/reset. For native targets, by default, we
4857 # assume process exit is reported as such. If a non-reliable target
4858 # is used, we set a breakpoint at exit, and continue to that.
4859 if { [target_info exists exit_is_reliable] } {
4860 set exit_is_reliable [target_info exit_is_reliable]
4862 set exit_is_reliable [expr ! $use_gdb_stub]
4865 if { ! $exit_is_reliable } {
4866 if {![gdb_breakpoint "exit"]} {
4869 gdb_test $command "Continuing..*Breakpoint .*exit.*" \
4872 # Continue until we exit. Should not stop again.
4873 # Don't bother to check the output of the program, that may be
4874 # extremely tough for some remote systems.
4876 "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
4881 proc rerun_to_main {} {
4882 global gdb_prompt use_gdb_stub
4887 -re ".*Breakpoint .*main .*$gdb_prompt $"\
4888 {pass "rerun to main" ; return 0}
4889 -re "$gdb_prompt $"\
4890 {fail "rerun to main" ; return 0}
4891 timeout {fail "(timeout) rerun to main" ; return 0}
4896 -re "The program .* has been started already.*y or n. $" {
4900 -re "Starting program.*$gdb_prompt $"\
4901 {pass "rerun to main" ; return 0}
4902 -re "$gdb_prompt $"\
4903 {fail "rerun to main" ; return 0}
4904 timeout {fail "(timeout) rerun to main" ; return 0}
4909 # Return true if a test should be skipped due to lack of floating
4910 # point support or GDB can't fetch the contents from floating point
4913 gdb_caching_proc gdb_skip_float_test {
4914 if [target_info exists gdb,skip_float_tests] {
4918 # There is an ARM kernel ptrace bug that hardware VFP registers
4919 # are not updated after GDB ptrace set VFP registers. The bug
4920 # was introduced by kernel commit 8130b9d7b9d858aa04ce67805e8951e3cb6e9b2f
4921 # in 2012 and is fixed in e2dfb4b880146bfd4b6aa8e138c0205407cebbaf
4922 # in May 2016. In other words, kernels older than 4.6.3, 4.4.14,
4923 # 4.1.27, 3.18.36, and 3.14.73 have this bug.
4924 # This kernel bug is detected by check how does GDB change the
4925 # program result by changing one VFP register.
4926 if { [istarget "arm*-*-linux*"] } {
4928 set compile_flags {debug nowarnings }
4930 # Set up, compile, and execute a test program having VFP
4932 set src [standard_temp_file arm_vfp[pid].c]
4933 set exe [standard_temp_file arm_vfp[pid].x]
4935 gdb_produce_source $src {
4940 asm ("vldr d0, [%0]" : : "r" (&d));
4941 asm ("vldr d1, [%0]" : : "r" (&d));
4942 asm (".global break_here\n"
4944 asm ("vcmp.f64 d0, d1\n"
4945 "vmrs APSR_nzcv, fpscr\n"
4946 "bne L_value_different\n"
4949 "L_value_different:\n"
4951 "L_end:\n" : "=r" (ret) :);
4953 /* Return $d0 != $d1. */
4958 verbose "compiling testfile $src" 2
4959 set lines [gdb_compile $src $exe executable $compile_flags]
4962 if ![string match "" $lines] then {
4963 verbose "testfile compilation failed, returning 1" 2
4967 # No error message, compilation succeeded so now run it via gdb.
4968 # Run the test up to 5 times to detect whether ptrace can
4969 # correctly update VFP registers or not.
4971 for {set i 0} {$i < 5} {incr i} {
4972 global gdb_prompt srcdir subdir
4976 gdb_reinitialize_dir $srcdir/$subdir
4980 gdb_test "break *break_here"
4981 gdb_continue_to_breakpoint "break_here"
4983 # Modify $d0 to a different value, so the exit code should
4985 gdb_test "set \$d0 = 5.0"
4987 set test "continue to exit"
4988 gdb_test_multiple "continue" "$test" {
4989 -re "exited with code 01.*$gdb_prompt $" {
4991 -re "exited normally.*$gdb_prompt $" {
4992 # However, the exit code is 0. That means something
4993 # wrong in setting VFP registers.
5001 remote_file build delete $exe
5003 return $skip_vfp_test
5008 # Print a message and return true if a test should be skipped
5009 # due to lack of stdio support.
5011 proc gdb_skip_stdio_test { msg } {
5012 if [target_info exists gdb,noinferiorio] {
5013 verbose "Skipping test '$msg': no inferior i/o."
5019 proc gdb_skip_bogus_test { msg } {
5023 # Return true if a test should be skipped due to lack of XML support
5025 # NOTE: This must be called while gdb is *not* running.
5027 gdb_caching_proc gdb_skip_xml_test {
5031 set xml_file [gdb_remote_download host "${srcdir}/gdb.xml/trivial.xml"]
5035 gdb_test_multiple "set tdesc filename $xml_file" "" {
5036 -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
5039 -re ".*$gdb_prompt $" { }
5045 # Return true if argv[0] is available.
5047 gdb_caching_proc gdb_has_argv0 {
5050 # Set up, compile, and execute a test program to check whether
5051 # argv[0] is available.
5052 set src [standard_temp_file has_argv0[pid].c]
5053 set exe [standard_temp_file has_argv0[pid].x]
5055 gdb_produce_source $src {
5056 int main (int argc, char **argv) {
5061 gdb_compile $src $exe executable {debug}
5064 proc gdb_has_argv0_1 { exe } {
5065 global srcdir subdir
5066 global gdb_prompt hex
5070 gdb_reinitialize_dir $srcdir/$subdir
5073 # Set breakpoint on main.
5074 gdb_test_multiple "break main" "break main" {
5075 -re "Breakpoint.*${gdb_prompt} $" {
5077 -re "${gdb_prompt} $" {
5084 gdb_test_multiple "" "run to main" {
5085 -re "Breakpoint.*${gdb_prompt} $" {
5087 -re "${gdb_prompt} $" {
5092 set old_elements "200"
5093 set test "show print elements"
5094 gdb_test_multiple $test $test {
5095 -re "Limit on string chars or array elements to print is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
5096 set old_elements $expect_out(1,string)
5099 set old_repeats "200"
5100 set test "show print repeats"
5101 gdb_test_multiple $test $test {
5102 -re "Threshold for repeated print elements is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
5103 set old_repeats $expect_out(1,string)
5106 gdb_test_no_output "set print elements unlimited" ""
5107 gdb_test_no_output "set print repeats unlimited" ""
5110 # Check whether argc is 1.
5111 gdb_test_multiple "p argc" "p argc" {
5112 -re " = 1\r\n${gdb_prompt} $" {
5114 gdb_test_multiple "p argv\[0\]" "p argv\[0\]" {
5115 -re " = $hex \".*[file tail $exe]\"\r\n${gdb_prompt} $" {
5118 -re "${gdb_prompt} $" {
5122 -re "${gdb_prompt} $" {
5126 gdb_test_no_output "set print elements $old_elements" ""
5127 gdb_test_no_output "set print repeats $old_repeats" ""
5132 set result [gdb_has_argv0_1 $exe]
5139 && ([istarget *-*-linux*]
5140 || [istarget *-*-freebsd*] || [istarget *-*-kfreebsd*]
5141 || [istarget *-*-netbsd*] || [istarget *-*-knetbsd*]
5142 || [istarget *-*-openbsd*]
5143 || [istarget *-*-darwin*]
5144 || [istarget *-*-solaris*]
5145 || [istarget *-*-aix*]
5146 || [istarget *-*-gnu*]
5147 || [istarget *-*-cygwin*] || [istarget *-*-mingw32*]
5148 || [istarget *-*-*djgpp*] || [istarget *-*-go32*]
5149 || [istarget *-wince-pe] || [istarget *-*-mingw32ce*]
5150 || [istarget *-*-symbianelf*]
5151 || [istarget *-*-osf*]
5152 || [istarget *-*-dicos*]
5153 || [istarget *-*-nto*]
5154 || [istarget *-*-*vms*]
5155 || [istarget *-*-lynx*178]) } {
5156 fail "argv\[0\] should be available on this target"
5162 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
5163 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
5164 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
5165 # the name of a debuginfo only file. This file will be stored in the same
5168 # Functions for separate debug info testing
5170 # starting with an executable:
5171 # foo --> original executable
5173 # at the end of the process we have:
5174 # foo.stripped --> foo w/o debug info
5175 # foo.debug --> foo's debug info
5176 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
5178 # Fetch the build id from the file.
5179 # Returns "" if there is none.
5181 proc get_build_id { filename } {
5182 if { ([istarget "*-*-mingw*"]
5183 || [istarget *-*-cygwin*]) } {
5184 set objdump_program [gdb_find_objdump]
5185 set result [catch {set data [exec $objdump_program -p $filename | grep signature | cut "-d " -f4]} output]
5186 verbose "result is $result"
5187 verbose "output is $output"
5193 set tmp [standard_output_file "${filename}-tmp"]
5194 set objcopy_program [gdb_find_objcopy]
5195 set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $filename $tmp" output]
5196 verbose "result is $result"
5197 verbose "output is $output"
5202 fconfigure $fi -translation binary
5203 # Skip the NOTE header.
5208 if ![string compare $data ""] then {
5211 # Convert it to hex.
5212 binary scan $data H* data
5217 # Return the build-id hex string (usually 160 bits as 40 hex characters)
5218 # converted to the form: .build-id/ab/cdef1234...89.debug
5219 # Return "" if no build-id found.
5220 proc build_id_debug_filename_get { filename } {
5221 set data [get_build_id $filename]
5222 if { $data == "" } {
5225 regsub {^..} $data {\0/} data
5226 return ".build-id/${data}.debug"
5229 # Create stripped files for DEST, replacing it. If ARGS is passed, it is a
5230 # list of optional flags. The only currently supported flag is no-main,
5231 # which removes the symbol entry for main from the separate debug file.
5233 # Function returns zero on success. Function will return non-zero failure code
5234 # on some targets not supporting separate debug info (such as i386-msdos).
5236 proc gdb_gnu_strip_debug { dest args } {
5238 # Use the first separate debug info file location searched by GDB so the
5239 # run cannot be broken by some stale file searched with higher precedence.
5240 set debug_file "${dest}.debug"
5242 set strip_to_file_program [transform strip]
5243 set objcopy_program [gdb_find_objcopy]
5245 set debug_link [file tail $debug_file]
5246 set stripped_file "${dest}.stripped"
5248 # Get rid of the debug info, and store result in stripped_file
5249 # something like gdb/testsuite/gdb.base/blah.stripped.
5250 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
5251 verbose "result is $result"
5252 verbose "output is $output"
5257 # Workaround PR binutils/10802:
5258 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5259 set perm [file attributes ${dest} -permissions]
5260 file attributes ${stripped_file} -permissions $perm
5262 # Get rid of everything but the debug info, and store result in debug_file
5263 # This will be in the .debug subdirectory, see above.
5264 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
5265 verbose "result is $result"
5266 verbose "output is $output"
5271 # If no-main is passed, strip the symbol for main from the separate
5272 # file. This is to simulate the behavior of elfutils's eu-strip, which
5273 # leaves the symtab in the original file only. There's no way to get
5274 # objcopy or strip to remove the symbol table without also removing the
5275 # debugging sections, so this is as close as we can get.
5276 if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
5277 set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
5278 verbose "result is $result"
5279 verbose "output is $output"
5283 file delete "${debug_file}"
5284 file rename "${debug_file}-tmp" "${debug_file}"
5287 # Link the two previous output files together, adding the .gnu_debuglink
5288 # section to the stripped_file, containing a pointer to the debug_file,
5289 # save the new file in dest.
5290 # This will be the regular executable filename, in the usual location.
5291 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
5292 verbose "result is $result"
5293 verbose "output is $output"
5298 # Workaround PR binutils/10802:
5299 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5300 set perm [file attributes ${stripped_file} -permissions]
5301 file attributes ${dest} -permissions $perm
5306 # Test the output of GDB_COMMAND matches the pattern obtained
5307 # by concatenating all elements of EXPECTED_LINES. This makes
5308 # it possible to split otherwise very long string into pieces.
5309 # If third argument is not empty, it's used as the name of the
5310 # test to be printed on pass/fail.
5311 proc help_test_raw { gdb_command expected_lines args } {
5312 set message $gdb_command
5313 if [llength $args]>0 then {
5314 set message [lindex $args 0]
5316 set expected_output [join $expected_lines ""]
5317 gdb_test "${gdb_command}" "${expected_output}" $message
5320 # Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
5321 # are regular expressions that should match the beginning of output,
5322 # before the list of commands in that class. The presence of
5323 # command list and standard epilogue will be tested automatically.
5324 # Notice that the '[' and ']' characters don't need to be escaped for strings
5325 # wrapped in {} braces.
5326 proc test_class_help { command_class expected_initial_lines args } {
5328 "List of commands\:.*[\r\n]+"
5329 "Type \"help\" followed by command name for full documentation\.[\r\n]+"
5330 "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n]+"
5331 "Command name abbreviations are allowed if unambiguous\."
5333 set l_entire_body [concat $expected_initial_lines $l_stock_body]
5335 eval [list help_test_raw "help ${command_class}" $l_entire_body] $args
5338 # COMMAND_LIST should have either one element -- command to test, or
5339 # two elements -- abbreviated command to test, and full command the first
5340 # element is abbreviation of.
5341 # The command must be a prefix command. EXPECTED_INITIAL_LINES
5342 # are regular expressions that should match the beginning of output,
5343 # before the list of subcommands. The presence of
5344 # subcommand list and standard epilogue will be tested automatically.
5345 proc test_prefix_command_help { command_list expected_initial_lines args } {
5346 set command [lindex $command_list 0]
5347 if {[llength $command_list]>1} {
5348 set full_command [lindex $command_list 1]
5350 set full_command $command
5352 # Use 'list' and not just {} because we want variables to
5353 # be expanded in this list.
5354 set l_stock_body [list\
5355 "List of $full_command subcommands\:.*\[\r\n\]+"\
5356 "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"\
5357 "Type \"apropos word\" to search for commands related to \"word\"\.\[\r\n\]+"\
5358 "Command name abbreviations are allowed if unambiguous\."]
5359 set l_entire_body [concat $expected_initial_lines $l_stock_body]
5360 if {[llength $args]>0} {
5361 help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
5363 help_test_raw "help ${command}" $l_entire_body
5367 # Build executable named EXECUTABLE from specifications that allow
5368 # different options to be passed to different sub-compilations.
5369 # TESTNAME is the name of the test; this is passed to 'untested' if
5371 # OPTIONS is passed to the final link, using gdb_compile. If OPTIONS
5372 # contains the option "pthreads", then gdb_compile_pthreads is used.
5373 # ARGS is a flat list of source specifications, of the form:
5374 # { SOURCE1 OPTIONS1 [ SOURCE2 OPTIONS2 ]... }
5375 # Each SOURCE is compiled to an object file using its OPTIONS,
5376 # using gdb_compile.
5377 # Returns 0 on success, -1 on failure.
5378 proc build_executable_from_specs {testname executable options args} {
5382 set binfile [standard_output_file $executable]
5385 if { [lsearch -exact $options "c++"] >= 0 } {
5386 set info_options "c++"
5388 if [get_compiler_info ${info_options}] {
5392 set func gdb_compile
5393 set func_index [lsearch -regexp $options {^(pthreads|shlib|shlib_pthreads)$}]
5394 if {$func_index != -1} {
5395 set func "${func}_[lindex $options $func_index]"
5398 # gdb_compile_shlib and gdb_compile_shlib_pthreads do not use the 3rd
5399 # parameter. They also requires $sources while gdb_compile and
5400 # gdb_compile_pthreads require $objects. Moreover they ignore any options.
5401 if [string match gdb_compile_shlib* $func] {
5403 foreach {s local_options} $args {
5404 if { [regexp "^/" "$s"] } then {
5405 lappend sources_path "$s"
5407 lappend sources_path "$srcdir/$subdir/$s"
5410 set ret [$func $sources_path "${binfile}" $options]
5411 } elseif {[lsearch -exact $options rust] != -1} {
5413 foreach {s local_options} $args {
5414 if { [regexp "^/" "$s"] } then {
5415 lappend sources_path "$s"
5417 lappend sources_path "$srcdir/$subdir/$s"
5420 set ret [gdb_compile_rust $sources_path "${binfile}" $options]
5424 foreach {s local_options} $args {
5425 if { ! [regexp "^/" "$s"] } then {
5426 set s "$srcdir/$subdir/$s"
5428 if { [gdb_compile "${s}" "${binfile}${i}.o" object $local_options] != "" } {
5432 lappend objects "${binfile}${i}.o"
5435 set ret [$func $objects "${binfile}" executable $options]
5445 # Build executable named EXECUTABLE, from SOURCES. If SOURCES are not
5446 # provided, uses $EXECUTABLE.c. The TESTNAME paramer is the name of test
5447 # to pass to untested, if something is wrong. OPTIONS are passed
5448 # to gdb_compile directly.
5449 proc build_executable { testname executable {sources ""} {options {debug}} } {
5450 if {[llength $sources]==0} {
5451 set sources ${executable}.c
5454 set arglist [list $testname $executable $options]
5455 foreach source $sources {
5456 lappend arglist $source $options
5459 return [eval build_executable_from_specs $arglist]
5462 # Starts fresh GDB binary and loads an optional executable into GDB.
5463 # Usage: clean_restart [executable]
5464 # EXECUTABLE is the basename of the binary.
5466 proc clean_restart { args } {
5470 if { [llength $args] > 1 } {
5471 error "bad number of args: [llength $args]"
5476 gdb_reinitialize_dir $srcdir/$subdir
5478 if { [llength $args] >= 1 } {
5479 set executable [lindex $args 0]
5480 set binfile [standard_output_file ${executable}]
5485 # Prepares for testing by calling build_executable_full, then
5487 # TESTNAME is the name of the test.
5488 # Each element in ARGS is a list of the form
5489 # { EXECUTABLE OPTIONS SOURCE_SPEC... }
5490 # These are passed to build_executable_from_specs, which see.
5491 # The last EXECUTABLE is passed to clean_restart.
5492 # Returns 0 on success, non-zero on failure.
5493 proc prepare_for_testing_full {testname args} {
5494 foreach spec $args {
5495 if {[eval build_executable_from_specs [list $testname] $spec] == -1} {
5498 set executable [lindex $spec 0]
5500 clean_restart $executable
5504 # Prepares for testing, by calling build_executable, and then clean_restart.
5505 # Please refer to build_executable for parameter description.
5506 proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
5508 if {[build_executable $testname $executable $sources $options] == -1} {
5511 clean_restart $executable
5516 proc get_valueof { fmt exp default } {
5519 set test "get valueof \"${exp}\""
5521 gdb_test_multiple "print${fmt} ${exp}" "$test" {
5522 -re "\\$\[0-9\]* = (.*)\[\r\n\]*$gdb_prompt $" {
5523 set val $expect_out(1,string)
5527 fail "$test (timeout)"
5533 proc get_integer_valueof { exp default } {
5536 set test "get integer valueof \"${exp}\""
5538 gdb_test_multiple "print /d ${exp}" "$test" {
5539 -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
5540 set val $expect_out(1,string)
5544 fail "$test (timeout)"
5550 # Retrieve the value of EXP in the inferior, as an hexadecimal value
5551 # (using "print /x"). DEFAULT is used as fallback if print fails.
5552 # TEST is the test message to use. If can be ommitted, in which case
5553 # a test message is built from EXP.
5555 proc get_hexadecimal_valueof { exp default {test ""} } {
5559 set test "get hexadecimal valueof \"${exp}\""
5563 gdb_test_multiple "print /x ${exp}" $test {
5564 -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
5565 set val $expect_out(1,string)
5572 proc get_sizeof { type default } {
5573 return [get_integer_valueof "sizeof (${type})" $default]
5576 proc get_target_charset { } {
5579 gdb_test_multiple "show target-charset" "" {
5580 -re "The target character set is \"auto; currently (\[^\"\]*)\".*$gdb_prompt $" {
5581 return $expect_out(1,string)
5583 -re "The target character set is \"(\[^\"\]*)\".*$gdb_prompt $" {
5584 return $expect_out(1,string)
5588 # Pick a reasonable default.
5589 warning "Unable to read target-charset."
5593 # Get the address of VAR.
5595 proc get_var_address { var } {
5596 global gdb_prompt hex
5598 # Match output like:
5600 # $5 = (int (*)()) 0
5601 # $6 = (int (*)()) 0x24 <function_bar>
5603 gdb_test_multiple "print &${var}" "get address of ${var}" {
5604 -re "\\\$\[0-9\]+ = \\(.*\\) (0|$hex)( <${var}>)?\[\r\n\]+${gdb_prompt} $"
5606 pass "get address of ${var}"
5607 if { $expect_out(1,string) == "0" } {
5610 return $expect_out(1,string)
5617 # Get the current value for remotetimeout and return it.
5618 proc get_remotetimeout { } {
5622 gdb_test_multiple "show remotetimeout" "" {
5623 -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
5624 return $expect_out(1,string)
5628 # Pick the default that gdb uses
5629 warning "Unable to read remotetimeout"
5633 # Set the remotetimeout to the specified timeout. Nothing is returned.
5634 proc set_remotetimeout { timeout } {
5637 gdb_test_multiple "set remotetimeout $timeout" "" {
5638 -re "$gdb_prompt $" {
5639 verbose "Set remotetimeout to $timeout\n"
5644 # ROOT and FULL are file names. Returns the relative path from ROOT
5645 # to FULL. Note that FULL must be in a subdirectory of ROOT.
5646 # For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this
5649 proc relative_filename {root full} {
5650 set root_split [file split $root]
5651 set full_split [file split $full]
5653 set len [llength $root_split]
5655 if {[eval file join $root_split]
5656 != [eval file join [lrange $full_split 0 [expr {$len - 1}]]]} {
5657 error "$full not a subdir of $root"
5660 return [eval file join [lrange $full_split $len end]]
5663 # Log gdb command line and script if requested.
5664 if {[info exists TRANSCRIPT]} {
5665 rename send_gdb real_send_gdb
5666 rename remote_spawn real_remote_spawn
5667 rename remote_close real_remote_close
5669 global gdb_transcript
5670 set gdb_transcript ""
5672 global gdb_trans_count
5673 set gdb_trans_count 1
5675 proc remote_spawn {args} {
5676 global gdb_transcript gdb_trans_count outdir
5678 if {$gdb_transcript != ""} {
5679 close $gdb_transcript
5681 set gdb_transcript [open [file join $outdir transcript.$gdb_trans_count] w]
5682 puts $gdb_transcript [lindex $args 1]
5683 incr gdb_trans_count
5685 return [uplevel real_remote_spawn $args]
5688 proc remote_close {args} {
5689 global gdb_transcript
5691 if {$gdb_transcript != ""} {
5692 close $gdb_transcript
5693 set gdb_transcript ""
5696 return [uplevel real_remote_close $args]
5699 proc send_gdb {args} {
5700 global gdb_transcript
5702 if {$gdb_transcript != ""} {
5703 puts -nonewline $gdb_transcript [lindex $args 0]
5706 return [uplevel real_send_gdb $args]
5710 # If GDB_PARALLEL exists, then set up the parallel-mode directories.
5711 if {[info exists GDB_PARALLEL]} {
5712 if {[is_remote host]} {
5716 [make_gdb_parallel_path outputs] \
5717 [make_gdb_parallel_path temp] \
5718 [make_gdb_parallel_path cache]
5722 proc core_find {binfile {deletefiles {}} {arg ""}} {
5723 global objdir subdir
5725 set destcore "$binfile.core"
5726 file delete $destcore
5728 # Create a core file named "$destcore" rather than just "core", to
5729 # avoid problems with sys admin types that like to regularly prune all
5730 # files named "core" from the system.
5732 # Arbitrarily try setting the core size limit to "unlimited" since
5733 # this does not hurt on systems where the command does not work and
5734 # allows us to generate a core on systems where it does.
5736 # Some systems append "core" to the name of the program; others append
5737 # the name of the program to "core"; still others (like Linux, as of
5738 # May 2003) create cores named "core.PID". In the latter case, we
5739 # could have many core files lying around, and it may be difficult to
5740 # tell which one is ours, so let's run the program in a subdirectory.
5742 set coredir [standard_output_file coredir.[getpid]]
5744 catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
5745 # remote_exec host "${binfile}"
5746 foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
5747 if [remote_file build exists $i] {
5748 remote_exec build "mv $i $destcore"
5752 # Check for "core.PID".
5753 if { $found == 0 } {
5754 set names [glob -nocomplain -directory $coredir core.*]
5755 if {[llength $names] == 1} {
5756 set corefile [file join $coredir [lindex $names 0]]
5757 remote_exec build "mv $corefile $destcore"
5761 if { $found == 0 } {
5762 # The braindamaged HPUX shell quits after the ulimit -c above
5763 # without executing ${binfile}. So we try again without the
5764 # ulimit here if we didn't find a core file above.
5765 # Oh, I should mention that any "braindamaged" non-Unix system has
5766 # the same problem. I like the cd bit too, it's really neat'n stuff.
5767 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
5768 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
5769 if [remote_file build exists $i] {
5770 remote_exec build "mv $i $destcore"
5776 # Try to clean up after ourselves.
5777 foreach deletefile $deletefiles {
5778 remote_file build delete [file join $coredir $deletefile]
5780 remote_exec build "rmdir $coredir"
5782 if { $found == 0 } {
5783 warning "can't generate a core file - core tests suppressed - check ulimit -c"
5789 # gdb_target_symbol_prefix compiles a test program and then examines
5790 # the output from objdump to determine the prefix (such as underscore)
5791 # for linker symbol prefixes.
5793 gdb_caching_proc gdb_target_symbol_prefix {
5794 # Set up and compile a simple test program...
5795 set src [standard_temp_file main[pid].c]
5796 set exe [standard_temp_file main[pid].x]
5798 gdb_produce_source $src {
5804 verbose "compiling testfile $src" 2
5805 set compile_flags {debug nowarnings quiet}
5806 set lines [gdb_compile $src $exe executable $compile_flags]
5810 if ![string match "" $lines] then {
5811 verbose "gdb_target_symbol_prefix: testfile compilation failed, returning null prefix" 2
5813 set objdump_program [gdb_find_objdump]
5814 set result [catch "exec $objdump_program --syms $exe" output]
5817 && ![regexp -lineanchor \
5818 { ([^ a-zA-Z0-9]*)main$} $output dummy prefix] } {
5819 verbose "gdb_target_symbol_prefix: Could not find main in objdump output; returning null prefix" 2
5829 # gdb_target_symbol returns the provided symbol with the correct prefix
5830 # prepended. (See gdb_target_symbol_prefix, above.)
5832 proc gdb_target_symbol { symbol } {
5833 set prefix [gdb_target_symbol_prefix]
5834 return "${prefix}${symbol}"
5837 # gdb_target_symbol_prefix_flags_asm returns a string that can be
5838 # added to gdb_compile options to define the C-preprocessor macro
5839 # SYMBOL_PREFIX with a value that can be prepended to symbols
5840 # for targets which require a prefix, such as underscore.
5842 # This version (_asm) defines the prefix without double quotes
5843 # surrounding the prefix. It is used to define the macro
5844 # SYMBOL_PREFIX for assembly language files. Another version, below,
5845 # is used for symbols in inline assembler in C/C++ files.
5847 # The lack of quotes in this version (_asm) makes it possible to
5848 # define supporting macros in the .S file. (The version which
5849 # uses quotes for the prefix won't work for such files since it's
5850 # impossible to define a quote-stripping macro in C.)
5852 # It's possible to use this version (_asm) for C/C++ source files too,
5853 # but a string is usually required in such files; providing a version
5854 # (no _asm) which encloses the prefix with double quotes makes it
5855 # somewhat easier to define the supporting macros in the test case.
5857 proc gdb_target_symbol_prefix_flags_asm {} {
5858 set prefix [gdb_target_symbol_prefix]
5859 if {$prefix ne ""} {
5860 return "additional_flags=-DSYMBOL_PREFIX=$prefix"
5866 # gdb_target_symbol_prefix_flags returns the same string as
5867 # gdb_target_symbol_prefix_flags_asm, above, but with the prefix
5868 # enclosed in double quotes if there is a prefix.
5870 # See the comment for gdb_target_symbol_prefix_flags_asm for an
5871 # extended discussion.
5873 proc gdb_target_symbol_prefix_flags {} {
5874 set prefix [gdb_target_symbol_prefix]
5875 if {$prefix ne ""} {
5876 return "additional_flags=-DSYMBOL_PREFIX=\"$prefix\""
5882 # A wrapper for 'remote_exec host' that passes or fails a test.
5883 # Returns 0 if all went well, nonzero on failure.
5884 # TEST is the name of the test, other arguments are as for remote_exec.
5886 proc run_on_host { test program args } {
5887 verbose -log "run_on_host: $program $args"
5888 # remote_exec doesn't work properly if the output is set but the
5889 # input is the empty string -- so replace an empty input with
5891 if {[llength $args] > 1 && [lindex $args 1] == ""} {
5892 set args [lreplace $args 1 1 "/dev/null"]
5894 set result [eval remote_exec host [list $program] $args]
5895 verbose "result is $result"
5896 set status [lindex $result 0]
5897 set output [lindex $result 1]
5902 verbose -log "run_on_host failed: $output"
5908 # Return non-zero if "board_info debug_flags" mentions Fission.
5909 # http://gcc.gnu.org/wiki/DebugFission
5910 # Fission doesn't support everything yet.
5911 # This supports working around bug 15954.
5913 proc using_fission { } {
5914 set debug_flags [board_info [target_info name] debug_flags]
5915 return [regexp -- "-gsplit-dwarf" $debug_flags]
5918 # Search the caller's ARGS list and set variables according to the list of
5919 # valid options described by ARGSET.
5921 # The first member of each one- or two-element list in ARGSET defines the
5922 # name of a variable that will be added to the caller's scope.
5924 # If only one element is given to describe an option, it the value is
5925 # 0 if the option is not present in (the caller's) ARGS or 1 if
5928 # If two elements are given, the second element is the default value of
5929 # the variable. This is then overwritten if the option exists in ARGS.
5931 # Any parse_args elements in (the caller's) ARGS will be removed, leaving
5932 # any optional components.
5935 # proc myproc {foo args} {
5936 # parse_args {{bar} {baz "abc"} {qux}}
5939 # myproc ABC -bar -baz DEF peanut butter
5940 # will define the following variables in myproc:
5941 # foo (=ABC), bar (=1), baz (=DEF), and qux (=0)
5942 # args will be the list {peanut butter}
5944 proc parse_args { argset } {
5947 foreach argument $argset {
5948 if {[llength $argument] == 1} {
5949 # No default specified, so we assume that we should set
5950 # the value to 1 if the arg is present and 0 if it's not.
5951 # It is assumed that no value is given with the argument.
5952 set result [lsearch -exact $args "-$argument"]
5953 if {$result != -1} then {
5954 uplevel 1 [list set $argument 1]
5955 set args [lreplace $args $result $result]
5957 uplevel 1 [list set $argument 0]
5959 } elseif {[llength $argument] == 2} {
5960 # There are two items in the argument. The second is a
5961 # default value to use if the item is not present.
5962 # Otherwise, the variable is set to whatever is provided
5963 # after the item in the args.
5964 set arg [lindex $argument 0]
5965 set result [lsearch -exact $args "-[lindex $arg 0]"]
5966 if {$result != -1} then {
5967 uplevel 1 [list set $arg [lindex $args [expr $result+1]]]
5968 set args [lreplace $args $result [expr $result+1]]
5970 uplevel 1 [list set $arg [lindex $argument 1]]
5973 error "Badly formatted argument \"$argument\" in argument set"
5977 # The remaining args should be checked to see that they match the
5978 # number of items expected to be passed into the procedure...
5981 # Capture the output of COMMAND in a string ignoring PREFIX (a regexp);
5982 # return that string.
5984 proc capture_command_output { command prefix } {
5988 set output_string ""
5989 gdb_test_multiple "$command" "capture_command_output for $command" {
5990 -re "[string_to_regexp ${command}]\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
5991 set output_string $expect_out(1,string)
5994 return $output_string
5997 # A convenience function that joins all the arguments together, with a
5998 # regexp that matches exactly one end of line in between each argument.
5999 # This function is ideal to write the expected output of a GDB command
6000 # that generates more than a couple of lines, as this allows us to write
6001 # each line as a separate string, which is easier to read by a human
6004 proc multi_line { args } {
6005 return [join $args "\r\n"]
6008 # Always load compatibility stuff.