1 # Copyright 1992-2019 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
35 # The spawn ID used for I/O interaction with the inferior. For native
36 # targets, or remote targets that can do I/O through GDB
37 # (semi-hosting) this will be the same as the host/GDB's spawn ID.
38 # Otherwise, the board may set this to some other spawn ID. E.g.,
39 # when debugging with GDBserver, this is set to GDBserver's spawn ID,
40 # so input/output is done on gdbserver's tty.
41 global inferior_spawn_id
43 if [info exists TOOL_EXECUTABLE] {
44 set GDB $TOOL_EXECUTABLE
46 if ![info exists GDB] {
47 if ![is_remote host] {
48 set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
50 set GDB [transform gdb]
53 verbose "using GDB = $GDB" 2
55 # GDBFLAGS is available for the user to set on the command line.
56 # E.g. make check RUNTESTFLAGS=GDBFLAGS=mumble
57 # Testcases may use it to add additional flags, but they must:
58 # - append new flags, not overwrite
59 # - restore the original value when done
61 if ![info exists GDBFLAGS] {
64 verbose "using GDBFLAGS = $GDBFLAGS" 2
66 # Make the build data directory available to tests.
67 set BUILD_DATA_DIRECTORY "[pwd]/../data-directory"
69 # INTERNAL_GDBFLAGS contains flags that the testsuite requires.
70 global INTERNAL_GDBFLAGS
71 if ![info exists INTERNAL_GDBFLAGS] {
72 set INTERNAL_GDBFLAGS "-nw -nx -data-directory $BUILD_DATA_DIRECTORY"
75 # The variable gdb_prompt is a regexp which matches the gdb prompt.
76 # Set it if it is not already set. This is also set by default_gdb_init
77 # but it's not clear what removing one of them will break.
78 # See with_gdb_prompt for more details on prompt handling.
80 if ![info exists gdb_prompt] then {
81 set gdb_prompt "\\(gdb\\)"
84 # A regexp that matches the pagination prompt.
85 set pagination_prompt \
86 "--Type <RET> for more, q to quit, c to continue without paging--"
88 # The variable fullname_syntax_POSIX is a regexp which matches a POSIX
89 # absolute path ie. /foo/
90 set fullname_syntax_POSIX {/[^\n]*/}
91 # The variable fullname_syntax_UNC is a regexp which matches a Windows
92 # UNC path ie. \\D\foo\
93 set fullname_syntax_UNC {\\\\[^\\]+\\[^\n]+\\}
94 # The variable fullname_syntax_DOS_CASE is a regexp which matches a
95 # particular DOS case that GDB most likely will output
96 # ie. \foo\, but don't match \\.*\
97 set fullname_syntax_DOS_CASE {\\[^\\][^\n]*\\}
98 # The variable fullname_syntax_DOS is a regexp which matches a DOS path
99 # ie. a:\foo\ && a:foo\
100 set fullname_syntax_DOS {[a-zA-Z]:[^\n]*\\}
101 # The variable fullname_syntax is a regexp which matches what GDB considers
102 # an absolute path. It is currently debatable if the Windows style paths
103 # d:foo and \abc should be considered valid as an absolute path.
104 # Also, the purpse of this regexp is not to recognize a well formed
105 # absolute path, but to say with certainty that a path is absolute.
106 set fullname_syntax "($fullname_syntax_POSIX|$fullname_syntax_UNC|$fullname_syntax_DOS_CASE|$fullname_syntax_DOS)"
108 # Needed for some tests under Cygwin.
112 if ![info exists env(EXEEXT)] {
115 set EXEEXT $env(EXEEXT)
120 set inferior_exited_re "(\\\[Inferior \[0-9\]+ \\(.*\\) exited)"
122 # A regular expression that matches a value history number.
124 set valnum_re "\\\$$decimal"
126 ### Only procedures should come after this point.
129 # gdb_version -- extract and print the version number of GDB
131 proc default_gdb_version {} {
133 global INTERNAL_GDBFLAGS GDBFLAGS
137 if {[info exists inotify_pid]} {
138 eval exec kill $inotify_pid
141 set output [remote_exec host "$GDB $INTERNAL_GDBFLAGS --version"]
142 set tmp [lindex $output 1]
144 regexp " \[0-9\]\[^ \t\n\r\]+" "$tmp" version
145 if ![is_remote host] {
146 clone_output "[which $GDB] version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
148 clone_output "$GDB on remote host version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
152 proc gdb_version { } {
153 return [default_gdb_version]
157 # gdb_unload -- unload a file if one is loaded
158 # Return 0 on success, -1 on error.
167 -re "No executable file now\[^\r\n\]*\[\r\n\]" { exp_continue }
168 -re "No symbol file now\[^\r\n\]*\[\r\n\]" { exp_continue }
169 -re "A program is being debugged already.*Are you sure you want to change the file.*y or n. $" {
170 send_gdb "y\n" answer
173 -re "Discard symbol table from .*y or n.*$" {
174 send_gdb "y\n" answer
177 -re "$gdb_prompt $" {}
179 perror "couldn't unload file in $GDB (timeout)."
186 # Many of the tests depend on setting breakpoints at various places and
187 # running until that breakpoint is reached. At times, we want to start
188 # with a clean-slate with respect to breakpoints, so this utility proc
189 # lets us do this without duplicating this code everywhere.
192 proc delete_breakpoints {} {
195 # we need a larger timeout value here or this thing just confuses
196 # itself. May need a better implementation if possible. - guo
200 set msg "delete all breakpoints in delete_breakpoints"
202 gdb_test_multiple "delete breakpoints" "$msg" {
203 -re "Delete all breakpoints.*y or n.*$" {
204 send_gdb "y\n" answer
207 -re "$gdb_prompt $" {
213 # Confirm with "info breakpoints".
215 set msg "info breakpoints"
216 gdb_test_multiple $msg $msg {
217 -re "No breakpoints or watchpoints..*$gdb_prompt $" {
220 -re "$gdb_prompt $" {
226 perror "breakpoints not deleted"
230 # Returns true iff the target supports using the "run" command.
232 proc target_can_use_run_cmd {} {
233 if [target_info exists use_gdb_stub] {
234 # In this case, when we connect, the inferior is already
243 # Generic run command.
245 # The second pattern below matches up to the first newline *only*.
246 # Using ``.*$'' could swallow up output that we attempt to match
249 # N.B. This function does not wait for gdb to return to the prompt,
250 # that is the caller's responsibility.
252 proc gdb_run_cmd {args} {
253 global gdb_prompt use_gdb_stub
255 foreach command [gdb_init_commands] {
256 send_gdb "$command\n"
258 -re "$gdb_prompt $" { }
260 perror "gdb_init_command for target failed"
267 if [target_info exists gdb,do_reload_on_run] {
268 if { [gdb_reload] != 0 } {
271 send_gdb "continue\n"
273 -re "Continu\[^\r\n\]*\[\r\n\]" {}
279 if [target_info exists gdb,start_symbol] {
280 set start [target_info gdb,start_symbol]
284 send_gdb "jump *$start\n"
286 while { $start_attempt } {
287 # Cap (re)start attempts at three to ensure that this loop
288 # always eventually fails. Don't worry about trying to be
289 # clever and not send a command when it has failed.
290 if [expr $start_attempt > 3] {
291 perror "Jump to start() failed (retry count exceeded)"
294 set start_attempt [expr $start_attempt + 1]
296 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
299 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
300 perror "Can't find start symbol to run in gdb_run"
303 -re "No symbol \"start\" in current.*$gdb_prompt $" {
304 send_gdb "jump *_start\n"
306 -re "No symbol.*context.*$gdb_prompt $" {
309 -re "Line.* Jump anyway.*y or n. $" {
310 send_gdb "y\n" answer
312 -re "The program is not being run.*$gdb_prompt $" {
313 if { [gdb_reload] != 0 } {
316 send_gdb "jump *$start\n"
319 perror "Jump to start() failed (timeout)"
327 if [target_info exists gdb,do_reload_on_run] {
328 if { [gdb_reload] != 0 } {
332 send_gdb "run $args\n"
333 # This doesn't work quite right yet.
334 # Use -notransfer here so that test cases (like chng-sym.exp)
335 # may test for additional start-up messages.
337 -re "The program .* has been started already.*y or n. $" {
338 send_gdb "y\n" answer
341 -notransfer -re "Starting program: \[^\r\n\]*" {}
342 -notransfer -re "$gdb_prompt $" {
343 # There is no more input expected.
348 # Generic start command. Return 0 if we could start the program, -1
351 # N.B. This function does not wait for gdb to return to the prompt,
352 # that is the caller's responsibility.
354 proc gdb_start_cmd {args} {
355 global gdb_prompt use_gdb_stub
357 foreach command [gdb_init_commands] {
358 send_gdb "$command\n"
360 -re "$gdb_prompt $" { }
362 perror "gdb_init_command for target failed"
372 send_gdb "start $args\n"
373 # Use -notransfer here so that test cases (like chng-sym.exp)
374 # may test for additional start-up messages.
376 -re "The program .* has been started already.*y or n. $" {
377 send_gdb "y\n" answer
380 -notransfer -re "Starting program: \[^\r\n\]*" {
387 # Generic starti command. Return 0 if we could start the program, -1
390 # N.B. This function does not wait for gdb to return to the prompt,
391 # that is the caller's responsibility.
393 proc gdb_starti_cmd {args} {
394 global gdb_prompt use_gdb_stub
396 foreach command [gdb_init_commands] {
397 send_gdb "$command\n"
399 -re "$gdb_prompt $" { }
401 perror "gdb_init_command for target failed"
411 send_gdb "starti $args\n"
413 -re "The program .* has been started already.*y or n. $" {
414 send_gdb "y\n" answer
417 -re "Starting program: \[^\r\n\]*" {
424 # Set a breakpoint at FUNCTION. If there is an additional argument it is
425 # a list of options; the supported options are allow-pending, temporary,
426 # message, no-message, passfail and qualified.
427 # The result is 1 for success, 0 for failure.
429 # Note: The handling of message vs no-message is messed up, but it's based
430 # on historical usage. By default this function does not print passes,
432 # no-message: turns off printing of fails (and passes, but they're already off)
433 # message: turns on printing of passes (and fails, but they're already on)
435 proc gdb_breakpoint { function args } {
439 set pending_response n
440 if {[lsearch -exact $args allow-pending] != -1} {
441 set pending_response y
444 set break_command "break"
445 set break_message "Breakpoint"
446 if {[lsearch -exact $args temporary] != -1} {
447 set break_command "tbreak"
448 set break_message "Temporary breakpoint"
451 if {[lsearch -exact $args qualified] != -1} {
452 append break_command " -qualified"
457 set no_message_loc [lsearch -exact $args no-message]
458 set message_loc [lsearch -exact $args message]
459 # The last one to appear in args wins.
460 if { $no_message_loc > $message_loc } {
462 } elseif { $message_loc > $no_message_loc } {
466 set test_name "setting breakpoint at $function"
468 send_gdb "$break_command $function\n"
469 # The first two regexps are what we get with -g, the third is without -g.
471 -re "$break_message \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
472 -re "$break_message \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
473 -re "$break_message \[0-9\]* at .*$gdb_prompt $" {}
474 -re "$break_message \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
475 if {$pending_response == "n"} {
482 -re "Make breakpoint pending.*y or \\\[n\\\]. $" {
483 send_gdb "$pending_response\n"
486 -re "A problem internal to GDB has been detected" {
488 fail "$test_name (GDB internal error)"
490 gdb_internal_error_resync
493 -re "$gdb_prompt $" {
501 fail "$test_name (eof)"
507 fail "$test_name (timeout)"
518 # Set breakpoint at function and run gdb until it breaks there.
519 # Since this is the only breakpoint that will be set, if it stops
520 # at a breakpoint, we will assume it is the one we want. We can't
521 # just compare to "function" because it might be a fully qualified,
522 # single quoted C++ function specifier.
524 # If there are additional arguments, pass them to gdb_breakpoint.
525 # We recognize no-message/message ourselves.
526 # The default is no-message.
527 # no-message is messed up here, like gdb_breakpoint: to preserve
528 # historical usage fails are always printed by default.
529 # no-message: turns off printing of fails (and passes, but they're already off)
530 # message: turns on printing of passes (and fails, but they're already on)
532 proc runto { function args } {
538 # Default to "no-message".
539 set args "no-message $args"
543 set no_message_loc [lsearch -exact $args no-message]
544 set message_loc [lsearch -exact $args message]
545 # The last one to appear in args wins.
546 if { $no_message_loc > $message_loc } {
548 } elseif { $message_loc > $no_message_loc } {
552 set test_name "running to $function in runto"
554 # We need to use eval here to pass our varargs args to gdb_breakpoint
555 # which is also a varargs function.
556 # But we also have to be careful because $function may have multiple
557 # elements, and we don't want Tcl to move the remaining elements after
558 # the first to $args. That is why $function is wrapped in {}.
559 if ![eval gdb_breakpoint {$function} $args] {
565 # the "at foo.c:36" output we get with -g.
566 # the "in func" output we get without -g.
568 -re "Break.* at .*:$decimal.*$gdb_prompt $" {
574 -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
580 -re "The target does not support running in non-stop mode.\r\n$gdb_prompt $" {
582 unsupported "non-stop mode not supported"
586 -re ".*A problem internal to GDB has been detected" {
588 fail "$test_name (GDB internal error)"
590 gdb_internal_error_resync
593 -re "$gdb_prompt $" {
601 fail "$test_name (eof)"
607 fail "$test_name (timeout)"
618 # Ask gdb to run until we hit a breakpoint at main.
620 # N.B. This function deletes all existing breakpoints.
621 # If you don't want that, use gdb_start_cmd.
623 proc runto_main { } {
624 return [runto main no-message]
627 ### Continue, and expect to hit a breakpoint.
628 ### Report a pass or fail, depending on whether it seems to have
629 ### worked. Use NAME as part of the test name; each call to
630 ### continue_to_breakpoint should use a NAME which is unique within
632 proc gdb_continue_to_breakpoint {name {location_pattern .*}} {
634 set full_name "continue to breakpoint: $name"
636 gdb_test_multiple "continue" $full_name {
637 -re "(?:Breakpoint|Temporary breakpoint) .* (at|in) $location_pattern\r\n$gdb_prompt $" {
644 # gdb_internal_error_resync:
646 # Answer the questions GDB asks after it reports an internal error
647 # until we get back to a GDB prompt. Decline to quit the debugging
648 # session, and decline to create a core file. Return non-zero if the
651 # This procedure just answers whatever questions come up until it sees
652 # a GDB prompt; it doesn't require you to have matched the input up to
653 # any specific point. However, it only answers questions it sees in
654 # the output itself, so if you've matched a question, you had better
655 # answer it yourself before calling this.
657 # You can use this function thus:
661 # -re ".*A problem internal to GDB has been detected" {
662 # gdb_internal_error_resync
667 proc gdb_internal_error_resync {} {
670 verbose -log "Resyncing due to internal error."
673 while {$count < 10} {
675 -re "Quit this debugging session\\? \\(y or n\\) $" {
676 send_gdb "n\n" answer
679 -re "Create a core file of GDB\\? \\(y or n\\) $" {
680 send_gdb "n\n" answer
683 -re "$gdb_prompt $" {
684 # We're resynchronized.
688 perror "Could not resync from internal error (timeout)"
693 perror "Could not resync from internal error (resync count exceeded)"
698 # gdb_test_multiple COMMAND MESSAGE EXPECT_ARGUMENTS
699 # Send a command to gdb; test the result.
701 # COMMAND is the command to execute, send to GDB with send_gdb. If
702 # this is the null string no command is sent.
703 # MESSAGE is a message to be printed with the built-in failure patterns
704 # if one of them matches. If MESSAGE is empty COMMAND will be used.
705 # EXPECT_ARGUMENTS will be fed to expect in addition to the standard
706 # patterns. Pattern elements will be evaluated in the caller's
707 # context; action elements will be executed in the caller's context.
708 # Unlike patterns for gdb_test, these patterns should generally include
709 # the final newline and prompt.
712 # 1 if the test failed, according to a built-in failure pattern
713 # 0 if only user-supplied patterns matched
714 # -1 if there was an internal error.
716 # You can use this function thus:
718 # gdb_test_multiple "print foo" "test foo" {
719 # -re "expected output 1" {
722 # -re "expected output 2" {
727 # Like with "expect", you can also specify the spawn id to match with
728 # -i "$id". Interesting spawn ids are $inferior_spawn_id and
729 # $gdb_spawn_id. The former matches inferior I/O, while the latter
730 # matches GDB I/O. E.g.:
732 # send_inferior "hello\n"
733 # gdb_test_multiple "continue" "test echo" {
734 # -i "$inferior_spawn_id" -re "^hello\r\nhello\r\n$" {
737 # -i "$gdb_spawn_id" -re "Breakpoint.*$gdb_prompt $" {
738 # fail "hit breakpoint"
742 # The standard patterns, such as "Inferior exited..." and "A problem
743 # ...", all being implicitly appended to that list. These are always
744 # expected from $gdb_spawn_id. IOW, callers do not need to worry
745 # about resetting "-i" back to $gdb_spawn_id explicitly.
747 proc gdb_test_multiple { command message user_code } {
748 global verbose use_gdb_stub
749 global gdb_prompt pagination_prompt
752 global inferior_exited_re
753 upvar timeout timeout
754 upvar expect_out expect_out
757 if { $message == "" } {
761 if [string match "*\[\r\n\]" $command] {
762 error "Invalid trailing newline in \"$message\" test"
765 if [string match "*\[\r\n\]*" $message] {
766 error "Invalid newline in \"$message\" test"
770 && [regexp -nocase {^\s*(r|run|star|start|at|att|atta|attac|attach)\M} \
772 error "gdbserver does not support $command without extended-remote"
775 # TCL/EXPECT WART ALERT
776 # Expect does something very strange when it receives a single braced
777 # argument. It splits it along word separators and performs substitutions.
778 # This means that { "[ab]" } is evaluated as "[ab]", but { "\[ab\]" } is
779 # evaluated as "\[ab\]". But that's not how TCL normally works; inside a
780 # double-quoted list item, "\[ab\]" is just a long way of representing
781 # "[ab]", because the backslashes will be removed by lindex.
783 # Unfortunately, there appears to be no easy way to duplicate the splitting
784 # that expect will do from within TCL. And many places make use of the
785 # "\[0-9\]" construct, so we need to support that; and some places make use
786 # of the "[func]" construct, so we need to support that too. In order to
787 # get this right we have to substitute quoted list elements differently
788 # from braced list elements.
790 # We do this roughly the same way that Expect does it. We have to use two
791 # lists, because if we leave unquoted newlines in the argument to uplevel
792 # they'll be treated as command separators, and if we escape newlines
793 # we mangle newlines inside of command blocks. This assumes that the
794 # input doesn't contain a pattern which contains actual embedded newlines
797 regsub -all {\n} ${user_code} { } subst_code
798 set subst_code [uplevel list $subst_code]
800 set processed_code ""
802 set expecting_action 0
804 foreach item $user_code subst_item $subst_code {
805 if { $item == "-n" || $item == "-notransfer" || $item == "-nocase" } {
806 lappend processed_code $item
809 if { $item == "-indices" || $item == "-re" || $item == "-ex" } {
810 lappend processed_code $item
813 if { $item == "-timeout" || $item == "-i" } {
815 lappend processed_code $item
818 if { $expecting_arg } {
820 lappend processed_code $subst_item
823 if { $expecting_action } {
824 lappend processed_code "uplevel [list $item]"
825 set expecting_action 0
826 # Cosmetic, no effect on the list.
827 append processed_code "\n"
830 set expecting_action 1
831 lappend processed_code $subst_item
832 if {$patterns != ""} {
835 append patterns "\"$subst_item\""
838 # Also purely cosmetic.
839 regsub -all {\r} $patterns {\\r} patterns
840 regsub -all {\n} $patterns {\\n} patterns
843 send_user "Sending \"$command\" to gdb\n"
844 send_user "Looking to match \"$patterns\"\n"
845 send_user "Message is \"$message\"\n"
849 set string "${command}\n"
850 if { $command != "" } {
851 set multi_line_re "\[\r\n\] *>"
852 while { "$string" != "" } {
853 set foo [string first "\n" "$string"]
854 set len [string length "$string"]
855 if { $foo < [expr $len - 1] } {
856 set str [string range "$string" 0 $foo]
857 if { [send_gdb "$str"] != "" } {
860 if { ! $suppress_flag } {
861 perror "Couldn't send $command to GDB."
866 # since we're checking if each line of the multi-line
867 # command are 'accepted' by GDB here,
868 # we need to set -notransfer expect option so that
869 # command output is not lost for pattern matching
872 -notransfer -re "$multi_line_re$" { verbose "partial: match" 3 }
873 timeout { verbose "partial: timeout" 3 }
875 set string [string range "$string" [expr $foo + 1] end]
876 set multi_line_re "$multi_line_re.*\[\r\n\] *>"
881 if { "$string" != "" } {
882 if { [send_gdb "$string"] != "" } {
885 if { ! $suppress_flag } {
886 perror "Couldn't send $command to GDB."
895 -re ".*A problem internal to GDB has been detected" {
896 fail "$message (GDB internal error)"
897 gdb_internal_error_resync
900 -re "\\*\\*\\* DOSEXIT code.*" {
901 if { $message != "" } {
904 gdb_suppress_entire_file "GDB died"
908 append code $processed_code
910 # Reset the spawn id, in case the processed code used -i.
916 -re "Ending remote debugging.*$gdb_prompt $" {
917 if ![isnative] then {
918 warning "Can`t communicate to remote target."
924 -re "Undefined\[a-z\]* command:.*$gdb_prompt $" {
925 perror "Undefined command \"$command\"."
929 -re "Ambiguous command.*$gdb_prompt $" {
930 perror "\"$command\" is not a unique command name."
934 -re "$inferior_exited_re with code \[0-9\]+.*$gdb_prompt $" {
935 if ![string match "" $message] then {
936 set errmsg "$message (the program exited)"
938 set errmsg "$command (the program exited)"
943 -re "$inferior_exited_re normally.*$gdb_prompt $" {
944 if ![string match "" $message] then {
945 set errmsg "$message (the program exited)"
947 set errmsg "$command (the program exited)"
952 -re "The program is not being run.*$gdb_prompt $" {
953 if ![string match "" $message] then {
954 set errmsg "$message (the program is no longer running)"
956 set errmsg "$command (the program is no longer running)"
961 -re "\r\n$gdb_prompt $" {
962 if ![string match "" $message] then {
967 -re "$pagination_prompt" {
969 perror "Window too small."
973 -re "\\((y or n|y or \\\[n\\\]|\\\[y\\\] or n)\\) " {
974 send_gdb "n\n" answer
975 gdb_expect -re "$gdb_prompt $"
976 fail "$message (got interactive prompt)"
979 -re "\\\[0\\\] cancel\r\n\\\[1\\\] all.*\r\n> $" {
981 gdb_expect -re "$gdb_prompt $"
982 fail "$message (got breakpoint menu)"
988 perror "GDB process no longer exists"
989 set wait_status [wait -i $gdb_spawn_id]
990 verbose -log "GDB process exited with wait status $wait_status"
991 if { $message != "" } {
998 # Now patterns that apply to any spawn id specified.
1002 perror "Process no longer exists"
1003 if { $message != "" } {
1009 perror "internal buffer is full."
1014 if ![string match "" $message] then {
1015 fail "$message (timeout)"
1021 # remote_expect calls the eof section if there is an error on the
1022 # expect call. We already have eof sections above, and we don't
1023 # want them to get called in that situation. Since the last eof
1024 # section becomes the error section, here we define another eof
1025 # section, but with an empty spawn_id list, so that it won't ever
1029 # This comment is here because the eof section must not be
1030 # the empty string, otherwise remote_expect won't realize
1036 set code [catch {gdb_expect $code} string]
1038 global errorInfo errorCode
1039 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
1040 } elseif {$code > 1} {
1041 return -code $code $string
1046 # gdb_test COMMAND PATTERN MESSAGE QUESTION RESPONSE
1047 # Send a command to gdb; test the result.
1049 # COMMAND is the command to execute, send to GDB with send_gdb. If
1050 # this is the null string no command is sent.
1051 # PATTERN is the pattern to match for a PASS, and must NOT include
1052 # the \r\n sequence immediately before the gdb prompt. This argument
1053 # may be omitted to just match the prompt, ignoring whatever output
1055 # MESSAGE is an optional message to be printed. If this is
1056 # omitted, then the pass/fail messages use the command string as the
1057 # message. (If this is the empty string, then sometimes we don't
1058 # call pass or fail at all; I don't understand this at all.)
1059 # QUESTION is a question GDB may ask in response to COMMAND, like
1061 # RESPONSE is the response to send if QUESTION appears.
1064 # 1 if the test failed,
1065 # 0 if the test passes,
1066 # -1 if there was an internal error.
1068 proc gdb_test { args } {
1070 upvar timeout timeout
1072 if [llength $args]>2 then {
1073 set message [lindex $args 2]
1075 set message [lindex $args 0]
1077 set command [lindex $args 0]
1078 set pattern [lindex $args 1]
1080 if [llength $args]==5 {
1081 set question_string [lindex $args 3]
1082 set response_string [lindex $args 4]
1084 set question_string "^FOOBAR$"
1087 return [gdb_test_multiple $command $message {
1088 -re "\[\r\n\]*(?:$pattern)\[\r\n\]+$gdb_prompt $" {
1089 if ![string match "" $message] then {
1093 -re "(${question_string})$" {
1094 send_gdb "$response_string\n"
1100 # gdb_test_no_output COMMAND MESSAGE
1101 # Send a command to GDB and verify that this command generated no output.
1103 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
1104 # parameters. If MESSAGE is ommitted, then COMMAND will be used as
1105 # the message. (If MESSAGE is the empty string, then sometimes we do not
1106 # call pass or fail at all; I don't understand this at all.)
1108 proc gdb_test_no_output { args } {
1110 set command [lindex $args 0]
1111 if [llength $args]>1 then {
1112 set message [lindex $args 1]
1114 set message $command
1117 set command_regex [string_to_regexp $command]
1118 gdb_test_multiple $command $message {
1119 -re "^$command_regex\r\n$gdb_prompt $" {
1120 if ![string match "" $message] then {
1127 # Send a command and then wait for a sequence of outputs.
1128 # This is useful when the sequence is long and contains ".*", a single
1129 # regexp to match the entire output can get a timeout much easier.
1131 # COMMAND is the command to execute, send to GDB with send_gdb. If
1132 # this is the null string no command is sent.
1133 # TEST_NAME is passed to pass/fail. COMMAND is used if TEST_NAME is "".
1134 # EXPECTED_OUTPUT_LIST is a list of regexps of expected output, which are
1135 # processed in order, and all must be present in the output.
1137 # It is unnecessary to specify ".*" at the beginning or end of any regexp,
1138 # there is an implicit ".*" between each element of EXPECTED_OUTPUT_LIST.
1139 # There is also an implicit ".*" between the last regexp and the gdb prompt.
1141 # Like gdb_test and gdb_test_multiple, the output is expected to end with the
1142 # gdb prompt, which must not be specified in EXPECTED_OUTPUT_LIST.
1145 # 1 if the test failed,
1146 # 0 if the test passes,
1147 # -1 if there was an internal error.
1149 proc gdb_test_sequence { command test_name expected_output_list } {
1151 if { $test_name == "" } {
1152 set test_name $command
1154 lappend expected_output_list ""; # implicit ".*" before gdb prompt
1155 if { $command != "" } {
1156 send_gdb "$command\n"
1158 return [gdb_expect_list $test_name "$gdb_prompt $" $expected_output_list]
1162 # Test that a command gives an error. For pass or fail, return
1163 # a 1 to indicate that more tests can proceed. However a timeout
1164 # is a serious error, generates a special fail message, and causes
1165 # a 0 to be returned to indicate that more tests are likely to fail
1168 proc test_print_reject { args } {
1172 if [llength $args]==2 then {
1173 set expectthis [lindex $args 1]
1175 set expectthis "should never match this bogus string"
1177 set sendthis [lindex $args 0]
1178 if $verbose>2 then {
1179 send_user "Sending \"$sendthis\" to gdb\n"
1180 send_user "Looking to match \"$expectthis\"\n"
1182 send_gdb "$sendthis\n"
1183 #FIXME: Should add timeout as parameter.
1185 -re "A .* in expression.*\\.*$gdb_prompt $" {
1186 pass "reject $sendthis"
1189 -re "Invalid syntax in expression.*$gdb_prompt $" {
1190 pass "reject $sendthis"
1193 -re "Junk after end of expression.*$gdb_prompt $" {
1194 pass "reject $sendthis"
1197 -re "Invalid number.*$gdb_prompt $" {
1198 pass "reject $sendthis"
1201 -re "Invalid character constant.*$gdb_prompt $" {
1202 pass "reject $sendthis"
1205 -re "No symbol table is loaded.*$gdb_prompt $" {
1206 pass "reject $sendthis"
1209 -re "No symbol .* in current context.*$gdb_prompt $" {
1210 pass "reject $sendthis"
1213 -re "Unmatched single quote.*$gdb_prompt $" {
1214 pass "reject $sendthis"
1217 -re "A character constant must contain at least one character.*$gdb_prompt $" {
1218 pass "reject $sendthis"
1221 -re "$expectthis.*$gdb_prompt $" {
1222 pass "reject $sendthis"
1225 -re ".*$gdb_prompt $" {
1226 fail "reject $sendthis"
1230 fail "reject $sendthis (eof or timeout)"
1237 # Same as gdb_test, but the second parameter is not a regexp,
1238 # but a string that must match exactly.
1240 proc gdb_test_exact { args } {
1241 upvar timeout timeout
1243 set command [lindex $args 0]
1245 # This applies a special meaning to a null string pattern. Without
1246 # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
1247 # messages from commands that should have no output except a new
1248 # prompt. With this, only results of a null string will match a null
1251 set pattern [lindex $args 1]
1252 if [string match $pattern ""] {
1253 set pattern [string_to_regexp [lindex $args 0]]
1255 set pattern [string_to_regexp [lindex $args 1]]
1258 # It is most natural to write the pattern argument with only
1259 # embedded \n's, especially if you are trying to avoid Tcl quoting
1260 # problems. But gdb_expect really wants to see \r\n in patterns. So
1261 # transform the pattern here. First transform \r\n back to \n, in
1262 # case some users of gdb_test_exact already do the right thing.
1263 regsub -all "\r\n" $pattern "\n" pattern
1264 regsub -all "\n" $pattern "\r\n" pattern
1265 if [llength $args]==3 then {
1266 set message [lindex $args 2]
1268 set message $command
1271 return [gdb_test $command $pattern $message]
1274 # Wrapper around gdb_test_multiple that looks for a list of expected
1275 # output elements, but which can appear in any order.
1276 # CMD is the gdb command.
1277 # NAME is the name of the test.
1278 # ELM_FIND_REGEXP specifies how to partition the output into elements to
1280 # ELM_EXTRACT_REGEXP specifies the part of ELM_FIND_REGEXP to compare.
1281 # RESULT_MATCH_LIST is a list of exact matches for each expected element.
1282 # All elements of RESULT_MATCH_LIST must appear for the test to pass.
1284 # A typical use of ELM_FIND_REGEXP/ELM_EXTRACT_REGEXP is to extract one line
1285 # of text per element and then strip trailing \r\n's.
1287 # gdb_test_list_exact "foo" "bar" \
1288 # "\[^\r\n\]+\[\r\n\]+" \
1291 # {expected result 1} \
1292 # {expected result 2} \
1295 proc gdb_test_list_exact { cmd name elm_find_regexp elm_extract_regexp result_match_list } {
1298 set matches [lsort $result_match_list]
1300 gdb_test_multiple $cmd $name {
1301 "$cmd\[\r\n\]" { exp_continue }
1302 -re $elm_find_regexp {
1303 set str $expect_out(0,string)
1304 verbose -log "seen: $str" 3
1305 regexp -- $elm_extract_regexp $str elm_seen
1306 verbose -log "extracted: $elm_seen" 3
1307 lappend seen $elm_seen
1310 -re "$gdb_prompt $" {
1312 foreach got [lsort $seen] have $matches {
1313 if {![string equal $got $have]} {
1318 if {[string length $failed] != 0} {
1319 fail "$name ($failed not found)"
1327 # gdb_test_stdio COMMAND INFERIOR_PATTERN GDB_PATTERN MESSAGE
1328 # Send a command to gdb; expect inferior and gdb output.
1330 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
1333 # INFERIOR_PATTERN is the pattern to match against inferior output.
1335 # GDB_PATTERN is the pattern to match against gdb output, and must NOT
1336 # include the \r\n sequence immediately before the gdb prompt, nor the
1337 # prompt. The default is empty.
1339 # Both inferior and gdb patterns must match for a PASS.
1341 # If MESSAGE is ommitted, then COMMAND will be used as the message.
1344 # 1 if the test failed,
1345 # 0 if the test passes,
1346 # -1 if there was an internal error.
1349 proc gdb_test_stdio {command inferior_pattern {gdb_pattern ""} {message ""}} {
1350 global inferior_spawn_id gdb_spawn_id
1353 if {$message == ""} {
1354 set message $command
1357 set inferior_matched 0
1360 # Use an indirect spawn id list, and remove the inferior spawn id
1361 # from the expected output as soon as it matches, in case
1362 # $inferior_pattern happens to be a prefix of the resulting full
1363 # gdb pattern below (e.g., "\r\n").
1364 global gdb_test_stdio_spawn_id_list
1365 set gdb_test_stdio_spawn_id_list "$inferior_spawn_id"
1367 # Note that if $inferior_spawn_id and $gdb_spawn_id are different,
1368 # then we may see gdb's output arriving before the inferior's
1370 set res [gdb_test_multiple $command $message {
1371 -i gdb_test_stdio_spawn_id_list -re "$inferior_pattern" {
1372 set inferior_matched 1
1373 if {!$gdb_matched} {
1374 set gdb_test_stdio_spawn_id_list ""
1378 -i $gdb_spawn_id -re "$gdb_pattern\r\n$gdb_prompt $" {
1380 if {!$inferior_matched} {
1388 verbose -log "inferior_matched=$inferior_matched, gdb_matched=$gdb_matched"
1393 # get_print_expr_at_depths EXP OUTPUTS
1395 # Used for testing 'set print max-depth'. Prints the expression EXP
1396 # with 'set print max-depth' set to various depths. OUTPUTS is a list
1397 # of `n` different patterns to match at each of the depths from 0 to
1400 # This proc does one final check with the max-depth set to 'unlimited'
1401 # which is tested against the last pattern in the OUTPUTS list. The
1402 # OUTPUTS list is therefore required to match every depth from 0 to a
1403 # depth where the whole of EXP is printed with no ellipsis.
1405 # This proc leaves the 'set print max-depth' set to 'unlimited'.
1406 proc gdb_print_expr_at_depths {exp outputs} {
1407 for { set depth 0 } { $depth <= [llength $outputs] } { incr depth } {
1408 if { $depth == [llength $outputs] } {
1409 set expected_result [lindex $outputs [expr [llength $outputs] - 1]]
1410 set depth_string "unlimited"
1412 set expected_result [lindex $outputs $depth]
1413 set depth_string $depth
1416 with_test_prefix "exp='$exp': depth=${depth_string}" {
1417 gdb_test_no_output "set print max-depth ${depth_string}"
1418 gdb_test "p $exp" "$expected_result"
1425 # Issue a PASS and return true if evaluating CONDITION in the caller's
1426 # frame returns true, and issue a FAIL and return false otherwise.
1427 # MESSAGE is the pass/fail message to be printed. If MESSAGE is
1428 # omitted or is empty, then the pass/fail messages use the condition
1429 # string as the message.
1431 proc gdb_assert { condition {message ""} } {
1432 if { $message == ""} {
1433 set message $condition
1436 set res [uplevel 1 expr $condition]
1445 proc gdb_reinitialize_dir { subdir } {
1448 if [is_remote host] {
1453 -re "Reinitialize source path to empty.*y or n. " {
1454 send_gdb "y\n" answer
1456 -re "Source directories searched.*$gdb_prompt $" {
1457 send_gdb "dir $subdir\n"
1459 -re "Source directories searched.*$gdb_prompt $" {
1460 verbose "Dir set to $subdir"
1462 -re "$gdb_prompt $" {
1463 perror "Dir \"$subdir\" failed."
1467 -re "$gdb_prompt $" {
1468 perror "Dir \"$subdir\" failed."
1472 -re "$gdb_prompt $" {
1473 perror "Dir \"$subdir\" failed."
1479 # gdb_exit -- exit the GDB, killing the target program if necessary
1481 proc default_gdb_exit {} {
1483 global INTERNAL_GDBFLAGS GDBFLAGS
1485 global gdb_spawn_id inferior_spawn_id
1486 global inotify_log_file
1488 gdb_stop_suppressing_tests
1490 if ![info exists gdb_spawn_id] {
1494 verbose "Quitting $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1496 if {[info exists inotify_log_file] && [file exists $inotify_log_file]} {
1497 set fd [open $inotify_log_file]
1498 set data [read -nonewline $fd]
1501 if {[string compare $data ""] != 0} {
1502 warning "parallel-unsafe file creations noticed"
1505 set fd [open $inotify_log_file w]
1510 if { [is_remote host] && [board_info host exists fileid] } {
1514 send_gdb "y\n" answer
1517 -re "DOSEXIT code" { }
1522 if ![is_remote host] {
1526 unset inferior_spawn_id
1529 # Load a file into the debugger.
1530 # The return value is 0 for success, -1 for failure.
1532 # This procedure also set the global variable GDB_FILE_CMD_DEBUG_INFO
1533 # to one of these values:
1535 # debug file was loaded successfully and has debug information
1536 # nodebug file was loaded successfully and has no debug information
1537 # lzma file was loaded, .gnu_debugdata found, but no LZMA support
1539 # fail file was not loaded
1541 # I tried returning this information as part of the return value,
1542 # but ran into a mess because of the many re-implementations of
1543 # gdb_load in config/*.exp.
1545 # TODO: gdb.base/sepdebug.exp and gdb.stabs/weird.exp might be able to use
1546 # this if they can get more information set.
1548 proc gdb_file_cmd { arg } {
1552 global last_loaded_file
1554 # Save this for the benefit of gdbserver-support.exp.
1555 set last_loaded_file $arg
1557 # Set whether debug info was found.
1558 # Default to "fail".
1559 global gdb_file_cmd_debug_info
1560 set gdb_file_cmd_debug_info "fail"
1562 if [is_remote host] {
1563 set arg [remote_download host $arg]
1565 perror "download failed"
1570 # The file command used to kill the remote target. For the benefit
1571 # of the testsuite, preserve this behavior. Mark as optional so it doesn't
1572 # get written to the stdin log.
1573 send_gdb "kill\n" optional
1575 -re "Kill the program being debugged. .y or n. $" {
1576 send_gdb "y\n" answer
1577 verbose "\t\tKilling previous program being debugged"
1580 -re "$gdb_prompt $" {
1585 send_gdb "file $arg\n"
1587 -re "Reading symbols from.*LZMA support was disabled.*$gdb_prompt $" {
1588 verbose "\t\tLoaded $arg into $GDB; .gnu_debugdata found but no LZMA available"
1589 set gdb_file_cmd_debug_info "lzma"
1592 -re "Reading symbols from.*no debugging symbols found.*$gdb_prompt $" {
1593 verbose "\t\tLoaded $arg into $GDB with no debugging symbols"
1594 set gdb_file_cmd_debug_info "nodebug"
1597 -re "Reading symbols from.*$gdb_prompt $" {
1598 verbose "\t\tLoaded $arg into $GDB"
1599 set gdb_file_cmd_debug_info "debug"
1602 -re "Load new symbol table from \".*\".*y or n. $" {
1603 send_gdb "y\n" answer
1605 -re "Reading symbols from.*$gdb_prompt $" {
1606 verbose "\t\tLoaded $arg with new symbol table into $GDB"
1607 set gdb_file_cmd_debug_info "debug"
1611 perror "Couldn't load $arg, other program already loaded (timeout)."
1615 perror "Couldn't load $arg, other program already loaded (eof)."
1620 -re "No such file or directory.*$gdb_prompt $" {
1621 perror "($arg) No such file or directory"
1624 -re "A problem internal to GDB has been detected" {
1625 fail "($arg) (GDB internal error)"
1626 gdb_internal_error_resync
1629 -re "$gdb_prompt $" {
1630 perror "Couldn't load $arg into $GDB."
1634 perror "Couldn't load $arg into $GDB (timeout)."
1638 # This is an attempt to detect a core dump, but seems not to
1639 # work. Perhaps we need to match .* followed by eof, in which
1640 # gdb_expect does not seem to have a way to do that.
1641 perror "Couldn't load $arg into $GDB (eof)."
1647 # Default gdb_spawn procedure.
1649 proc default_gdb_spawn { } {
1652 global INTERNAL_GDBFLAGS GDBFLAGS
1655 gdb_stop_suppressing_tests
1657 # Set the default value, it may be overriden later by specific testfile.
1659 # Use `set_board_info use_gdb_stub' for the board file to flag the inferior
1660 # is already started after connecting and run/attach are not supported.
1661 # This is used for the "remote" protocol. After GDB starts you should
1662 # check global $use_gdb_stub instead of the board as the testfile may force
1663 # a specific different target protocol itself.
1664 set use_gdb_stub [target_info exists use_gdb_stub]
1666 verbose "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1667 gdb_write_cmd_file "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1669 if [info exists gdb_spawn_id] {
1673 if ![is_remote host] {
1674 if { [which $GDB] == 0 } then {
1675 perror "$GDB does not exist."
1679 set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS [host_info gdb_opts]"]
1680 if { $res < 0 || $res == "" } {
1681 perror "Spawning $GDB failed."
1685 set gdb_spawn_id $res
1689 # Default gdb_start procedure.
1691 proc default_gdb_start { } {
1694 global inferior_spawn_id
1696 if [info exists gdb_spawn_id] {
1700 # Keep track of the number of times GDB has been launched.
1701 global gdb_instances
1711 # Default to assuming inferior I/O is done on GDB's terminal.
1712 if {![info exists inferior_spawn_id]} {
1713 set inferior_spawn_id $gdb_spawn_id
1716 # When running over NFS, particularly if running many simultaneous
1717 # tests on different hosts all using the same server, things can
1718 # get really slow. Give gdb at least 3 minutes to start up.
1720 -re "\[\r\n\]$gdb_prompt $" {
1721 verbose "GDB initialized."
1723 -re "$gdb_prompt $" {
1724 perror "GDB never initialized."
1729 perror "(timeout) GDB never initialized after 10 seconds."
1736 # force the height to "unlimited", so no pagers get used
1738 send_gdb "set height 0\n"
1740 -re "$gdb_prompt $" {
1741 verbose "Setting height to 0." 2
1744 warning "Couldn't set the height to 0"
1747 # force the width to "unlimited", so no wraparound occurs
1748 send_gdb "set width 0\n"
1750 -re "$gdb_prompt $" {
1751 verbose "Setting width to 0." 2
1754 warning "Couldn't set the width to 0."
1762 # Utility procedure to give user control of the gdb prompt in a script. It is
1763 # meant to be used for debugging test cases, and should not be left in the
1766 proc gdb_interact { } {
1768 set spawn_id $gdb_spawn_id
1770 send_user "+------------------------------------------+\n"
1771 send_user "| Script interrupted, you can now interact |\n"
1772 send_user "| with by gdb. Type >>> to continue. |\n"
1773 send_user "+------------------------------------------+\n"
1780 # Examine the output of compilation to determine whether compilation
1781 # failed or not. If it failed determine whether it is due to missing
1782 # compiler or due to compiler error. Report pass, fail or unsupported
1785 proc gdb_compile_test {src output} {
1786 if { $output == "" } {
1787 pass "compilation [file tail $src]"
1788 } elseif { [regexp {^[a-zA-Z_0-9]+: Can't find [^ ]+\.$} $output] } {
1789 unsupported "compilation [file tail $src]"
1790 } elseif { [regexp {.*: command not found[\r|\n]*$} $output] } {
1791 unsupported "compilation [file tail $src]"
1792 } elseif { [regexp {.*: [^\r\n]*compiler not installed[^\r\n]*[\r|\n]*$} $output] } {
1793 unsupported "compilation [file tail $src]"
1795 verbose -log "compilation failed: $output" 2
1796 fail "compilation [file tail $src]"
1800 # Return a 1 for configurations for which we don't even want to try to
1803 proc skip_cplus_tests {} {
1804 if { [istarget "h8300-*-*"] } {
1808 # The C++ IO streams are too large for HC11/HC12 and are thus not
1809 # available. The gdb C++ tests use them and don't compile.
1810 if { [istarget "m6811-*-*"] } {
1813 if { [istarget "m6812-*-*"] } {
1819 # Return a 1 for configurations for which don't have both C++ and the STL.
1821 proc skip_stl_tests {} {
1822 # Symbian supports the C++ language, but the STL is missing
1823 # (both headers and libraries).
1824 if { [istarget "arm*-*-symbianelf*"] } {
1828 return [skip_cplus_tests]
1831 # Return a 1 if I don't even want to try to test FORTRAN.
1833 proc skip_fortran_tests {} {
1837 # Return a 1 if I don't even want to try to test ada.
1839 proc skip_ada_tests {} {
1843 # Return a 1 if I don't even want to try to test GO.
1845 proc skip_go_tests {} {
1849 # Return a 1 if I don't even want to try to test D.
1851 proc skip_d_tests {} {
1855 # Return 1 to skip Rust tests, 0 to try them.
1856 proc skip_rust_tests {} {
1857 return [expr {![isnative]}]
1860 # Return a 1 for configurations that do not support Python scripting.
1861 # PROMPT_REGEXP is the expected prompt.
1863 proc skip_python_tests_prompt { prompt_regexp } {
1864 global gdb_py_is_py3k
1866 gdb_test_multiple "python print ('test')" "verify python support" {
1867 -re "not supported.*$prompt_regexp" {
1868 unsupported "Python support is disabled."
1871 -re "$prompt_regexp" {}
1874 gdb_test_multiple "python print (sys.version_info\[0\])" "check if python 3" {
1875 -re "3.*$prompt_regexp" {
1876 set gdb_py_is_py3k 1
1878 -re ".*$prompt_regexp" {
1879 set gdb_py_is_py3k 0
1886 # Return a 1 for configurations that do not support Python scripting.
1887 # Note: This also sets various globals that specify which version of Python
1888 # is in use. See skip_python_tests_prompt.
1890 proc skip_python_tests {} {
1892 return [skip_python_tests_prompt "$gdb_prompt $"]
1895 # Return a 1 if we should skip shared library tests.
1897 proc skip_shlib_tests {} {
1898 # Run the shared library tests on native systems.
1903 # An abbreviated list of remote targets where we should be able to
1904 # run shared library tests.
1905 if {([istarget *-*-linux*]
1906 || [istarget *-*-*bsd*]
1907 || [istarget *-*-solaris2*]
1908 || [istarget arm*-*-symbianelf*]
1909 || [istarget *-*-mingw*]
1910 || [istarget *-*-cygwin*]
1911 || [istarget *-*-pe*])} {
1918 # Return 1 if we should skip tui related tests.
1920 proc skip_tui_tests {} {
1923 gdb_test_multiple "help layout" "verify tui support" {
1924 -re "Undefined command: \"layout\".*$gdb_prompt $" {
1927 -re "$gdb_prompt $" {
1934 # Test files shall make sure all the test result lines in gdb.sum are
1935 # unique in a test run, so that comparing the gdb.sum files of two
1936 # test runs gives correct results. Test files that exercise
1937 # variations of the same tests more than once, shall prefix the
1938 # different test invocations with different identifying strings in
1939 # order to make them unique.
1941 # About test prefixes:
1943 # $pf_prefix is the string that dejagnu prints after the result (FAIL,
1944 # PASS, etc.), and before the test message/name in gdb.sum. E.g., the
1945 # underlined substring in
1947 # PASS: gdb.base/mytest.exp: some test
1948 # ^^^^^^^^^^^^^^^^^^^^
1952 # The easiest way to adjust the test prefix is to append a test
1953 # variation prefix to the $pf_prefix, using the with_test_prefix
1956 # proc do_tests {} {
1957 # gdb_test ... ... "test foo"
1958 # gdb_test ... ... "test bar"
1960 # with_test_prefix "subvariation a" {
1961 # gdb_test ... ... "test x"
1964 # with_test_prefix "subvariation b" {
1965 # gdb_test ... ... "test x"
1969 # with_test_prefix "variation1" {
1970 # ...do setup for variation 1...
1974 # with_test_prefix "variation2" {
1975 # ...do setup for variation 2...
1981 # PASS: gdb.base/mytest.exp: variation1: test foo
1982 # PASS: gdb.base/mytest.exp: variation1: test bar
1983 # PASS: gdb.base/mytest.exp: variation1: subvariation a: test x
1984 # PASS: gdb.base/mytest.exp: variation1: subvariation b: test x
1985 # PASS: gdb.base/mytest.exp: variation2: test foo
1986 # PASS: gdb.base/mytest.exp: variation2: test bar
1987 # PASS: gdb.base/mytest.exp: variation2: subvariation a: test x
1988 # PASS: gdb.base/mytest.exp: variation2: subvariation b: test x
1990 # If for some reason more flexibility is necessary, one can also
1991 # manipulate the pf_prefix global directly, treating it as a string.
1995 # set saved_pf_prefix
1996 # append pf_prefix "${foo}: bar"
1997 # ... actual tests ...
1998 # set pf_prefix $saved_pf_prefix
2001 # Run BODY in the context of the caller, with the current test prefix
2002 # (pf_prefix) appended with one space, then PREFIX, and then a colon.
2003 # Returns the result of BODY.
2005 proc with_test_prefix { prefix body } {
2008 set saved $pf_prefix
2009 append pf_prefix " " $prefix ":"
2010 set code [catch {uplevel 1 $body} result]
2011 set pf_prefix $saved
2014 global errorInfo errorCode
2015 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2017 return -code $code $result
2021 # Wrapper for foreach that calls with_test_prefix on each iteration,
2022 # including the iterator's name and current value in the prefix.
2024 proc foreach_with_prefix {var list body} {
2026 foreach myvar $list {
2027 with_test_prefix "$var=$myvar" {
2033 # Like TCL's native proc, but defines a procedure that wraps its body
2034 # within 'with_test_prefix "$proc_name" { ... }'.
2035 proc proc_with_prefix {name arguments body} {
2036 # Define the advertised proc.
2037 proc $name $arguments [list with_test_prefix $name $body]
2041 # Run BODY in the context of the caller. After BODY is run, the variables
2042 # listed in VARS will be reset to the values they had before BODY was run.
2044 # This is useful for providing a scope in which it is safe to temporarily
2045 # modify global variables, e.g.
2047 # global INTERNAL_GDBFLAGS
2050 # set foo GDBHISTSIZE
2052 # save_vars { INTERNAL_GDBFLAGS env($foo) env(HOME) } {
2053 # append INTERNAL_GDBFLAGS " -nx"
2054 # unset -nocomplain env(GDBHISTSIZE)
2059 # Here, although INTERNAL_GDBFLAGS, env(GDBHISTSIZE) and env(HOME) may be
2060 # modified inside BODY, this proc guarantees that the modifications will be
2061 # undone after BODY finishes executing.
2063 proc save_vars { vars body } {
2064 array set saved_scalars { }
2065 array set saved_arrays { }
2069 # First evaluate VAR in the context of the caller in case the variable
2070 # name may be a not-yet-interpolated string like env($foo)
2071 set var [uplevel 1 list $var]
2073 if [uplevel 1 [list info exists $var]] {
2074 if [uplevel 1 [list array exists $var]] {
2075 set saved_arrays($var) [uplevel 1 [list array get $var]]
2077 set saved_scalars($var) [uplevel 1 [list set $var]]
2080 lappend unset_vars $var
2084 set code [catch {uplevel 1 $body} result]
2086 foreach {var value} [array get saved_scalars] {
2087 uplevel 1 [list set $var $value]
2090 foreach {var value} [array get saved_arrays] {
2091 uplevel 1 [list unset $var]
2092 uplevel 1 [list array set $var $value]
2095 foreach var $unset_vars {
2096 uplevel 1 [list unset -nocomplain $var]
2100 global errorInfo errorCode
2101 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2103 return -code $code $result
2107 # Run tests in BODY with the current working directory (CWD) set to
2108 # DIR. When BODY is finished, restore the original CWD. Return the
2111 # This procedure doesn't check if DIR is a valid directory, so you
2112 # have to make sure of that.
2114 proc with_cwd { dir body } {
2116 verbose -log "Switching to directory $dir (saved CWD: $saved_dir)."
2119 set code [catch {uplevel 1 $body} result]
2121 verbose -log "Switching back to $saved_dir."
2125 global errorInfo errorCode
2126 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2128 return -code $code $result
2132 # Run tests in BODY with GDB prompt and variable $gdb_prompt set to
2133 # PROMPT. When BODY is finished, restore GDB prompt and variable
2135 # Returns the result of BODY.
2139 # 1) If you want to use, for example, "(foo)" as the prompt you must pass it
2140 # as "(foo)", and not the regexp form "\(foo\)" (expressed as "\\(foo\\)" in
2141 # TCL). PROMPT is internally converted to a suitable regexp for matching.
2142 # We do the conversion from "(foo)" to "\(foo\)" here for a few reasons:
2143 # a) It's more intuitive for callers to pass the plain text form.
2144 # b) We need two forms of the prompt:
2145 # - a regexp to use in output matching,
2146 # - a value to pass to the "set prompt" command.
2147 # c) It's easier to convert the plain text form to its regexp form.
2149 # 2) Don't add a trailing space, we do that here.
2151 proc with_gdb_prompt { prompt body } {
2154 # Convert "(foo)" to "\(foo\)".
2155 # We don't use string_to_regexp because while it works today it's not
2156 # clear it will work tomorrow: the value we need must work as both a
2157 # regexp *and* as the argument to the "set prompt" command, at least until
2158 # we start recording both forms separately instead of just $gdb_prompt.
2159 # The testsuite is pretty-much hardwired to interpret $gdb_prompt as the
2161 regsub -all {[]*+.|()^$\[\\]} $prompt {\\&} prompt
2163 set saved $gdb_prompt
2165 verbose -log "Setting gdb prompt to \"$prompt \"."
2166 set gdb_prompt $prompt
2167 gdb_test_no_output "set prompt $prompt " ""
2169 set code [catch {uplevel 1 $body} result]
2171 verbose -log "Restoring gdb prompt to \"$saved \"."
2172 set gdb_prompt $saved
2173 gdb_test_no_output "set prompt $saved " ""
2176 global errorInfo errorCode
2177 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2179 return -code $code $result
2183 # Run tests in BODY with target-charset setting to TARGET_CHARSET. When
2184 # BODY is finished, restore target-charset.
2186 proc with_target_charset { target_charset body } {
2190 gdb_test_multiple "show target-charset" "" {
2191 -re "The target character set is \".*; currently (.*)\"\..*$gdb_prompt " {
2192 set saved $expect_out(1,string)
2194 -re "The target character set is \"(.*)\".*$gdb_prompt " {
2195 set saved $expect_out(1,string)
2197 -re ".*$gdb_prompt " {
2198 fail "get target-charset"
2202 gdb_test_no_output "set target-charset $target_charset" ""
2204 set code [catch {uplevel 1 $body} result]
2206 gdb_test_no_output "set target-charset $saved" ""
2209 global errorInfo errorCode
2210 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2212 return -code $code $result
2216 # Switch the default spawn id to SPAWN_ID, so that gdb_test,
2217 # mi_gdb_test etc. default to using it.
2219 proc switch_gdb_spawn_id {spawn_id} {
2221 global board board_info
2223 set gdb_spawn_id $spawn_id
2224 set board [host_info name]
2225 set board_info($board,fileid) $spawn_id
2228 # Clear the default spawn id.
2230 proc clear_gdb_spawn_id {} {
2232 global board board_info
2234 unset -nocomplain gdb_spawn_id
2235 set board [host_info name]
2236 unset -nocomplain board_info($board,fileid)
2239 # Run BODY with SPAWN_ID as current spawn id.
2241 proc with_spawn_id { spawn_id body } {
2244 if [info exists gdb_spawn_id] {
2245 set saved_spawn_id $gdb_spawn_id
2248 switch_gdb_spawn_id $spawn_id
2250 set code [catch {uplevel 1 $body} result]
2252 if [info exists saved_spawn_id] {
2253 switch_gdb_spawn_id $saved_spawn_id
2259 global errorInfo errorCode
2260 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2262 return -code $code $result
2266 # Select the largest timeout from all the timeouts:
2267 # - the local "timeout" variable of the scope two levels above,
2268 # - the global "timeout" variable,
2269 # - the board variable "gdb,timeout".
2271 proc get_largest_timeout {} {
2272 upvar #0 timeout gtimeout
2273 upvar 2 timeout timeout
2276 if [info exists timeout] {
2279 if { [info exists gtimeout] && $gtimeout > $tmt } {
2282 if { [target_info exists gdb,timeout]
2283 && [target_info gdb,timeout] > $tmt } {
2284 set tmt [target_info gdb,timeout]
2294 # Run tests in BODY with timeout increased by factor of FACTOR. When
2295 # BODY is finished, restore timeout.
2297 proc with_timeout_factor { factor body } {
2300 set savedtimeout $timeout
2302 set timeout [expr [get_largest_timeout] * $factor]
2303 set code [catch {uplevel 1 $body} result]
2305 set timeout $savedtimeout
2307 global errorInfo errorCode
2308 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2310 return -code $code $result
2314 # Return 1 if _Complex types are supported, otherwise, return 0.
2316 gdb_caching_proc support_complex_tests {
2318 if { [gdb_skip_float_test] } {
2319 # If floating point is not supported, _Complex is not
2324 # Compile a test program containing _Complex types.
2326 return [gdb_can_simple_compile complex {
2330 _Complex long double cld;
2336 # Return 1 if GDB can get a type for siginfo from the target, otherwise
2339 proc supports_get_siginfo_type {} {
2340 if { [istarget "*-*-linux*"] } {
2347 # Return 1 if the target supports hardware single stepping.
2349 proc can_hardware_single_step {} {
2351 if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
2352 || [istarget "tic6x-*-*"] || [istarget "sparc*-*-linux*"]
2353 || [istarget "nios2-*-*"] } {
2360 # Return 1 if target hardware or OS supports single stepping to signal
2361 # handler, otherwise, return 0.
2363 proc can_single_step_to_signal_handler {} {
2364 # Targets don't have hardware single step. On these targets, when
2365 # a signal is delivered during software single step, gdb is unable
2366 # to determine the next instruction addresses, because start of signal
2367 # handler is one of them.
2368 return [can_hardware_single_step]
2371 # Return 1 if target supports process record, otherwise return 0.
2373 proc supports_process_record {} {
2375 if [target_info exists gdb,use_precord] {
2376 return [target_info gdb,use_precord]
2379 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2380 || [istarget "i\[34567\]86-*-linux*"]
2381 || [istarget "aarch64*-*-linux*"]
2382 || [istarget "powerpc*-*-linux*"]
2383 || [istarget "s390*-*-linux*"] } {
2390 # Return 1 if target supports reverse debugging, otherwise return 0.
2392 proc supports_reverse {} {
2394 if [target_info exists gdb,can_reverse] {
2395 return [target_info gdb,can_reverse]
2398 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2399 || [istarget "i\[34567\]86-*-linux*"]
2400 || [istarget "aarch64*-*-linux*"]
2401 || [istarget "powerpc*-*-linux*"]
2402 || [istarget "s390*-*-linux*"] } {
2409 # Return 1 if readline library is used.
2411 proc readline_is_used { } {
2414 gdb_test_multiple "show editing" "" {
2415 -re ".*Editing of command lines as they are typed is on\..*$gdb_prompt $" {
2418 -re ".*$gdb_prompt $" {
2424 # Return 1 if target is ELF.
2425 gdb_caching_proc is_elf_target {
2426 set me "is_elf_target"
2428 set src { int foo () {return 0;} }
2429 if {![gdb_simple_compile elf_target $src]} {
2433 set fp_obj [open $obj "r"]
2434 fconfigure $fp_obj -translation binary
2435 set data [read $fp_obj]
2440 set ELFMAG "\u007FELF"
2442 if {[string compare -length 4 $data $ELFMAG] != 0} {
2443 verbose "$me: returning 0" 2
2447 verbose "$me: returning 1" 2
2451 # Return 1 if the memory at address zero is readable.
2453 gdb_caching_proc is_address_zero_readable {
2457 gdb_test_multiple "x 0" "" {
2458 -re "Cannot access memory at address 0x0.*$gdb_prompt $" {
2461 -re ".*$gdb_prompt $" {
2469 # Produce source file NAME and write SOURCES into it.
2471 proc gdb_produce_source { name sources } {
2473 set f [open $name "w"]
2479 # Return 1 if target is ILP32.
2480 # This cannot be decided simply from looking at the target string,
2481 # as it might depend on externally passed compiler options like -m64.
2482 gdb_caching_proc is_ilp32_target {
2483 return [gdb_can_simple_compile is_ilp32_target {
2484 int dummy[sizeof (int) == 4
2485 && sizeof (void *) == 4
2486 && sizeof (long) == 4 ? 1 : -1];
2490 # Return 1 if target is LP64.
2491 # This cannot be decided simply from looking at the target string,
2492 # as it might depend on externally passed compiler options like -m64.
2493 gdb_caching_proc is_lp64_target {
2494 return [gdb_can_simple_compile is_lp64_target {
2495 int dummy[sizeof (int) == 4
2496 && sizeof (void *) == 8
2497 && sizeof (long) == 8 ? 1 : -1];
2501 # Return 1 if target has 64 bit addresses.
2502 # This cannot be decided simply from looking at the target string,
2503 # as it might depend on externally passed compiler options like -m64.
2504 gdb_caching_proc is_64_target {
2505 return [gdb_can_simple_compile is_64_target {
2506 int function(void) { return 3; }
2507 int dummy[sizeof (&function) == 8 ? 1 : -1];
2511 # Return 1 if target has x86_64 registers - either amd64 or x32.
2512 # x32 target identifies as x86_64-*-linux*, therefore it cannot be determined
2513 # just from the target string.
2514 gdb_caching_proc is_amd64_regs_target {
2515 if {![istarget "x86_64-*-*"] && ![istarget "i?86-*"]} {
2519 return [gdb_can_simple_compile is_amd64_regs_target {
2529 # Return 1 if this target is an x86 or x86-64 with -m32.
2530 proc is_x86_like_target {} {
2531 if {![istarget "x86_64-*-*"] && ![istarget i?86-*]} {
2534 return [expr [is_ilp32_target] && ![is_amd64_regs_target]]
2537 # Return 1 if this target is an arm or aarch32 on aarch64.
2539 gdb_caching_proc is_aarch32_target {
2540 if { [istarget "arm*-*-*"] } {
2544 if { ![istarget "aarch64*-*-*"] } {
2551 lappend list "\tmov $reg, $reg"
2554 return [gdb_can_simple_compile aarch32 [join $list \n]]
2557 # Return 1 if this target is an aarch64, either lp64 or ilp32.
2559 proc is_aarch64_target {} {
2560 if { ![istarget "aarch64*-*-*"] } {
2564 return [expr ![is_aarch32_target]]
2567 # Return 1 if displaced stepping is supported on target, otherwise, return 0.
2568 proc support_displaced_stepping {} {
2570 if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"]
2571 || [istarget "arm*-*-linux*"] || [istarget "powerpc-*-linux*"]
2572 || [istarget "powerpc64-*-linux*"] || [istarget "s390*-*-*"]
2573 || [istarget "aarch64*-*-linux*"] } {
2580 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2581 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2583 gdb_caching_proc skip_altivec_tests {
2584 global srcdir subdir gdb_prompt inferior_exited_re
2586 set me "skip_altivec_tests"
2588 # Some simulators are known to not support VMX instructions.
2589 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2590 verbose "$me: target known to not support VMX, returning 1" 2
2594 # Make sure we have a compiler that understands altivec.
2595 if [get_compiler_info] {
2596 warning "Could not get compiler info"
2599 if [test_compiler_info gcc*] {
2600 set compile_flags "additional_flags=-maltivec"
2601 } elseif [test_compiler_info xlc*] {
2602 set compile_flags "additional_flags=-qaltivec"
2604 verbose "Could not compile with altivec support, returning 1" 2
2608 # Compile a test program containing VMX instructions.
2612 asm volatile ("vor v0,v0,v0");
2614 asm volatile ("vor 0,0,0");
2619 if {![gdb_simple_compile $me $src executable $compile_flags]} {
2623 # Compilation succeeded so now run it via gdb.
2627 gdb_reinitialize_dir $srcdir/$subdir
2631 -re ".*Illegal instruction.*${gdb_prompt} $" {
2632 verbose -log "\n$me altivec hardware not detected"
2633 set skip_vmx_tests 1
2635 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2636 verbose -log "\n$me: altivec hardware detected"
2637 set skip_vmx_tests 0
2640 warning "\n$me: default case taken"
2641 set skip_vmx_tests 1
2645 remote_file build delete $obj
2647 verbose "$me: returning $skip_vmx_tests" 2
2648 return $skip_vmx_tests
2651 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2652 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2654 gdb_caching_proc skip_vsx_tests {
2655 global srcdir subdir gdb_prompt inferior_exited_re
2657 set me "skip_vsx_tests"
2659 # Some simulators are known to not support Altivec instructions, so
2660 # they won't support VSX instructions as well.
2661 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2662 verbose "$me: target known to not support VSX, returning 1" 2
2666 # Make sure we have a compiler that understands altivec.
2667 if [get_compiler_info] {
2668 warning "Could not get compiler info"
2671 if [test_compiler_info gcc*] {
2672 set compile_flags "additional_flags=-mvsx"
2673 } elseif [test_compiler_info xlc*] {
2674 set compile_flags "additional_flags=-qasm=gcc"
2676 verbose "Could not compile with vsx support, returning 1" 2
2680 # Compile a test program containing VSX instructions.
2683 double a[2] = { 1.0, 2.0 };
2685 asm volatile ("lxvd2x v0,v0,%[addr]" : : [addr] "r" (a));
2687 asm volatile ("lxvd2x 0,0,%[addr]" : : [addr] "r" (a));
2692 if {![gdb_simple_compile $me $src executable $compile_flags]} {
2696 # No error message, compilation succeeded so now run it via gdb.
2700 gdb_reinitialize_dir $srcdir/$subdir
2704 -re ".*Illegal instruction.*${gdb_prompt} $" {
2705 verbose -log "\n$me VSX hardware not detected"
2706 set skip_vsx_tests 1
2708 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2709 verbose -log "\n$me: VSX hardware detected"
2710 set skip_vsx_tests 0
2713 warning "\n$me: default case taken"
2714 set skip_vsx_tests 1
2718 remote_file build delete $obj
2720 verbose "$me: returning $skip_vsx_tests" 2
2721 return $skip_vsx_tests
2724 # Run a test on the target to see if it supports TSX hardware. Return 0 if so,
2725 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2727 gdb_caching_proc skip_tsx_tests {
2728 global srcdir subdir gdb_prompt inferior_exited_re
2730 set me "skip_tsx_tests"
2732 # Compile a test program.
2735 asm volatile ("xbegin .L0");
2736 asm volatile ("xend");
2737 asm volatile (".L0: nop");
2741 if {![gdb_simple_compile $me $src executable]} {
2745 # No error message, compilation succeeded so now run it via gdb.
2749 gdb_reinitialize_dir $srcdir/$subdir
2753 -re ".*Illegal instruction.*${gdb_prompt} $" {
2754 verbose -log "$me: TSX hardware not detected."
2755 set skip_tsx_tests 1
2757 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2758 verbose -log "$me: TSX hardware detected."
2759 set skip_tsx_tests 0
2762 warning "\n$me: default case taken."
2763 set skip_tsx_tests 1
2767 remote_file build delete $obj
2769 verbose "$me: returning $skip_tsx_tests" 2
2770 return $skip_tsx_tests
2773 # Run a test on the target to see if it supports btrace hardware. Return 0 if so,
2774 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2776 gdb_caching_proc skip_btrace_tests {
2777 global srcdir subdir gdb_prompt inferior_exited_re
2779 set me "skip_btrace_tests"
2780 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2781 verbose "$me: target does not support btrace, returning 1" 2
2785 # Compile a test program.
2786 set src { int main() { return 0; } }
2787 if {![gdb_simple_compile $me $src executable]} {
2791 # No error message, compilation succeeded so now run it via gdb.
2795 gdb_reinitialize_dir $srcdir/$subdir
2800 # In case of an unexpected output, we return 2 as a fail value.
2801 set skip_btrace_tests 2
2802 gdb_test_multiple "record btrace" "check btrace support" {
2803 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
2804 set skip_btrace_tests 1
2806 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
2807 set skip_btrace_tests 1
2809 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
2810 set skip_btrace_tests 1
2812 -re "^record btrace\r\n$gdb_prompt $" {
2813 set skip_btrace_tests 0
2817 remote_file build delete $obj
2819 verbose "$me: returning $skip_btrace_tests" 2
2820 return $skip_btrace_tests
2823 # Run a test on the target to see if it supports btrace pt hardware.
2824 # Return 0 if so, 1 if it does not. Based on 'check_vmx_hw_available'
2825 # from the GCC testsuite.
2827 gdb_caching_proc skip_btrace_pt_tests {
2828 global srcdir subdir gdb_prompt inferior_exited_re
2830 set me "skip_btrace_tests"
2831 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2832 verbose "$me: target does not support btrace, returning 1" 2
2836 # Compile a test program.
2837 set src { int main() { return 0; } }
2838 if {![gdb_simple_compile $me $src executable]} {
2842 # No error message, compilation succeeded so now run it via gdb.
2846 gdb_reinitialize_dir $srcdir/$subdir
2851 # In case of an unexpected output, we return 2 as a fail value.
2852 set skip_btrace_tests 2
2853 gdb_test_multiple "record btrace pt" "check btrace pt support" {
2854 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
2855 set skip_btrace_tests 1
2857 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
2858 set skip_btrace_tests 1
2860 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
2861 set skip_btrace_tests 1
2863 -re "support was disabled at compile time.*\r\n$gdb_prompt $" {
2864 set skip_btrace_tests 1
2866 -re "^record btrace pt\r\n$gdb_prompt $" {
2867 set skip_btrace_tests 0
2871 remote_file build delete $obj
2873 verbose "$me: returning $skip_btrace_tests" 2
2874 return $skip_btrace_tests
2877 # Run a test on the target to see if it supports Aarch64 SVE hardware.
2878 # Return 0 if so, 1 if it does not. Note this causes a restart of GDB.
2880 gdb_caching_proc skip_aarch64_sve_tests {
2881 global srcdir subdir gdb_prompt inferior_exited_re
2883 set me "skip_aarch64_sve_tests"
2885 if { ![is_aarch64_target]} {
2889 set compile_flags "{additional_flags=-march=armv8-a+sve}"
2891 # Compile a test program containing SVE instructions.
2894 asm volatile ("ptrue p0.b");
2898 if {![gdb_simple_compile $me $src executable $compile_flags]} {
2902 # Compilation succeeded so now run it via gdb.
2906 -re ".*Illegal instruction.*${gdb_prompt} $" {
2907 verbose -log "\n$me sve hardware not detected"
2908 set skip_sve_tests 1
2910 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2911 verbose -log "\n$me: sve hardware detected"
2912 set skip_sve_tests 0
2915 warning "\n$me: default case taken"
2916 set skip_sve_tests 1
2920 remote_file build delete $obj
2922 verbose "$me: returning $skip_sve_tests" 2
2923 return $skip_sve_tests
2927 # A helper that compiles a test case to see if __int128 is supported.
2928 proc gdb_int128_helper {lang} {
2929 return [gdb_can_simple_compile "i128-for-$lang" {
2931 int main() { return 0; }
2935 # Return true if the C compiler understands the __int128 type.
2936 gdb_caching_proc has_int128_c {
2937 return [gdb_int128_helper c]
2940 # Return true if the C++ compiler understands the __int128 type.
2941 gdb_caching_proc has_int128_cxx {
2942 return [gdb_int128_helper c++]
2945 # Return true if the IFUNC feature is unsupported.
2946 gdb_caching_proc skip_ifunc_tests {
2947 if [gdb_can_simple_compile ifunc {
2949 typedef void F (void);
2950 F* g (void) { return &f_; }
2951 void f () __attribute__ ((ifunc ("g")));
2959 # Return whether we should skip tests for showing inlined functions in
2960 # backtraces. Requires get_compiler_info and get_debug_format.
2962 proc skip_inline_frame_tests {} {
2963 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2964 if { ! [test_debug_format "DWARF 2"] } {
2968 # GCC before 4.1 does not emit DW_AT_call_file / DW_AT_call_line.
2969 if { ([test_compiler_info "gcc-2-*"]
2970 || [test_compiler_info "gcc-3-*"]
2971 || [test_compiler_info "gcc-4-0-*"]) } {
2978 # Return whether we should skip tests for showing variables from
2979 # inlined functions. Requires get_compiler_info and get_debug_format.
2981 proc skip_inline_var_tests {} {
2982 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2983 if { ! [test_debug_format "DWARF 2"] } {
2990 # Return a 1 if we should skip tests that require hardware breakpoints
2992 proc skip_hw_breakpoint_tests {} {
2993 # Skip tests if requested by the board (note that no_hardware_watchpoints
2994 # disables both watchpoints and breakpoints)
2995 if { [target_info exists gdb,no_hardware_watchpoints]} {
2999 # These targets support hardware breakpoints natively
3000 if { [istarget "i?86-*-*"]
3001 || [istarget "x86_64-*-*"]
3002 || [istarget "ia64-*-*"]
3003 || [istarget "arm*-*-*"]
3004 || [istarget "aarch64*-*-*"]
3005 || [istarget "s390*-*-*"] } {
3012 # Return a 1 if we should skip tests that require hardware watchpoints
3014 proc skip_hw_watchpoint_tests {} {
3015 # Skip tests if requested by the board
3016 if { [target_info exists gdb,no_hardware_watchpoints]} {
3020 # These targets support hardware watchpoints natively
3021 if { [istarget "i?86-*-*"]
3022 || [istarget "x86_64-*-*"]
3023 || [istarget "ia64-*-*"]
3024 || [istarget "arm*-*-*"]
3025 || [istarget "aarch64*-*-*"]
3026 || [istarget "powerpc*-*-linux*"]
3027 || [istarget "s390*-*-*"] } {
3034 # Return a 1 if we should skip tests that require *multiple* hardware
3035 # watchpoints to be active at the same time
3037 proc skip_hw_watchpoint_multi_tests {} {
3038 if { [skip_hw_watchpoint_tests] } {
3042 # These targets support just a single hardware watchpoint
3043 if { [istarget "arm*-*-*"]
3044 || [istarget "powerpc*-*-linux*"] } {
3051 # Return a 1 if we should skip tests that require read/access watchpoints
3053 proc skip_hw_watchpoint_access_tests {} {
3054 if { [skip_hw_watchpoint_tests] } {
3058 # These targets support just write watchpoints
3059 if { [istarget "s390*-*-*"] } {
3066 # Return 1 if we should skip tests that require the runtime unwinder
3067 # hook. This must be invoked while gdb is running, after shared
3068 # libraries have been loaded. This is needed because otherwise a
3069 # shared libgcc won't be visible.
3071 proc skip_unwinder_tests {} {
3075 gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook" {
3076 -re "= .*no debug info.*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
3078 -re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
3081 -re "No symbol .* in current context.\r\n$gdb_prompt $" {
3085 gdb_test_multiple "info probe" "check for stap probe in unwinder" {
3086 -re ".*libgcc.*unwind.*\r\n$gdb_prompt $" {
3089 -re "\r\n$gdb_prompt $" {
3096 # Return 0 if we should skip tests that require the libstdc++ stap
3097 # probes. This must be invoked while gdb is running, after shared
3098 # libraries have been loaded.
3100 proc skip_libstdcxx_probe_tests {} {
3104 gdb_test_multiple "info probe" "check for stap probe in libstdc++" {
3105 -re ".*libstdcxx.*catch.*\r\n$gdb_prompt $" {
3108 -re "\r\n$gdb_prompt $" {
3114 # Return 1 if we should skip tests of the "compile" feature.
3115 # This must be invoked after the inferior has been started.
3117 proc skip_compile_feature_tests {} {
3121 gdb_test_multiple "compile code -- ;" "check for working compile command" {
3122 "Could not load libcc1.*\r\n$gdb_prompt $" {
3125 -re "Command not supported on this host\\..*\r\n$gdb_prompt $" {
3128 -re "\r\n$gdb_prompt $" {
3134 # Helper for gdb_is_target_* procs. TARGET_NAME is the name of the target
3135 # we're looking for (used to build the test name). TARGET_STACK_REGEXP
3136 # is a regexp that will match the output of "maint print target-stack" if
3137 # the target in question is currently pushed. PROMPT_REGEXP is a regexp
3138 # matching the expected prompt after the command output.
3140 proc gdb_is_target_1 { target_name target_stack_regexp prompt_regexp } {
3141 set test "probe for target ${target_name}"
3142 gdb_test_multiple "maint print target-stack" $test {
3143 -re "${target_stack_regexp}${prompt_regexp}" {
3147 -re "$prompt_regexp" {
3154 # Helper for gdb_is_target_remote where the expected prompt is variable.
3156 proc gdb_is_target_remote_prompt { prompt_regexp } {
3157 return [gdb_is_target_1 "remote" ".*emote serial target in gdb-specific protocol.*" $prompt_regexp]
3160 # Check whether we're testing with the remote or extended-remote
3163 proc gdb_is_target_remote { } {
3166 return [gdb_is_target_remote_prompt "$gdb_prompt $"]
3169 # Check whether we're testing with the native target.
3171 proc gdb_is_target_native { } {
3174 return [gdb_is_target_1 "native" ".*native \\(Native process\\).*" "$gdb_prompt $"]
3177 # Return the effective value of use_gdb_stub.
3179 # If the use_gdb_stub global has been set (it is set when the gdb process is
3180 # spawned), return that. Otherwise, return the value of the use_gdb_stub
3181 # property from the board file.
3183 # This is the preferred way of checking use_gdb_stub, since it allows to check
3184 # the value before the gdb has been spawned and it will return the correct value
3185 # even when it was overriden by the test.
3187 proc use_gdb_stub {} {
3190 if [info exists use_gdb_stub] {
3191 return $use_gdb_stub
3194 return [target_info exists use_gdb_stub]
3197 # Return 1 if the current remote target is an instance of our GDBserver, 0
3198 # otherwise. Return -1 if there was an error and we can't tell.
3200 gdb_caching_proc target_is_gdbserver {
3204 set test "probing for GDBserver"
3206 gdb_test_multiple "monitor help" $test {
3207 -re "The following monitor commands are supported.*Quit GDBserver.*$gdb_prompt $" {
3210 -re "$gdb_prompt $" {
3215 if { $is_gdbserver == -1 } {
3216 verbose -log "Unable to tell whether we are using GDBserver or not."
3219 return $is_gdbserver
3222 # N.B. compiler_info is intended to be local to this file.
3223 # Call test_compiler_info with no arguments to fetch its value.
3224 # Yes, this is counterintuitive when there's get_compiler_info,
3225 # but that's the current API.
3226 if [info exists compiler_info] {
3232 # Figure out what compiler I am using.
3233 # The result is cached so only the first invocation runs the compiler.
3235 # ARG can be empty or "C++". If empty, "C" is assumed.
3237 # There are several ways to do this, with various problems.
3239 # [ gdb_compile -E $ifile -o $binfile.ci ]
3240 # source $binfile.ci
3242 # Single Unix Spec v3 says that "-E -o ..." together are not
3243 # specified. And in fact, the native compiler on hp-ux 11 (among
3244 # others) does not work with "-E -o ...". Most targets used to do
3245 # this, and it mostly worked, because it works with gcc.
3247 # [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
3248 # source $binfile.ci
3250 # This avoids the problem with -E and -o together. This almost works
3251 # if the build machine is the same as the host machine, which is
3252 # usually true of the targets which are not gcc. But this code does
3253 # not figure which compiler to call, and it always ends up using the C
3254 # compiler. Not good for setting hp_aCC_compiler. Target
3255 # hppa*-*-hpux* used to do this.
3257 # [ gdb_compile -E $ifile > $binfile.ci ]
3258 # source $binfile.ci
3260 # dejagnu target_compile says that it supports output redirection,
3261 # but the code is completely different from the normal path and I
3262 # don't want to sweep the mines from that path. So I didn't even try
3265 # set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
3268 # I actually do this for all targets now. gdb_compile runs the right
3269 # compiler, and TCL captures the output, and I eval the output.
3271 # Unfortunately, expect logs the output of the command as it goes by,
3272 # and dejagnu helpfully prints a second copy of it right afterwards.
3273 # So I turn off expect logging for a moment.
3275 # [ gdb_compile $ifile $ciexe_file executable $args ]
3276 # [ remote_exec $ciexe_file ]
3277 # [ source $ci_file.out ]
3279 # I could give up on -E and just do this.
3280 # I didn't get desperate enough to try this.
3282 # -- chastain 2004-01-06
3284 proc get_compiler_info {{arg ""}} {
3285 # For compiler.c and compiler.cc
3288 # I am going to play with the log to keep noise out.
3292 # These come from compiler.c or compiler.cc
3293 global compiler_info
3295 # Legacy global data symbols.
3298 if [info exists compiler_info] {
3303 # Choose which file to preprocess.
3304 set ifile "${srcdir}/lib/compiler.c"
3305 if { $arg == "c++" } {
3306 set ifile "${srcdir}/lib/compiler.cc"
3309 # Run $ifile through the right preprocessor.
3310 # Toggle gdb.log to keep the compiler output out of the log.
3311 set saved_log [log_file -info]
3313 if [is_remote host] {
3314 # We have to use -E and -o together, despite the comments
3315 # above, because of how DejaGnu handles remote host testing.
3316 set ppout "$outdir/compiler.i"
3317 gdb_compile "${ifile}" "$ppout" preprocess [list "$arg" quiet getting_compiler_info]
3318 set file [open $ppout r]
3319 set cppout [read $file]
3322 set cppout [ gdb_compile "${ifile}" "" preprocess [list "$arg" quiet getting_compiler_info] ]
3324 eval log_file $saved_log
3328 foreach cppline [ split "$cppout" "\n" ] {
3329 if { [ regexp "^#" "$cppline" ] } {
3331 } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
3333 } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
3335 verbose "get_compiler_info: $cppline" 2
3339 verbose -log "get_compiler_info: $cppline"
3344 # Set to unknown if for some reason compiler_info didn't get defined.
3345 if ![info exists compiler_info] {
3346 verbose -log "get_compiler_info: compiler_info not provided"
3347 set compiler_info "unknown"
3349 # Also set to unknown compiler if any diagnostics happened.
3351 verbose -log "get_compiler_info: got unexpected diagnostics"
3352 set compiler_info "unknown"
3355 # Set the legacy symbols.
3357 regexp "^gcc-(\[0-9\]+)-" "$compiler_info" matchall gcc_compiled
3359 # Log what happened.
3360 verbose -log "get_compiler_info: $compiler_info"
3362 # Most compilers will evaluate comparisons and other boolean
3363 # operations to 0 or 1.
3364 uplevel \#0 { set true 1 }
3365 uplevel \#0 { set false 0 }
3370 # Return the compiler_info string if no arg is provided.
3371 # Otherwise the argument is a glob-style expression to match against
3374 proc test_compiler_info { {compiler ""} } {
3375 global compiler_info
3378 # If no arg, return the compiler_info string.
3379 if [string match "" $compiler] {
3380 return $compiler_info
3383 return [string match $compiler $compiler_info]
3386 proc current_target_name { } {
3388 if [info exists target_info(target,name)] {
3389 set answer $target_info(target,name)
3396 set gdb_wrapper_initialized 0
3397 set gdb_wrapper_target ""
3399 proc gdb_wrapper_init { args } {
3400 global gdb_wrapper_initialized
3401 global gdb_wrapper_file
3402 global gdb_wrapper_flags
3403 global gdb_wrapper_target
3405 if { $gdb_wrapper_initialized == 1 } { return; }
3407 if {[target_info exists needs_status_wrapper] && \
3408 [target_info needs_status_wrapper] != "0"} {
3409 set result [build_wrapper "testglue.o"]
3410 if { $result != "" } {
3411 set gdb_wrapper_file [lindex $result 0]
3412 set gdb_wrapper_flags [lindex $result 1]
3414 warning "Status wrapper failed to build."
3417 set gdb_wrapper_initialized 1
3418 set gdb_wrapper_target [current_target_name]
3421 # Determine options that we always want to pass to the compiler.
3422 gdb_caching_proc universal_compile_options {
3423 set me "universal_compile_options"
3426 set src [standard_temp_file ccopts[pid].c]
3427 set obj [standard_temp_file ccopts[pid].o]
3429 gdb_produce_source $src {
3430 int foo(void) { return 0; }
3433 # Try an option for disabling colored diagnostics. Some compilers
3434 # yield colored diagnostics by default (when run from a tty) unless
3435 # such an option is specified.
3436 set opt "additional_flags=-fdiagnostics-color=never"
3437 set lines [target_compile $src $obj object [list "quiet" $opt]]
3438 if [string match "" $lines] then {
3439 # Seems to have worked; use the option.
3440 lappend options $opt
3445 verbose "$me: returning $options" 2
3449 # Compile the code in $code to a file based on $name, using the flags
3450 # $compile_flag as well as debug, nowarning and quiet.
3451 # Return 1 if code can be compiled
3452 # Leave the file name of the resulting object in the upvar object.
3454 proc gdb_simple_compile {name code {type object} {compile_flags {}} {object obj}} {
3457 switch -regexp -- $type {
3471 set src [standard_temp_file $name-[pid].c]
3472 set obj [standard_temp_file $name-[pid].$postfix]
3473 set compile_flags [concat $compile_flags {debug nowarnings quiet}]
3475 gdb_produce_source $src $code
3477 verbose "$name: compiling testfile $src" 2
3478 set lines [gdb_compile $src $obj $type $compile_flags]
3482 if ![string match "" $lines] then {
3483 verbose "$name: compilation failed, returning 0" 2
3489 # Compile the code in $code to a file based on $name, using the flags
3490 # $compile_flag as well as debug, nowarning and quiet.
3491 # Return 1 if code can be compiled
3492 # Delete all created files and objects.
3494 proc gdb_can_simple_compile {name code {type object} {compile_flags ""}} {
3495 set ret [gdb_simple_compile $name $code $type $compile_flags temp_obj]
3496 file delete $temp_obj
3500 # Some targets need to always link a special object in. Save its path here.
3501 global gdb_saved_set_unbuffered_mode_obj
3502 set gdb_saved_set_unbuffered_mode_obj ""
3504 # Compile source files specified by SOURCE into a binary of type TYPE at path
3505 # DEST. gdb_compile is implemented using DejaGnu's target_compile, so the type
3506 # parameter and most options are passed directly to it.
3508 # The type can be one of the following:
3510 # - object: Compile into an object file.
3511 # - executable: Compile and link into an executable.
3512 # - preprocess: Preprocess the source files.
3513 # - assembly: Generate assembly listing.
3515 # The following options are understood and processed by gdb_compile:
3517 # - shlib=so_path: Add SO_PATH to the sources, and enable some target-specific
3518 # quirks to be able to use shared libraries.
3519 # - shlib_load: Link with appropriate libraries to allow the test to
3520 # dynamically load libraries at runtime. For example, on Linux, this adds
3521 # -ldl so that the test can use dlopen.
3522 # - nowarnings: Inhibit all compiler warnings.
3523 # - pie: Force creation of PIE executables.
3524 # - nopie: Prevent creation of PIE executables.
3526 # And here are some of the not too obscure options understood by DejaGnu that
3527 # influence the compilation:
3529 # - additional_flags=flag: Add FLAG to the compiler flags.
3530 # - libs=library: Add LIBRARY to the libraries passed to the linker. The
3531 # argument can be a file, in which case it's added to the sources, or a
3533 # - ldflags=flag: Add FLAG to the linker flags.
3534 # - incdir=path: Add PATH to the searched include directories.
3535 # - libdir=path: Add PATH to the linker searched directories.
3536 # - ada, c++, f77: Compile the file as Ada, C++ or Fortran.
3537 # - debug: Build with debug information.
3538 # - optimize: Build with optimization.
3540 proc gdb_compile {source dest type options} {
3541 global GDB_TESTCASE_OPTIONS
3542 global gdb_wrapper_file
3543 global gdb_wrapper_flags
3544 global gdb_wrapper_initialized
3547 global gdb_saved_set_unbuffered_mode_obj
3549 set outdir [file dirname $dest]
3551 # Add platform-specific options if a shared library was specified using
3552 # "shlib=librarypath" in OPTIONS.
3554 if {[lsearch -exact $options rust] != -1} {
3555 # -fdiagnostics-color is not a rustcc option.
3557 set new_options [universal_compile_options]
3561 set getting_compiler_info 0
3562 foreach opt $options {
3563 if {[regexp {^shlib=(.*)} $opt dummy_var shlib_name]
3564 && $type == "executable"} {
3565 if [test_compiler_info "xlc-*"] {
3566 # IBM xlc compiler doesn't accept shared library named other
3567 # than .so: use "-Wl," to bypass this
3568 lappend source "-Wl,$shlib_name"
3569 } elseif { ([istarget "*-*-mingw*"]
3570 || [istarget *-*-cygwin*]
3571 || [istarget *-*-pe*])} {
3572 lappend source "${shlib_name}.a"
3574 lappend source $shlib_name
3576 if { $shlib_found == 0 } {
3578 if { ([istarget "*-*-mingw*"]
3579 || [istarget *-*-cygwin*]) } {
3580 lappend new_options "additional_flags=-Wl,--enable-auto-import"
3582 if { [test_compiler_info "gcc-*"] || [test_compiler_info "clang-*"] } {
3583 # Undo debian's change in the default.
3584 # Put it at the front to not override any user-provided
3585 # value, and to make sure it appears in front of all the
3587 lappend new_options "early_flags=-Wl,--no-as-needed"
3590 } elseif { $opt == "shlib_load" && $type == "executable" } {
3592 } elseif { $opt == "getting_compiler_info" } {
3593 # If this is set, calling test_compiler_info will cause recursion.
3594 set getting_compiler_info 1
3596 lappend new_options $opt
3600 # Ensure stack protector is disabled for GCC, as this causes problems with
3601 # DWARF line numbering.
3602 # See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88432
3603 # This option defaults to on for Debian/Ubuntu.
3604 if { $getting_compiler_info == 0
3605 && [test_compiler_info {gcc-*-*}]
3606 && !([test_compiler_info {gcc-[0-3]-*}]
3607 || [test_compiler_info {gcc-4-0-*}])
3608 && [lsearch -exact $options rust] == -1} {
3609 # Put it at the front to not override any user-provided value.
3610 lappend new_options "early_flags=-fno-stack-protector"
3613 # Because we link with libraries using their basename, we may need
3614 # (depending on the platform) to set a special rpath value, to allow
3615 # the executable to find the libraries it depends on.
3616 if { $shlib_load || $shlib_found } {
3617 if { ([istarget "*-*-mingw*"]
3618 || [istarget *-*-cygwin*]
3619 || [istarget *-*-pe*]) } {
3620 # Do not need anything.
3621 } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
3622 lappend new_options "ldflags=-Wl,-rpath,${outdir}"
3623 } elseif { [istarget arm*-*-symbianelf*] } {
3624 if { $shlib_load } {
3625 lappend new_options "libs=-ldl"
3628 if { $shlib_load } {
3629 lappend new_options "libs=-ldl"
3631 lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
3634 set options $new_options
3636 if [info exists GDB_TESTCASE_OPTIONS] {
3637 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS"
3639 verbose "options are $options"
3640 verbose "source is $source $dest $type $options"
3642 if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
3644 if {[target_info exists needs_status_wrapper] && \
3645 [target_info needs_status_wrapper] != "0" && \
3646 [info exists gdb_wrapper_file]} {
3647 lappend options "libs=${gdb_wrapper_file}"
3648 lappend options "ldflags=${gdb_wrapper_flags}"
3651 # Replace the "nowarnings" option with the appropriate additional_flags
3652 # to disable compiler warnings.
3653 set nowarnings [lsearch -exact $options nowarnings]
3654 if {$nowarnings != -1} {
3655 if [target_info exists gdb,nowarnings_flag] {
3656 set flag "additional_flags=[target_info gdb,nowarnings_flag]"
3658 set flag "additional_flags=-w"
3660 set options [lreplace $options $nowarnings $nowarnings $flag]
3663 # Replace the "pie" option with the appropriate compiler and linker flags
3664 # to enable PIE executables.
3665 set pie [lsearch -exact $options pie]
3667 if [target_info exists gdb,pie_flag] {
3668 set flag "additional_flags=[target_info gdb,pie_flag]"
3670 # For safety, use fPIE rather than fpie. On AArch64, m68k, PowerPC
3671 # and SPARC, fpie can cause compile errors due to the GOT exceeding
3672 # a maximum size. On other architectures the two flags are
3673 # identical (see the GCC manual). Note Debian9 and Ubuntu16.10
3674 # onwards default GCC to using fPIE. If you do require fpie, then
3675 # it can be set using the pie_flag.
3676 set flag "additional_flags=-fPIE"
3678 set options [lreplace $options $pie $pie $flag]
3680 if [target_info exists gdb,pie_ldflag] {
3681 set flag "ldflags=[target_info gdb,pie_ldflag]"
3683 set flag "ldflags=-pie"
3685 lappend options "$flag"
3688 # Replace the "nopie" option with the appropriate linker flag to disable
3689 # PIE executables. There are no compiler flags for this option.
3690 set nopie [lsearch -exact $options nopie]
3692 if [target_info exists gdb,nopie_flag] {
3693 set flag "ldflags=[target_info gdb,nopie_flag]"
3695 set flag "ldflags=-no-pie"
3697 set options [lreplace $options $nopie $nopie $flag]
3700 if { $type == "executable" } {
3701 if { ([istarget "*-*-mingw*"]
3702 || [istarget "*-*-*djgpp"]
3703 || [istarget "*-*-cygwin*"])} {
3704 # Force output to unbuffered mode, by linking in an object file
3705 # with a global contructor that calls setvbuf.
3707 # Compile the special object seperatelly for two reasons:
3708 # 1) Insulate it from $options.
3709 # 2) Avoid compiling it for every gdb_compile invocation,
3710 # which is time consuming, especially if we're remote
3713 if { $gdb_saved_set_unbuffered_mode_obj == "" } {
3714 verbose "compiling gdb_saved_set_unbuffered_obj"
3715 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
3716 set unbuf_obj ${objdir}/set_unbuffered_mode.o
3718 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
3719 if { $result != "" } {
3722 if {[is_remote host]} {
3723 set gdb_saved_set_unbuffered_mode_obj set_unbuffered_mode_saved.o
3725 set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
3727 # Link a copy of the output object, because the
3728 # original may be automatically deleted.
3729 remote_download host $unbuf_obj $gdb_saved_set_unbuffered_mode_obj
3731 verbose "gdb_saved_set_unbuffered_obj already compiled"
3734 # Rely on the internal knowledge that the global ctors are ran in
3735 # reverse link order. In that case, we can use ldflags to
3736 # avoid copying the object file to the host multiple
3738 # This object can only be added if standard libraries are
3739 # used. Thus, we need to disable it if -nostdlib option is used
3740 if {[lsearch -regexp $options "-nostdlib"] < 0 } {
3741 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
3746 set result [target_compile $source $dest $type $options]
3748 # Prune uninteresting compiler (and linker) output.
3749 regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
3751 regsub "\[\r\n\]*$" "$result" "" result
3752 regsub "^\[\r\n\]*" "$result" "" result
3754 if {[lsearch $options quiet] < 0} {
3755 # We shall update this on a per language basis, to avoid
3756 # changing the entire testsuite in one go.
3757 if {[lsearch $options f77] >= 0} {
3758 gdb_compile_test $source $result
3759 } elseif { $result != "" } {
3760 clone_output "gdb compile failed, $result"
3767 # This is just like gdb_compile, above, except that it tries compiling
3768 # against several different thread libraries, to see which one this
3770 proc gdb_compile_pthreads {source dest type options} {
3772 set why_msg "unrecognized error"
3773 foreach lib {-lpthreads -lpthread -lthread ""} {
3774 # This kind of wipes out whatever libs the caller may have
3775 # set. Or maybe theirs will override ours. How infelicitous.
3776 set options_with_lib [concat $options [list libs=$lib quiet]]
3777 set ccout [gdb_compile $source $dest $type $options_with_lib]
3778 switch -regexp -- $ccout {
3779 ".*no posix threads support.*" {
3780 set why_msg "missing threads include file"
3783 ".*cannot open -lpthread.*" {
3784 set why_msg "missing runtime threads library"
3786 ".*Can't find library for -lpthread.*" {
3787 set why_msg "missing runtime threads library"
3790 pass "successfully compiled posix threads test case"
3796 if {!$built_binfile} {
3797 unsupported "couldn't compile [file tail $source]: ${why_msg}"
3802 # Build a shared library from SOURCES.
3804 proc gdb_compile_shlib {sources dest options} {
3805 set obj_options $options
3808 if { [lsearch -exact $options "c++"] >= 0 } {
3809 set info_options "c++"
3811 if [get_compiler_info ${info_options}] {
3815 switch -glob [test_compiler_info] {
3817 lappend obj_options "additional_flags=-qpic"
3820 if { !([istarget "*-*-cygwin*"]
3821 || [istarget "*-*-mingw*"]) } {
3822 lappend obj_options "additional_flags=-fpic"
3826 if { !([istarget "powerpc*-*-aix*"]
3827 || [istarget "rs6000*-*-aix*"]
3828 || [istarget "*-*-cygwin*"]
3829 || [istarget "*-*-mingw*"]
3830 || [istarget "*-*-pe*"]) } {
3831 lappend obj_options "additional_flags=-fpic"
3835 lappend obj_options "additional_flags=-fpic"
3838 # don't know what the compiler is...
3842 set outdir [file dirname $dest]
3844 foreach source $sources {
3845 set sourcebase [file tail $source]
3846 if {[file extension $source] == ".o"} {
3847 # Already a .o file.
3848 lappend objects $source
3849 } elseif {[gdb_compile $source "${outdir}/${sourcebase}.o" object \
3850 $obj_options] != ""} {
3853 lappend objects ${outdir}/${sourcebase}.o
3857 set link_options $options
3858 if [test_compiler_info "xlc-*"] {
3859 lappend link_options "additional_flags=-qmkshrobj"
3861 lappend link_options "additional_flags=-shared"
3863 if { ([istarget "*-*-mingw*"]
3864 || [istarget *-*-cygwin*]
3865 || [istarget *-*-pe*]) } {
3866 if { [is_remote host] } {
3867 set name [file tail ${dest}]
3871 lappend link_options "additional_flags=-Wl,--out-implib,${name}.a"
3873 # Set the soname of the library. This causes the linker on ELF
3874 # systems to create the DT_NEEDED entry in the executable referring
3875 # to the soname of the library, and not its absolute path. This
3876 # (using the absolute path) would be problem when testing on a
3879 # In conjunction with setting the soname, we add the special
3880 # rpath=$ORIGIN value when building the executable, so that it's
3881 # able to find the library in its own directory.
3882 set destbase [file tail $dest]
3883 lappend link_options "additional_flags=-Wl,-soname,$destbase"
3886 if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
3889 if { [is_remote host]
3890 && ([istarget "*-*-mingw*"]
3891 || [istarget *-*-cygwin*]
3892 || [istarget *-*-pe*]) } {
3893 set dest_tail_name [file tail ${dest}]
3894 remote_upload host $dest_tail_name.a ${dest}.a
3895 remote_file host delete $dest_tail_name.a
3901 # This is just like gdb_compile_shlib, above, except that it tries compiling
3902 # against several different thread libraries, to see which one this
3904 proc gdb_compile_shlib_pthreads {sources dest options} {
3906 set why_msg "unrecognized error"
3907 foreach lib {-lpthreads -lpthread -lthread ""} {
3908 # This kind of wipes out whatever libs the caller may have
3909 # set. Or maybe theirs will override ours. How infelicitous.
3910 set options_with_lib [concat $options [list libs=$lib quiet]]
3911 set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
3912 switch -regexp -- $ccout {
3913 ".*no posix threads support.*" {
3914 set why_msg "missing threads include file"
3917 ".*cannot open -lpthread.*" {
3918 set why_msg "missing runtime threads library"
3920 ".*Can't find library for -lpthread.*" {
3921 set why_msg "missing runtime threads library"
3924 pass "successfully compiled posix threads test case"
3930 if {!$built_binfile} {
3931 unsupported "couldn't compile $sources: ${why_msg}"
3936 # This is just like gdb_compile_pthreads, above, except that we always add the
3937 # objc library for compiling Objective-C programs
3938 proc gdb_compile_objc {source dest type options} {
3940 set why_msg "unrecognized error"
3941 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
3942 # This kind of wipes out whatever libs the caller may have
3943 # set. Or maybe theirs will override ours. How infelicitous.
3944 if { $lib == "solaris" } {
3945 set lib "-lpthread -lposix4"
3947 if { $lib != "-lobjc" } {
3948 set lib "-lobjc $lib"
3950 set options_with_lib [concat $options [list libs=$lib quiet]]
3951 set ccout [gdb_compile $source $dest $type $options_with_lib]
3952 switch -regexp -- $ccout {
3953 ".*no posix threads support.*" {
3954 set why_msg "missing threads include file"
3957 ".*cannot open -lpthread.*" {
3958 set why_msg "missing runtime threads library"
3960 ".*Can't find library for -lpthread.*" {
3961 set why_msg "missing runtime threads library"
3964 pass "successfully compiled objc with posix threads test case"
3970 if {!$built_binfile} {
3971 unsupported "couldn't compile [file tail $source]: ${why_msg}"
3976 # Send a command to GDB.
3977 # For options for TYPE see gdb_stdin_log_write
3979 proc send_gdb { string {type standard}} {
3980 global suppress_flag
3981 if { $suppress_flag } {
3984 gdb_stdin_log_write $string $type
3985 return [remote_send host "$string"]
3988 # Send STRING to the inferior's terminal.
3990 proc send_inferior { string } {
3991 global inferior_spawn_id
3993 if {[catch "send -i $inferior_spawn_id -- \$string" errorInfo]} {
4003 proc gdb_expect { args } {
4004 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
4005 set atimeout [lindex $args 0]
4006 set expcode [list [lindex $args 1]]
4011 # A timeout argument takes precedence, otherwise of all the timeouts
4012 # select the largest.
4013 if [info exists atimeout] {
4016 set tmt [get_largest_timeout]
4019 global suppress_flag
4020 global remote_suppress_flag
4021 if [info exists remote_suppress_flag] {
4022 set old_val $remote_suppress_flag
4024 if [info exists suppress_flag] {
4025 if { $suppress_flag } {
4026 set remote_suppress_flag 1
4030 {uplevel remote_expect host $tmt $expcode} string]
4031 if [info exists old_val] {
4032 set remote_suppress_flag $old_val
4034 if [info exists remote_suppress_flag] {
4035 unset remote_suppress_flag
4040 global errorInfo errorCode
4042 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
4044 return -code $code $string
4048 # gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
4050 # Check for long sequence of output by parts.
4051 # TEST: is the test message to be printed with the test success/fail.
4052 # SENTINEL: Is the terminal pattern indicating that output has finished.
4053 # LIST: is the sequence of outputs to match.
4054 # If the sentinel is recognized early, it is considered an error.
4057 # 1 if the test failed,
4058 # 0 if the test passes,
4059 # -1 if there was an internal error.
4061 proc gdb_expect_list {test sentinel list} {
4063 global suppress_flag
4066 if { $suppress_flag } {
4068 unresolved "${test}"
4070 while { ${index} < [llength ${list}] } {
4071 set pattern [lindex ${list} ${index}]
4072 set index [expr ${index} + 1]
4073 verbose -log "gdb_expect_list pattern: /$pattern/" 2
4074 if { ${index} == [llength ${list}] } {
4077 -re "${pattern}${sentinel}" {
4078 # pass "${test}, pattern ${index} + sentinel"
4081 fail "${test} (pattern ${index} + sentinel)"
4084 -re ".*A problem internal to GDB has been detected" {
4085 fail "${test} (GDB internal error)"
4087 gdb_internal_error_resync
4090 fail "${test} (pattern ${index} + sentinel) (timeout)"
4095 # unresolved "${test}, pattern ${index} + sentinel"
4101 # pass "${test}, pattern ${index}"
4104 fail "${test} (pattern ${index})"
4107 -re ".*A problem internal to GDB has been detected" {
4108 fail "${test} (GDB internal error)"
4110 gdb_internal_error_resync
4113 fail "${test} (pattern ${index}) (timeout)"
4118 # unresolved "${test}, pattern ${index}"
4132 proc gdb_suppress_entire_file { reason } {
4133 global suppress_flag
4136 set suppress_flag -1
4140 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
4141 # gdb_expect to fail immediately (until the next call to
4142 # gdb_stop_suppressing_tests).
4144 proc gdb_suppress_tests { args } {
4145 global suppress_flag
4147 return; # fnf - disable pending review of results where
4148 # testsuite ran better without this
4151 if { $suppress_flag == 1 } {
4152 if { [llength $args] > 0 } {
4153 warning "[lindex $args 0]\n"
4155 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n"
4161 # Clear suppress_flag.
4163 proc gdb_stop_suppressing_tests { } {
4164 global suppress_flag
4166 if [info exists suppress_flag] {
4167 if { $suppress_flag > 0 } {
4169 clone_output "Tests restarted.\n"
4176 proc gdb_clear_suppressed { } {
4177 global suppress_flag
4182 # Spawn the gdb process.
4184 # This doesn't expect any output or do any other initialization,
4185 # leaving those to the caller.
4187 # Overridable function -- you can override this function in your
4190 proc gdb_spawn { } {
4194 # Spawn GDB with CMDLINE_FLAGS appended to the GDBFLAGS global.
4196 proc gdb_spawn_with_cmdline_opts { cmdline_flags } {
4199 set saved_gdbflags $GDBFLAGS
4201 if {$GDBFLAGS != ""} {
4204 append GDBFLAGS $cmdline_flags
4208 set GDBFLAGS $saved_gdbflags
4213 # Start gdb running, wait for prompt, and disable the pagers.
4215 # Overridable function -- you can override this function in your
4218 proc gdb_start { } {
4223 catch default_gdb_exit
4226 # Return true if we can spawn a program on the target and attach to
4229 proc can_spawn_for_attach { } {
4230 # We use exp_pid to get the inferior's pid, assuming that gives
4231 # back the pid of the program. On remote boards, that would give
4232 # us instead the PID of e.g., the ssh client, etc.
4233 if [is_remote target] then {
4237 # The "attach" command doesn't make sense when the target is
4238 # stub-like, where GDB finds the program already started on
4239 # initial connection.
4240 if {[target_info exists use_gdb_stub]} {
4248 # Kill a progress previously started with spawn_wait_for_attach, and
4249 # reap its wait status. PROC_SPAWN_ID is the spawn id associated with
4252 proc kill_wait_spawned_process { proc_spawn_id } {
4253 set pid [exp_pid -i $proc_spawn_id]
4255 verbose -log "killing ${pid}"
4256 remote_exec build "kill -9 ${pid}"
4258 verbose -log "closing ${proc_spawn_id}"
4259 catch "close -i $proc_spawn_id"
4260 verbose -log "waiting for ${proc_spawn_id}"
4262 # If somehow GDB ends up still attached to the process here, a
4263 # blocking wait hangs until gdb is killed (or until gdb / the
4264 # ptracer reaps the exit status too, but that won't happen because
4265 # something went wrong.) Passing -nowait makes expect tell Tcl to
4266 # wait for the PID in the background. That's fine because we
4267 # don't care about the exit status. */
4268 wait -nowait -i $proc_spawn_id
4271 # Returns the process id corresponding to the given spawn id.
4273 proc spawn_id_get_pid { spawn_id } {
4274 set testpid [exp_pid -i $spawn_id]
4276 if { [istarget "*-*-cygwin*"] } {
4277 # testpid is the Cygwin PID, GDB uses the Windows PID, which
4278 # might be different due to the way fork/exec works.
4279 set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
4285 # Start a set of programs running and then wait for a bit, to be sure
4286 # that they can be attached to. Return a list of processes spawn IDs,
4287 # one element for each process spawned. It's a test error to call
4288 # this when [can_spawn_for_attach] is false.
4290 proc spawn_wait_for_attach { executable_list } {
4291 set spawn_id_list {}
4293 if ![can_spawn_for_attach] {
4294 # The caller should have checked can_spawn_for_attach itself
4295 # before getting here.
4296 error "can't spawn for attach with this target/board"
4299 foreach {executable} $executable_list {
4300 # Note we use Expect's spawn, not Tcl's exec, because with
4301 # spawn we control when to wait for/reap the process. That
4302 # allows killing the process by PID without being subject to
4304 lappend spawn_id_list [remote_spawn target $executable]
4309 return $spawn_id_list
4313 # gdb_load_cmd -- load a file into the debugger.
4314 # ARGS - additional args to load command.
4315 # return a -1 if anything goes wrong.
4317 proc gdb_load_cmd { args } {
4320 if [target_info exists gdb_load_timeout] {
4321 set loadtimeout [target_info gdb_load_timeout]
4323 set loadtimeout 1600
4325 send_gdb "load $args\n"
4326 verbose "Timeout is now $loadtimeout seconds" 2
4327 gdb_expect $loadtimeout {
4328 -re "Loading section\[^\r\]*\r\n" {
4331 -re "Start address\[\r\]*\r\n" {
4334 -re "Transfer rate\[\r\]*\r\n" {
4337 -re "Memory access error\[^\r\]*\r\n" {
4338 perror "Failed to load program"
4341 -re "$gdb_prompt $" {
4344 -re "(.*)\r\n$gdb_prompt " {
4345 perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
4349 perror "Timed out trying to load $args."
4356 # Invoke "gcore". CORE is the name of the core file to write. TEST
4357 # is the name of the test case. This will return 1 if the core file
4358 # was created, 0 otherwise. If this fails to make a core file because
4359 # this configuration of gdb does not support making core files, it
4360 # will call "unsupported", not "fail". However, if this fails to make
4361 # a core file for some other reason, then it will call "fail".
4363 proc gdb_gcore_cmd {core test} {
4367 gdb_test_multiple "gcore $core" $test {
4368 -re "Saved corefile .*\[\r\n\]+$gdb_prompt $" {
4372 -re "(?:Can't create a corefile|Target does not support core file generation\\.)\[\r\n\]+$gdb_prompt $" {
4380 # Load core file CORE. TEST is the name of the test case.
4381 # This will record a pass/fail for loading the core file.
4383 # 1 - core file is successfully loaded
4384 # 0 - core file loaded but has a non fatal error
4385 # -1 - core file failed to load
4387 proc gdb_core_cmd { core test } {
4390 gdb_test_multiple "core $core" "$test" {
4391 -re "\\\[Thread debugging using \[^ \r\n\]* enabled\\\]\r\n" {
4394 -re " is not a core dump:.*\r\n$gdb_prompt $" {
4395 fail "$test (bad file format)"
4398 -re ": No such file or directory.*\r\n$gdb_prompt $" {
4399 fail "$test (file not found)"
4402 -re "Couldn't find .* registers in core file.*\r\n$gdb_prompt $" {
4403 fail "$test (incomplete note section)"
4406 -re "Core was generated by .*\r\n$gdb_prompt $" {
4410 -re ".*$gdb_prompt $" {
4415 fail "$test (timeout)"
4419 fail "unsupported output from 'core' command"
4423 # Return the filename to download to the target and load on the target
4424 # for this shared library. Normally just LIBNAME, unless shared libraries
4425 # for this target have separate link and load images.
4427 proc shlib_target_file { libname } {
4431 # Return the filename GDB will load symbols from when debugging this
4432 # shared library. Normally just LIBNAME, unless shared libraries for
4433 # this target have separate link and load images.
4435 proc shlib_symbol_file { libname } {
4439 # Return the filename to download to the target and load for this
4440 # executable. Normally just BINFILE unless it is renamed to something
4441 # else for this target.
4443 proc exec_target_file { binfile } {
4447 # Return the filename GDB will load symbols from when debugging this
4448 # executable. Normally just BINFILE unless executables for this target
4449 # have separate files for symbols.
4451 proc exec_symbol_file { binfile } {
4455 # Rename the executable file. Normally this is just BINFILE1 being renamed
4456 # to BINFILE2, but some targets require multiple binary files.
4457 proc gdb_rename_execfile { binfile1 binfile2 } {
4458 file rename -force [exec_target_file ${binfile1}] \
4459 [exec_target_file ${binfile2}]
4460 if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
4461 file rename -force [exec_symbol_file ${binfile1}] \
4462 [exec_symbol_file ${binfile2}]
4466 # "Touch" the executable file to update the date. Normally this is just
4467 # BINFILE, but some targets require multiple files.
4468 proc gdb_touch_execfile { binfile } {
4469 set time [clock seconds]
4470 file mtime [exec_target_file ${binfile}] $time
4471 if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
4472 file mtime [exec_symbol_file ${binfile}] $time
4476 # Like remote_download but provides a gdb-specific behavior.
4478 # If the destination board is remote, the local file FROMFILE is transferred as
4479 # usual with remote_download to TOFILE on the remote board. The destination
4480 # filename is added to the CLEANFILES global, so it can be cleaned up at the
4483 # If the destination board is local, the destination path TOFILE is passed
4484 # through standard_output_file, and FROMFILE is copied there.
4486 # In both cases, if TOFILE is omitted, it defaults to the [file tail] of
4489 proc gdb_remote_download {dest fromfile {tofile {}}} {
4490 # If TOFILE is not given, default to the same filename as FROMFILE.
4491 if {[string length $tofile] == 0} {
4492 set tofile [file tail $fromfile]
4495 if {[is_remote $dest]} {
4496 # When the DEST is remote, we simply send the file to DEST.
4499 set destname [remote_download $dest $fromfile $tofile]
4500 lappend cleanfiles $destname
4504 # When the DEST is local, we copy the file to the test directory (where
4505 # the executable is).
4507 # Note that we pass TOFILE through standard_output_file, regardless of
4508 # whether it is absolute or relative, because we don't want the tests
4509 # to be able to write outside their standard output directory.
4511 set tofile [standard_output_file $tofile]
4513 file copy -force $fromfile $tofile
4519 # gdb_load_shlib LIB...
4521 # Copy the listed library to the target.
4523 proc gdb_load_shlib { file } {
4526 if ![info exists gdb_spawn_id] {
4527 perror "gdb_load_shlib: GDB is not running"
4530 set dest [gdb_remote_download target [shlib_target_file $file]]
4532 if {[is_remote target]} {
4533 # If the target is remote, we need to tell gdb where to find the
4536 # We could set this even when not testing remotely, but a user
4537 # generally won't set it unless necessary. In order to make the tests
4538 # more like the real-life scenarios, we don't set it for local testing.
4539 gdb_test "set solib-search-path [file dirname $file]" "" ""
4546 # gdb_load -- load a file into the debugger. Specifying no file
4547 # defaults to the executable currently being debugged.
4548 # The return value is 0 for success, -1 for failure.
4549 # Many files in config/*.exp override this procedure.
4551 proc gdb_load { arg } {
4553 return [gdb_file_cmd $arg]
4558 # gdb_reload -- load a file into the target. Called before "running",
4559 # either the first time or after already starting the program once,
4560 # for remote targets. Most files that override gdb_load should now
4561 # override this instead.
4563 proc gdb_reload { } {
4564 # For the benefit of existing configurations, default to gdb_load.
4565 # Specifying no file defaults to the executable currently being
4567 return [gdb_load ""]
4570 proc gdb_continue { function } {
4573 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"]
4576 proc default_gdb_init { test_file_name } {
4577 global gdb_wrapper_initialized
4578 global gdb_wrapper_target
4579 global gdb_test_file_name
4585 gdb_clear_suppressed
4587 set gdb_test_file_name [file rootname [file tail $test_file_name]]
4589 # Make sure that the wrapper is rebuilt
4590 # with the appropriate multilib option.
4591 if { $gdb_wrapper_target != [current_target_name] } {
4592 set gdb_wrapper_initialized 0
4595 # Unlike most tests, we have a small number of tests that generate
4596 # a very large amount of output. We therefore increase the expect
4597 # buffer size to be able to contain the entire test output. This
4598 # is especially needed by gdb.base/info-macros.exp.
4600 # Also set this value for the currently running GDB.
4601 match_max [match_max -d]
4603 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
4604 set pf_prefix "[file tail [file dirname $test_file_name]]/[file tail $test_file_name]:"
4607 if [target_info exists gdb_prompt] {
4608 set gdb_prompt [target_info gdb_prompt]
4610 set gdb_prompt "\\(gdb\\)"
4613 if [info exists use_gdb_stub] {
4618 # Return a path using GDB_PARALLEL.
4619 # ARGS is a list of path elements to append to "$objdir/$GDB_PARALLEL".
4620 # GDB_PARALLEL must be defined, the caller must check.
4622 # The default value for GDB_PARALLEL is, canonically, ".".
4623 # The catch is that tests don't expect an additional "./" in file paths so
4624 # omit any directory for the default case.
4625 # GDB_PARALLEL is written as "yes" for the default case in Makefile.in to mark
4626 # its special handling.
4628 proc make_gdb_parallel_path { args } {
4629 global GDB_PARALLEL objdir
4630 set joiner [list "file" "join" $objdir]
4631 if { [info exists GDB_PARALLEL] && $GDB_PARALLEL != "yes" } {
4632 lappend joiner $GDB_PARALLEL
4634 set joiner [concat $joiner $args]
4635 return [eval $joiner]
4638 # Turn BASENAME into a full file name in the standard output
4639 # directory. It is ok if BASENAME is the empty string; in this case
4640 # the directory is returned.
4642 proc standard_output_file {basename} {
4643 global objdir subdir gdb_test_file_name
4645 set dir [make_gdb_parallel_path outputs $subdir $gdb_test_file_name]
4647 return [file join $dir $basename]
4650 # Turn BASENAME into a full file name in the standard output directory. If
4651 # GDB has been launched more than once then append the count, starting with
4654 proc standard_output_file_with_gdb_instance {basename} {
4655 global gdb_instances
4656 set count [expr $gdb_instances - 1 ]
4659 return [standard_output_file $basename]
4661 return [standard_output_file ${basename}.${count}]
4664 # Return the name of a file in our standard temporary directory.
4666 proc standard_temp_file {basename} {
4667 # Since a particular runtest invocation is only executing a single test
4668 # file at any given time, we can use the runtest pid to build the
4669 # path of the temp directory.
4670 set dir [make_gdb_parallel_path temp [pid]]
4672 return [file join $dir $basename]
4675 # Set 'testfile', 'srcfile', and 'binfile'.
4677 # ARGS is a list of source file specifications.
4678 # Without any arguments, the .exp file's base name is used to
4679 # compute the source file name. The ".c" extension is added in this case.
4680 # If ARGS is not empty, each entry is a source file specification.
4681 # If the specification starts with a ".", it is treated as a suffix
4682 # to append to the .exp file's base name.
4683 # If the specification is the empty string, it is treated as if it
4685 # Otherwise it is a file name.
4686 # The first file in the list is used to set the 'srcfile' global.
4687 # Each subsequent name is used to set 'srcfile2', 'srcfile3', etc.
4689 # Most tests should call this without arguments.
4691 # If a completely different binary file name is needed, then it
4692 # should be handled in the .exp file with a suitable comment.
4694 proc standard_testfile {args} {
4695 global gdb_test_file_name
4697 global gdb_test_file_last_vars
4700 global testfile binfile
4702 set testfile $gdb_test_file_name
4703 set binfile [standard_output_file ${testfile}]
4705 if {[llength $args] == 0} {
4709 # Unset our previous output variables.
4710 # This can help catch hidden bugs.
4711 if {[info exists gdb_test_file_last_vars]} {
4712 foreach varname $gdb_test_file_last_vars {
4714 catch {unset $varname}
4717 # 'executable' is often set by tests.
4718 set gdb_test_file_last_vars {executable}
4722 set varname srcfile$suffix
4725 # Handle an extension.
4728 } elseif {[string range $arg 0 0] == "."} {
4729 set arg $testfile$arg
4733 lappend gdb_test_file_last_vars $varname
4735 if {$suffix == ""} {
4743 # The default timeout used when testing GDB commands. We want to use
4744 # the same timeout as the default dejagnu timeout, unless the user has
4745 # already provided a specific value (probably through a site.exp file).
4746 global gdb_test_timeout
4747 if ![info exists gdb_test_timeout] {
4748 set gdb_test_timeout $timeout
4751 # A list of global variables that GDB testcases should not use.
4752 # We try to prevent their use by monitoring write accesses and raising
4753 # an error when that happens.
4754 set banned_variables { bug_id prms_id }
4756 # A list of procedures that GDB testcases should not use.
4757 # We try to prevent their use by monitoring invocations and raising
4758 # an error when that happens.
4759 set banned_procedures { strace }
4761 # gdb_init is called by runtest at start, but also by several
4762 # tests directly; gdb_finish is only called from within runtest after
4763 # each test source execution.
4764 # Placing several traces by repetitive calls to gdb_init leads
4765 # to problems, as only one trace is removed in gdb_finish.
4766 # To overcome this possible problem, we add a variable that records
4767 # if the banned variables and procedures are already traced.
4770 proc gdb_init { test_file_name } {
4771 # Reset the timeout value to the default. This way, any testcase
4772 # that changes the timeout value without resetting it cannot affect
4773 # the timeout used in subsequent testcases.
4774 global gdb_test_timeout
4776 set timeout $gdb_test_timeout
4778 if { [regexp ".*gdb\.reverse\/.*" $test_file_name]
4779 && [target_info exists gdb_reverse_timeout] } {
4780 set timeout [target_info gdb_reverse_timeout]
4783 # If GDB_INOTIFY is given, check for writes to '.'. This is a
4784 # debugging tool to help confirm that the test suite is
4785 # parallel-safe. You need "inotifywait" from the
4786 # inotify-tools package to use this.
4787 global GDB_INOTIFY inotify_pid
4788 if {[info exists GDB_INOTIFY] && ![info exists inotify_pid]} {
4789 global outdir tool inotify_log_file
4791 set exclusions {outputs temp gdb[.](log|sum) cache}
4792 set exclusion_re ([join $exclusions |])
4794 set inotify_log_file [standard_temp_file inotify.out]
4795 set inotify_pid [exec inotifywait -r -m -e move,create,delete . \
4796 --exclude $exclusion_re \
4797 |& tee -a $outdir/$tool.log $inotify_log_file &]
4799 # Wait for the watches; hopefully this is long enough.
4802 # Clear the log so that we don't emit a warning the first time
4804 set fd [open $inotify_log_file w]
4808 # Block writes to all banned variables, and invocation of all
4809 # banned procedures...
4810 global banned_variables
4811 global banned_procedures
4812 global banned_traced
4813 if (!$banned_traced) {
4814 foreach banned_var $banned_variables {
4815 global "$banned_var"
4816 trace add variable "$banned_var" write error
4818 foreach banned_proc $banned_procedures {
4819 global "$banned_proc"
4820 trace add execution "$banned_proc" enter error
4825 # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
4826 # messages as expected.
4831 # Don't let a .inputrc file or an existing setting of INPUTRC mess up
4832 # the test results. Even if /dev/null doesn't exist on the particular
4833 # platform, the readline library will use the default setting just by
4834 # failing to open the file. OTOH, opening /dev/null successfully will
4835 # also result in the default settings being used since nothing will be
4836 # read from this file.
4837 setenv INPUTRC "/dev/null"
4839 # This disables style output, which would interfere with many
4843 # Initialize GDB's pty with a fixed size, to make sure we avoid pagination
4844 # during startup. See "man expect" for details about stty_init.
4846 set stty_init "rows 25 cols 80"
4848 # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
4849 # grep. Clear GREP_OPTIONS to make the behavior predictable,
4850 # especially having color output turned on can cause tests to fail.
4851 setenv GREP_OPTIONS ""
4853 # Clear $gdbserver_reconnect_p.
4854 global gdbserver_reconnect_p
4855 set gdbserver_reconnect_p 1
4856 unset gdbserver_reconnect_p
4858 # Reset GDB number of instances
4859 global gdb_instances
4862 return [default_gdb_init $test_file_name]
4865 proc gdb_finish { } {
4866 global gdbserver_reconnect_p
4870 # Exit first, so that the files are no longer in use.
4873 if { [llength $cleanfiles] > 0 } {
4874 eval remote_file target delete $cleanfiles
4878 # Unblock write access to the banned variables. Dejagnu typically
4879 # resets some of them between testcases.
4880 global banned_variables
4881 global banned_procedures
4882 global banned_traced
4883 if ($banned_traced) {
4884 foreach banned_var $banned_variables {
4885 global "$banned_var"
4886 trace remove variable "$banned_var" write error
4888 foreach banned_proc $banned_procedures {
4889 global "$banned_proc"
4890 trace remove execution "$banned_proc" enter error
4897 set debug_format "unknown"
4899 # Run the gdb command "info source" and extract the debugging format
4900 # information from the output and save it in debug_format.
4902 proc get_debug_format { } {
4908 set debug_format "unknown"
4909 send_gdb "info source\n"
4911 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
4912 set debug_format $expect_out(1,string)
4913 verbose "debug format is $debug_format"
4916 -re "No current source file.\r\n$gdb_prompt $" {
4917 perror "get_debug_format used when no current source file"
4920 -re "$gdb_prompt $" {
4921 warning "couldn't check debug format (no valid response)."
4925 warning "couldn't check debug format (timeout)."
4931 # Return true if FORMAT matches the debug format the current test was
4932 # compiled with. FORMAT is a shell-style globbing pattern; it can use
4933 # `*', `[...]', and so on.
4935 # This function depends on variables set by `get_debug_format', above.
4937 proc test_debug_format {format} {
4940 return [expr [string match $format $debug_format] != 0]
4943 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
4944 # COFF, stabs, etc). If that format matches the format that the
4945 # current test was compiled with, then the next test is expected to
4946 # fail for any target. Returns 1 if the next test or set of tests is
4947 # expected to fail, 0 otherwise (or if it is unknown). Must have
4948 # previously called get_debug_format.
4949 proc setup_xfail_format { format } {
4950 set ret [test_debug_format $format]
4958 # gdb_get_line_number TEXT [FILE]
4960 # Search the source file FILE, and return the line number of the
4961 # first line containing TEXT. If no match is found, an error is thrown.
4963 # TEXT is a string literal, not a regular expression.
4965 # The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
4966 # specified, and does not start with "/", then it is assumed to be in
4967 # "$srcdir/$subdir". This is awkward, and can be fixed in the future,
4968 # by changing the callers and the interface at the same time.
4969 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
4970 # gdb.base/ena-dis-br.exp.
4972 # Use this function to keep your test scripts independent of the
4973 # exact line numbering of the source file. Don't write:
4975 # send_gdb "break 20"
4977 # This means that if anyone ever edits your test's source file,
4978 # your test could break. Instead, put a comment like this on the
4979 # source file line you want to break at:
4981 # /* breakpoint spot: frotz.exp: test name */
4983 # and then write, in your test script (which we assume is named
4986 # send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
4988 # (Yes, Tcl knows how to handle the nested quotes and brackets.
4991 # % puts "foo [lindex "bar baz" 1]"
4994 # Tcl is quite clever, for a little stringy language.)
4998 # The previous implementation of this procedure used the gdb search command.
4999 # This version is different:
5001 # . It works with MI, and it also works when gdb is not running.
5003 # . It operates on the build machine, not the host machine.
5005 # . For now, this implementation fakes a current directory of
5006 # $srcdir/$subdir to be compatible with the old implementation.
5007 # This will go away eventually and some callers will need to
5010 # . The TEXT argument is literal text and matches literally,
5011 # not a regular expression as it was before.
5013 # . State changes in gdb, such as changing the current file
5014 # and setting $_, no longer happen.
5016 # After a bit of time we can forget about the differences from the
5017 # old implementation.
5019 # --chastain 2004-08-05
5021 proc gdb_get_line_number { text { file "" } } {
5026 if { "$file" == "" } then {
5029 if { ! [regexp "^/" "$file"] } then {
5030 set file "$srcdir/$subdir/$file"
5033 if { [ catch { set fd [open "$file"] } message ] } then {
5038 for { set line 1 } { 1 } { incr line } {
5039 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
5042 if { $nchar < 0 } then {
5045 if { [string first "$text" "$body"] >= 0 } then {
5051 if { [ catch { close "$fd" } message ] } then {
5056 error "undefined tag \"$text\""
5062 # Continue the program until it ends.
5064 # MSSG is the error message that gets printed. If not given, a
5066 # COMMAND is the command to invoke. If not given, "continue" is
5068 # ALLOW_EXTRA is a flag indicating whether the test should expect
5069 # extra output between the "Continuing." line and the program
5070 # exiting. By default it is zero; if nonzero, any extra output
5073 proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
5074 global inferior_exited_re use_gdb_stub
5077 set text "continue until exit"
5079 set text "continue until exit at $mssg"
5087 # By default, we don't rely on exit() behavior of remote stubs --
5088 # it's common for exit() to be implemented as a simple infinite
5089 # loop, or a forced crash/reset. For native targets, by default, we
5090 # assume process exit is reported as such. If a non-reliable target
5091 # is used, we set a breakpoint at exit, and continue to that.
5092 if { [target_info exists exit_is_reliable] } {
5093 set exit_is_reliable [target_info exit_is_reliable]
5095 set exit_is_reliable [expr ! $use_gdb_stub]
5098 if { ! $exit_is_reliable } {
5099 if {![gdb_breakpoint "exit"]} {
5102 gdb_test $command "Continuing..*Breakpoint .*exit.*" \
5105 # Continue until we exit. Should not stop again.
5106 # Don't bother to check the output of the program, that may be
5107 # extremely tough for some remote systems.
5109 "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
5114 proc rerun_to_main {} {
5115 global gdb_prompt use_gdb_stub
5120 -re ".*Breakpoint .*main .*$gdb_prompt $"\
5121 {pass "rerun to main" ; return 0}
5122 -re "$gdb_prompt $"\
5123 {fail "rerun to main" ; return 0}
5124 timeout {fail "(timeout) rerun to main" ; return 0}
5129 -re "The program .* has been started already.*y or n. $" {
5130 send_gdb "y\n" answer
5133 -re "Starting program.*$gdb_prompt $"\
5134 {pass "rerun to main" ; return 0}
5135 -re "$gdb_prompt $"\
5136 {fail "rerun to main" ; return 0}
5137 timeout {fail "(timeout) rerun to main" ; return 0}
5142 # Return true if EXECUTABLE contains a .gdb_index or .debug_names index section.
5144 proc exec_has_index_section { executable } {
5145 set readelf_program [gdb_find_readelf]
5146 set res [catch {exec $readelf_program -S $executable \
5147 | grep -E "\.gdb_index|\.debug_names" }]
5154 # Return true if a test should be skipped due to lack of floating
5155 # point support or GDB can't fetch the contents from floating point
5158 gdb_caching_proc gdb_skip_float_test {
5159 if [target_info exists gdb,skip_float_tests] {
5163 # There is an ARM kernel ptrace bug that hardware VFP registers
5164 # are not updated after GDB ptrace set VFP registers. The bug
5165 # was introduced by kernel commit 8130b9d7b9d858aa04ce67805e8951e3cb6e9b2f
5166 # in 2012 and is fixed in e2dfb4b880146bfd4b6aa8e138c0205407cebbaf
5167 # in May 2016. In other words, kernels older than 4.6.3, 4.4.14,
5168 # 4.1.27, 3.18.36, and 3.14.73 have this bug.
5169 # This kernel bug is detected by check how does GDB change the
5170 # program result by changing one VFP register.
5171 if { [istarget "arm*-*-linux*"] } {
5173 set compile_flags {debug nowarnings }
5175 # Set up, compile, and execute a test program having VFP
5177 set src [standard_temp_file arm_vfp[pid].c]
5178 set exe [standard_temp_file arm_vfp[pid].x]
5180 gdb_produce_source $src {
5185 asm ("vldr d0, [%0]" : : "r" (&d));
5186 asm ("vldr d1, [%0]" : : "r" (&d));
5187 asm (".global break_here\n"
5189 asm ("vcmp.f64 d0, d1\n"
5190 "vmrs APSR_nzcv, fpscr\n"
5191 "bne L_value_different\n"
5194 "L_value_different:\n"
5196 "L_end:\n" : "=r" (ret) :);
5198 /* Return $d0 != $d1. */
5203 verbose "compiling testfile $src" 2
5204 set lines [gdb_compile $src $exe executable $compile_flags]
5207 if ![string match "" $lines] then {
5208 verbose "testfile compilation failed, returning 1" 2
5212 # No error message, compilation succeeded so now run it via gdb.
5213 # Run the test up to 5 times to detect whether ptrace can
5214 # correctly update VFP registers or not.
5216 for {set i 0} {$i < 5} {incr i} {
5217 global gdb_prompt srcdir subdir
5221 gdb_reinitialize_dir $srcdir/$subdir
5225 gdb_test "break *break_here"
5226 gdb_continue_to_breakpoint "break_here"
5228 # Modify $d0 to a different value, so the exit code should
5230 gdb_test "set \$d0 = 5.0"
5232 set test "continue to exit"
5233 gdb_test_multiple "continue" "$test" {
5234 -re "exited with code 01.*$gdb_prompt $" {
5236 -re "exited normally.*$gdb_prompt $" {
5237 # However, the exit code is 0. That means something
5238 # wrong in setting VFP registers.
5246 remote_file build delete $exe
5248 return $skip_vfp_test
5253 # Print a message and return true if a test should be skipped
5254 # due to lack of stdio support.
5256 proc gdb_skip_stdio_test { msg } {
5257 if [target_info exists gdb,noinferiorio] {
5258 verbose "Skipping test '$msg': no inferior i/o."
5264 proc gdb_skip_bogus_test { msg } {
5268 # Return true if a test should be skipped due to lack of XML support
5270 # NOTE: This must be called while gdb is *not* running.
5272 gdb_caching_proc gdb_skip_xml_test {
5277 if { [info exists gdb_spawn_id] } {
5278 error "GDB must not be running in gdb_skip_xml_tests."
5281 set xml_file [gdb_remote_download host "${srcdir}/gdb.xml/trivial.xml"]
5285 gdb_test_multiple "set tdesc filename $xml_file" "" {
5286 -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
5289 -re ".*$gdb_prompt $" { }
5295 # Return true if argv[0] is available.
5297 gdb_caching_proc gdb_has_argv0 {
5300 # Compile and execute a test program to check whether argv[0] is available.
5301 gdb_simple_compile has_argv0 {
5302 int main (int argc, char **argv) {
5309 proc gdb_has_argv0_1 { exe } {
5310 global srcdir subdir
5311 global gdb_prompt hex
5315 gdb_reinitialize_dir $srcdir/$subdir
5318 # Set breakpoint on main.
5319 gdb_test_multiple "break main" "break main" {
5320 -re "Breakpoint.*${gdb_prompt} $" {
5322 -re "${gdb_prompt} $" {
5329 gdb_test_multiple "" "run to main" {
5330 -re "Breakpoint.*${gdb_prompt} $" {
5332 -re "${gdb_prompt} $" {
5337 set old_elements "200"
5338 set test "show print elements"
5339 gdb_test_multiple $test $test {
5340 -re "Limit on string chars or array elements to print is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
5341 set old_elements $expect_out(1,string)
5344 set old_repeats "200"
5345 set test "show print repeats"
5346 gdb_test_multiple $test $test {
5347 -re "Threshold for repeated print elements is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
5348 set old_repeats $expect_out(1,string)
5351 gdb_test_no_output "set print elements unlimited" ""
5352 gdb_test_no_output "set print repeats unlimited" ""
5355 # Check whether argc is 1.
5356 gdb_test_multiple "p argc" "p argc" {
5357 -re " = 1\r\n${gdb_prompt} $" {
5359 gdb_test_multiple "p argv\[0\]" "p argv\[0\]" {
5360 -re " = $hex \".*[file tail $exe]\"\r\n${gdb_prompt} $" {
5363 -re "${gdb_prompt} $" {
5367 -re "${gdb_prompt} $" {
5371 gdb_test_no_output "set print elements $old_elements" ""
5372 gdb_test_no_output "set print repeats $old_repeats" ""
5377 set result [gdb_has_argv0_1 $obj]
5383 && ([istarget *-*-linux*]
5384 || [istarget *-*-freebsd*] || [istarget *-*-kfreebsd*]
5385 || [istarget *-*-netbsd*] || [istarget *-*-knetbsd*]
5386 || [istarget *-*-openbsd*]
5387 || [istarget *-*-darwin*]
5388 || [istarget *-*-solaris*]
5389 || [istarget *-*-aix*]
5390 || [istarget *-*-gnu*]
5391 || [istarget *-*-cygwin*] || [istarget *-*-mingw32*]
5392 || [istarget *-*-*djgpp*] || [istarget *-*-go32*]
5393 || [istarget *-wince-pe] || [istarget *-*-mingw32ce*]
5394 || [istarget *-*-symbianelf*]
5395 || [istarget *-*-osf*]
5396 || [istarget *-*-dicos*]
5397 || [istarget *-*-nto*]
5398 || [istarget *-*-*vms*]
5399 || [istarget *-*-lynx*178]) } {
5400 fail "argv\[0\] should be available on this target"
5406 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
5407 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
5408 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
5409 # the name of a debuginfo only file. This file will be stored in the same
5412 # Functions for separate debug info testing
5414 # starting with an executable:
5415 # foo --> original executable
5417 # at the end of the process we have:
5418 # foo.stripped --> foo w/o debug info
5419 # foo.debug --> foo's debug info
5420 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
5422 # Fetch the build id from the file.
5423 # Returns "" if there is none.
5425 proc get_build_id { filename } {
5426 if { ([istarget "*-*-mingw*"]
5427 || [istarget *-*-cygwin*]) } {
5428 set objdump_program [gdb_find_objdump]
5429 set result [catch {set data [exec $objdump_program -p $filename | grep signature | cut "-d " -f4]} output]
5430 verbose "result is $result"
5431 verbose "output is $output"
5437 set tmp [standard_output_file "${filename}-tmp"]
5438 set objcopy_program [gdb_find_objcopy]
5439 set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $filename $tmp" output]
5440 verbose "result is $result"
5441 verbose "output is $output"
5446 fconfigure $fi -translation binary
5447 # Skip the NOTE header.
5452 if ![string compare $data ""] then {
5455 # Convert it to hex.
5456 binary scan $data H* data
5461 # Return the build-id hex string (usually 160 bits as 40 hex characters)
5462 # converted to the form: .build-id/ab/cdef1234...89.debug
5463 # Return "" if no build-id found.
5464 proc build_id_debug_filename_get { filename } {
5465 set data [get_build_id $filename]
5466 if { $data == "" } {
5469 regsub {^..} $data {\0/} data
5470 return ".build-id/${data}.debug"
5473 # Create stripped files for DEST, replacing it. If ARGS is passed, it is a
5474 # list of optional flags. The only currently supported flag is no-main,
5475 # which removes the symbol entry for main from the separate debug file.
5477 # Function returns zero on success. Function will return non-zero failure code
5478 # on some targets not supporting separate debug info (such as i386-msdos).
5480 proc gdb_gnu_strip_debug { dest args } {
5482 # Use the first separate debug info file location searched by GDB so the
5483 # run cannot be broken by some stale file searched with higher precedence.
5484 set debug_file "${dest}.debug"
5486 set strip_to_file_program [transform strip]
5487 set objcopy_program [gdb_find_objcopy]
5489 set debug_link [file tail $debug_file]
5490 set stripped_file "${dest}.stripped"
5492 # Get rid of the debug info, and store result in stripped_file
5493 # something like gdb/testsuite/gdb.base/blah.stripped.
5494 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
5495 verbose "result is $result"
5496 verbose "output is $output"
5501 # Workaround PR binutils/10802:
5502 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5503 set perm [file attributes ${dest} -permissions]
5504 file attributes ${stripped_file} -permissions $perm
5506 # Get rid of everything but the debug info, and store result in debug_file
5507 # This will be in the .debug subdirectory, see above.
5508 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
5509 verbose "result is $result"
5510 verbose "output is $output"
5515 # If no-main is passed, strip the symbol for main from the separate
5516 # file. This is to simulate the behavior of elfutils's eu-strip, which
5517 # leaves the symtab in the original file only. There's no way to get
5518 # objcopy or strip to remove the symbol table without also removing the
5519 # debugging sections, so this is as close as we can get.
5520 if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
5521 set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
5522 verbose "result is $result"
5523 verbose "output is $output"
5527 file delete "${debug_file}"
5528 file rename "${debug_file}-tmp" "${debug_file}"
5531 # Link the two previous output files together, adding the .gnu_debuglink
5532 # section to the stripped_file, containing a pointer to the debug_file,
5533 # save the new file in dest.
5534 # This will be the regular executable filename, in the usual location.
5535 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
5536 verbose "result is $result"
5537 verbose "output is $output"
5542 # Workaround PR binutils/10802:
5543 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5544 set perm [file attributes ${stripped_file} -permissions]
5545 file attributes ${dest} -permissions $perm
5550 # Test the output of GDB_COMMAND matches the pattern obtained
5551 # by concatenating all elements of EXPECTED_LINES. This makes
5552 # it possible to split otherwise very long string into pieces.
5553 # If third argument is not empty, it's used as the name of the
5554 # test to be printed on pass/fail.
5555 proc help_test_raw { gdb_command expected_lines args } {
5556 set message $gdb_command
5557 if [llength $args]>0 then {
5558 set message [lindex $args 0]
5560 set expected_output [join $expected_lines ""]
5561 gdb_test "${gdb_command}" "${expected_output}" $message
5564 # Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
5565 # are regular expressions that should match the beginning of output,
5566 # before the list of commands in that class. The presence of
5567 # command list and standard epilogue will be tested automatically.
5568 # Notice that the '[' and ']' characters don't need to be escaped for strings
5569 # wrapped in {} braces.
5570 proc test_class_help { command_class expected_initial_lines args } {
5572 "List of commands\:.*[\r\n]+"
5573 "Type \"help\" followed by command name for full documentation\.[\r\n]+"
5574 "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n]+"
5575 "Command name abbreviations are allowed if unambiguous\."
5577 set l_entire_body [concat $expected_initial_lines $l_stock_body]
5579 eval [list help_test_raw "help ${command_class}" $l_entire_body] $args
5582 # COMMAND_LIST should have either one element -- command to test, or
5583 # two elements -- abbreviated command to test, and full command the first
5584 # element is abbreviation of.
5585 # The command must be a prefix command. EXPECTED_INITIAL_LINES
5586 # are regular expressions that should match the beginning of output,
5587 # before the list of subcommands. The presence of
5588 # subcommand list and standard epilogue will be tested automatically.
5589 proc test_prefix_command_help { command_list expected_initial_lines args } {
5590 set command [lindex $command_list 0]
5591 if {[llength $command_list]>1} {
5592 set full_command [lindex $command_list 1]
5594 set full_command $command
5596 # Use 'list' and not just {} because we want variables to
5597 # be expanded in this list.
5598 set l_stock_body [list\
5599 "List of $full_command subcommands\:.*\[\r\n\]+"\
5600 "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"\
5601 "Type \"apropos word\" to search for commands related to \"word\"\.\[\r\n\]+"\
5602 "Command name abbreviations are allowed if unambiguous\."]
5603 set l_entire_body [concat $expected_initial_lines $l_stock_body]
5604 if {[llength $args]>0} {
5605 help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
5607 help_test_raw "help ${command}" $l_entire_body
5611 # Build executable named EXECUTABLE from specifications that allow
5612 # different options to be passed to different sub-compilations.
5613 # TESTNAME is the name of the test; this is passed to 'untested' if
5615 # OPTIONS is passed to the final link, using gdb_compile. If OPTIONS
5616 # contains the option "pthreads", then gdb_compile_pthreads is used.
5617 # ARGS is a flat list of source specifications, of the form:
5618 # { SOURCE1 OPTIONS1 [ SOURCE2 OPTIONS2 ]... }
5619 # Each SOURCE is compiled to an object file using its OPTIONS,
5620 # using gdb_compile.
5621 # Returns 0 on success, -1 on failure.
5622 proc build_executable_from_specs {testname executable options args} {
5626 set binfile [standard_output_file $executable]
5629 if { [lsearch -exact $options "c++"] >= 0 } {
5630 set info_options "c++"
5632 if [get_compiler_info ${info_options}] {
5636 set func gdb_compile
5637 set func_index [lsearch -regexp $options {^(pthreads|shlib|shlib_pthreads)$}]
5638 if {$func_index != -1} {
5639 set func "${func}_[lindex $options $func_index]"
5642 # gdb_compile_shlib and gdb_compile_shlib_pthreads do not use the 3rd
5643 # parameter. They also requires $sources while gdb_compile and
5644 # gdb_compile_pthreads require $objects. Moreover they ignore any options.
5645 if [string match gdb_compile_shlib* $func] {
5647 foreach {s local_options} $args {
5648 if { [regexp "^/" "$s"] } then {
5649 lappend sources_path "$s"
5651 lappend sources_path "$srcdir/$subdir/$s"
5654 set ret [$func $sources_path "${binfile}" $options]
5655 } elseif {[lsearch -exact $options rust] != -1} {
5657 foreach {s local_options} $args {
5658 if { [regexp "^/" "$s"] } then {
5659 lappend sources_path "$s"
5661 lappend sources_path "$srcdir/$subdir/$s"
5664 set ret [gdb_compile_rust $sources_path "${binfile}" $options]
5668 foreach {s local_options} $args {
5669 if { ! [regexp "^/" "$s"] } then {
5670 set s "$srcdir/$subdir/$s"
5672 if { [gdb_compile "${s}" "${binfile}${i}.o" object $local_options] != "" } {
5676 lappend objects "${binfile}${i}.o"
5679 set ret [$func $objects "${binfile}" executable $options]
5689 # Build executable named EXECUTABLE, from SOURCES. If SOURCES are not
5690 # provided, uses $EXECUTABLE.c. The TESTNAME paramer is the name of test
5691 # to pass to untested, if something is wrong. OPTIONS are passed
5692 # to gdb_compile directly.
5693 proc build_executable { testname executable {sources ""} {options {debug}} } {
5694 if {[llength $sources]==0} {
5695 set sources ${executable}.c
5698 set arglist [list $testname $executable $options]
5699 foreach source $sources {
5700 lappend arglist $source $options
5703 return [eval build_executable_from_specs $arglist]
5706 # Starts fresh GDB binary and loads an optional executable into GDB.
5707 # Usage: clean_restart [executable]
5708 # EXECUTABLE is the basename of the binary.
5710 proc clean_restart { args } {
5714 if { [llength $args] > 1 } {
5715 error "bad number of args: [llength $args]"
5720 gdb_reinitialize_dir $srcdir/$subdir
5722 if { [llength $args] >= 1 } {
5723 set executable [lindex $args 0]
5724 set binfile [standard_output_file ${executable}]
5729 # Prepares for testing by calling build_executable_full, then
5731 # TESTNAME is the name of the test.
5732 # Each element in ARGS is a list of the form
5733 # { EXECUTABLE OPTIONS SOURCE_SPEC... }
5734 # These are passed to build_executable_from_specs, which see.
5735 # The last EXECUTABLE is passed to clean_restart.
5736 # Returns 0 on success, non-zero on failure.
5737 proc prepare_for_testing_full {testname args} {
5738 foreach spec $args {
5739 if {[eval build_executable_from_specs [list $testname] $spec] == -1} {
5742 set executable [lindex $spec 0]
5744 clean_restart $executable
5748 # Prepares for testing, by calling build_executable, and then clean_restart.
5749 # Please refer to build_executable for parameter description.
5750 proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
5752 if {[build_executable $testname $executable $sources $options] == -1} {
5755 clean_restart $executable
5760 # Retrieve the value of EXP in the inferior, represented in format
5761 # specified in FMT (using "printFMT"). DEFAULT is used as fallback if
5762 # print fails. TEST is the test message to use. It can be omitted,
5763 # in which case a test message is built from EXP.
5765 proc get_valueof { fmt exp default {test ""} } {
5769 set test "get valueof \"${exp}\""
5773 gdb_test_multiple "print${fmt} ${exp}" "$test" {
5774 -re "\\$\[0-9\]* = (\[^\r\n\]*)\[\r\n\]*$gdb_prompt $" {
5775 set val $expect_out(1,string)
5779 fail "$test (timeout)"
5785 # Retrieve the value of EXP in the inferior, as a signed decimal value
5786 # (using "print /d"). DEFAULT is used as fallback if print fails.
5787 # TEST is the test message to use. It can be omitted, in which case
5788 # a test message is built from EXP.
5790 proc get_integer_valueof { exp default {test ""} } {
5794 set test "get integer valueof \"${exp}\""
5798 gdb_test_multiple "print /d ${exp}" "$test" {
5799 -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
5800 set val $expect_out(1,string)
5804 fail "$test (timeout)"
5810 # Retrieve the value of EXP in the inferior, as an hexadecimal value
5811 # (using "print /x"). DEFAULT is used as fallback if print fails.
5812 # TEST is the test message to use. It can be omitted, in which case
5813 # a test message is built from EXP.
5815 proc get_hexadecimal_valueof { exp default {test ""} } {
5819 set test "get hexadecimal valueof \"${exp}\""
5823 gdb_test_multiple "print /x ${exp}" $test {
5824 -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
5825 set val $expect_out(1,string)
5832 # Retrieve the size of TYPE in the inferior, as a decimal value. DEFAULT
5833 # is used as fallback if print fails. TEST is the test message to use.
5834 # It can be omitted, in which case a test message is 'sizeof (TYPE)'.
5836 proc get_sizeof { type default {test ""} } {
5837 return [get_integer_valueof "sizeof (${type})" $default $test]
5840 proc get_target_charset { } {
5843 gdb_test_multiple "show target-charset" "" {
5844 -re "The target character set is \"auto; currently (\[^\"\]*)\".*$gdb_prompt $" {
5845 return $expect_out(1,string)
5847 -re "The target character set is \"(\[^\"\]*)\".*$gdb_prompt $" {
5848 return $expect_out(1,string)
5852 # Pick a reasonable default.
5853 warning "Unable to read target-charset."
5857 # Get the address of VAR.
5859 proc get_var_address { var } {
5860 global gdb_prompt hex
5862 # Match output like:
5864 # $5 = (int (*)()) 0
5865 # $6 = (int (*)()) 0x24 <function_bar>
5867 gdb_test_multiple "print &${var}" "get address of ${var}" {
5868 -re "\\\$\[0-9\]+ = \\(.*\\) (0|$hex)( <${var}>)?\[\r\n\]+${gdb_prompt} $"
5870 pass "get address of ${var}"
5871 if { $expect_out(1,string) == "0" } {
5874 return $expect_out(1,string)
5881 # Return the frame number for the currently selected frame
5882 proc get_current_frame_number {{test_name ""}} {
5885 if { $test_name == "" } {
5886 set test_name "get current frame number"
5889 gdb_test_multiple "frame" $test_name {
5890 -re "#(\[0-9\]+) .*$gdb_prompt $" {
5891 set frame_num $expect_out(1,string)
5897 # Get the current value for remotetimeout and return it.
5898 proc get_remotetimeout { } {
5902 gdb_test_multiple "show remotetimeout" "" {
5903 -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
5904 return $expect_out(1,string)
5908 # Pick the default that gdb uses
5909 warning "Unable to read remotetimeout"
5913 # Set the remotetimeout to the specified timeout. Nothing is returned.
5914 proc set_remotetimeout { timeout } {
5917 gdb_test_multiple "set remotetimeout $timeout" "" {
5918 -re "$gdb_prompt $" {
5919 verbose "Set remotetimeout to $timeout\n"
5924 # Get the target's current endianness and return it.
5925 proc get_endianness { } {
5928 gdb_test_multiple "show endian" "determine endianness" {
5929 -re ".* (little|big) endian.*\r\n$gdb_prompt $" {
5931 return $expect_out(1,string)
5937 # ROOT and FULL are file names. Returns the relative path from ROOT
5938 # to FULL. Note that FULL must be in a subdirectory of ROOT.
5939 # For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this
5942 proc relative_filename {root full} {
5943 set root_split [file split $root]
5944 set full_split [file split $full]
5946 set len [llength $root_split]
5948 if {[eval file join $root_split]
5949 != [eval file join [lrange $full_split 0 [expr {$len - 1}]]]} {
5950 error "$full not a subdir of $root"
5953 return [eval file join [lrange $full_split $len end]]
5956 # Log gdb command line and script if requested.
5957 if {[info exists TRANSCRIPT]} {
5958 rename send_gdb real_send_gdb
5959 rename remote_spawn real_remote_spawn
5960 rename remote_close real_remote_close
5962 global gdb_transcript
5963 set gdb_transcript ""
5965 global gdb_trans_count
5966 set gdb_trans_count 1
5968 proc remote_spawn {args} {
5969 global gdb_transcript gdb_trans_count outdir
5971 if {$gdb_transcript != ""} {
5972 close $gdb_transcript
5974 set gdb_transcript [open [file join $outdir transcript.$gdb_trans_count] w]
5975 puts $gdb_transcript [lindex $args 1]
5976 incr gdb_trans_count
5978 return [uplevel real_remote_spawn $args]
5981 proc remote_close {args} {
5982 global gdb_transcript
5984 if {$gdb_transcript != ""} {
5985 close $gdb_transcript
5986 set gdb_transcript ""
5989 return [uplevel real_remote_close $args]
5992 proc send_gdb {args} {
5993 global gdb_transcript
5995 if {$gdb_transcript != ""} {
5996 puts -nonewline $gdb_transcript [lindex $args 0]
5999 return [uplevel real_send_gdb $args]
6003 # If GDB_PARALLEL exists, then set up the parallel-mode directories.
6004 if {[info exists GDB_PARALLEL]} {
6005 if {[is_remote host]} {
6009 [make_gdb_parallel_path outputs] \
6010 [make_gdb_parallel_path temp] \
6011 [make_gdb_parallel_path cache]
6015 proc core_find {binfile {deletefiles {}} {arg ""}} {
6016 global objdir subdir
6018 set destcore "$binfile.core"
6019 file delete $destcore
6021 # Create a core file named "$destcore" rather than just "core", to
6022 # avoid problems with sys admin types that like to regularly prune all
6023 # files named "core" from the system.
6025 # Arbitrarily try setting the core size limit to "unlimited" since
6026 # this does not hurt on systems where the command does not work and
6027 # allows us to generate a core on systems where it does.
6029 # Some systems append "core" to the name of the program; others append
6030 # the name of the program to "core"; still others (like Linux, as of
6031 # May 2003) create cores named "core.PID". In the latter case, we
6032 # could have many core files lying around, and it may be difficult to
6033 # tell which one is ours, so let's run the program in a subdirectory.
6035 set coredir [standard_output_file coredir.[getpid]]
6037 catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
6038 # remote_exec host "${binfile}"
6039 foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
6040 if [remote_file build exists $i] {
6041 remote_exec build "mv $i $destcore"
6045 # Check for "core.PID".
6046 if { $found == 0 } {
6047 set names [glob -nocomplain -directory $coredir core.*]
6048 if {[llength $names] == 1} {
6049 set corefile [file join $coredir [lindex $names 0]]
6050 remote_exec build "mv $corefile $destcore"
6054 if { $found == 0 } {
6055 # The braindamaged HPUX shell quits after the ulimit -c above
6056 # without executing ${binfile}. So we try again without the
6057 # ulimit here if we didn't find a core file above.
6058 # Oh, I should mention that any "braindamaged" non-Unix system has
6059 # the same problem. I like the cd bit too, it's really neat'n stuff.
6060 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
6061 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
6062 if [remote_file build exists $i] {
6063 remote_exec build "mv $i $destcore"
6069 # Try to clean up after ourselves.
6070 foreach deletefile $deletefiles {
6071 remote_file build delete [file join $coredir $deletefile]
6073 remote_exec build "rmdir $coredir"
6075 if { $found == 0 } {
6076 warning "can't generate a core file - core tests suppressed - check ulimit -c"
6082 # gdb_target_symbol_prefix compiles a test program and then examines
6083 # the output from objdump to determine the prefix (such as underscore)
6084 # for linker symbol prefixes.
6086 gdb_caching_proc gdb_target_symbol_prefix {
6087 # Compile a simple test program...
6088 set src { int main() { return 0; } }
6089 if {![gdb_simple_compile target_symbol_prefix $src executable]} {
6095 set objdump_program [gdb_find_objdump]
6096 set result [catch "exec $objdump_program --syms $obj" output]
6099 && ![regexp -lineanchor \
6100 { ([^ a-zA-Z0-9]*)main$} $output dummy prefix] } {
6101 verbose "gdb_target_symbol_prefix: Could not find main in objdump output; returning null prefix" 2
6109 # Return 1 if target supports scheduler locking, otherwise return 0.
6111 gdb_caching_proc target_supports_scheduler_locking {
6114 set me "gdb_target_supports_scheduler_locking"
6116 set src { int main() { return 0; } }
6117 if {![gdb_simple_compile $me $src executable]} {
6126 set supports_schedule_locking -1
6127 set current_schedule_locking_mode ""
6129 set test "reading current scheduler-locking mode"
6130 gdb_test_multiple "show scheduler-locking" $test {
6131 -re "Mode for locking scheduler during execution is \"(\[\^\"\]*)\".*$gdb_prompt" {
6132 set current_schedule_locking_mode $expect_out(1,string)
6134 -re "$gdb_prompt $" {
6135 set supports_schedule_locking 0
6138 set supports_schedule_locking 0
6142 if { $supports_schedule_locking == -1 } {
6143 set test "checking for scheduler-locking support"
6144 gdb_test_multiple "set scheduler-locking $current_schedule_locking_mode" $test {
6145 -re "Target '\[^'\]+' cannot support this command\..*$gdb_prompt $" {
6146 set supports_schedule_locking 0
6148 -re "$gdb_prompt $" {
6149 set supports_schedule_locking 1
6152 set supports_schedule_locking 0
6157 if { $supports_schedule_locking == -1 } {
6158 set supports_schedule_locking 0
6162 remote_file build delete $obj
6163 verbose "$me: returning $supports_schedule_locking" 2
6164 return $supports_schedule_locking
6167 # gdb_target_symbol returns the provided symbol with the correct prefix
6168 # prepended. (See gdb_target_symbol_prefix, above.)
6170 proc gdb_target_symbol { symbol } {
6171 set prefix [gdb_target_symbol_prefix]
6172 return "${prefix}${symbol}"
6175 # gdb_target_symbol_prefix_flags_asm returns a string that can be
6176 # added to gdb_compile options to define the C-preprocessor macro
6177 # SYMBOL_PREFIX with a value that can be prepended to symbols
6178 # for targets which require a prefix, such as underscore.
6180 # This version (_asm) defines the prefix without double quotes
6181 # surrounding the prefix. It is used to define the macro
6182 # SYMBOL_PREFIX for assembly language files. Another version, below,
6183 # is used for symbols in inline assembler in C/C++ files.
6185 # The lack of quotes in this version (_asm) makes it possible to
6186 # define supporting macros in the .S file. (The version which
6187 # uses quotes for the prefix won't work for such files since it's
6188 # impossible to define a quote-stripping macro in C.)
6190 # It's possible to use this version (_asm) for C/C++ source files too,
6191 # but a string is usually required in such files; providing a version
6192 # (no _asm) which encloses the prefix with double quotes makes it
6193 # somewhat easier to define the supporting macros in the test case.
6195 proc gdb_target_symbol_prefix_flags_asm {} {
6196 set prefix [gdb_target_symbol_prefix]
6197 if {$prefix ne ""} {
6198 return "additional_flags=-DSYMBOL_PREFIX=$prefix"
6204 # gdb_target_symbol_prefix_flags returns the same string as
6205 # gdb_target_symbol_prefix_flags_asm, above, but with the prefix
6206 # enclosed in double quotes if there is a prefix.
6208 # See the comment for gdb_target_symbol_prefix_flags_asm for an
6209 # extended discussion.
6211 proc gdb_target_symbol_prefix_flags {} {
6212 set prefix [gdb_target_symbol_prefix]
6213 if {$prefix ne ""} {
6214 return "additional_flags=-DSYMBOL_PREFIX=\"$prefix\""
6220 # A wrapper for 'remote_exec host' that passes or fails a test.
6221 # Returns 0 if all went well, nonzero on failure.
6222 # TEST is the name of the test, other arguments are as for remote_exec.
6224 proc run_on_host { test program args } {
6225 verbose -log "run_on_host: $program $args"
6226 # remote_exec doesn't work properly if the output is set but the
6227 # input is the empty string -- so replace an empty input with
6229 if {[llength $args] > 1 && [lindex $args 1] == ""} {
6230 set args [lreplace $args 1 1 "/dev/null"]
6232 set result [eval remote_exec host [list $program] $args]
6233 verbose "result is $result"
6234 set status [lindex $result 0]
6235 set output [lindex $result 1]
6240 verbose -log "run_on_host failed: $output"
6246 # Return non-zero if "board_info debug_flags" mentions Fission.
6247 # http://gcc.gnu.org/wiki/DebugFission
6248 # Fission doesn't support everything yet.
6249 # This supports working around bug 15954.
6251 proc using_fission { } {
6252 set debug_flags [board_info [target_info name] debug_flags]
6253 return [regexp -- "-gsplit-dwarf" $debug_flags]
6256 # Search the caller's ARGS list and set variables according to the list of
6257 # valid options described by ARGSET.
6259 # The first member of each one- or two-element list in ARGSET defines the
6260 # name of a variable that will be added to the caller's scope.
6262 # If only one element is given to describe an option, it the value is
6263 # 0 if the option is not present in (the caller's) ARGS or 1 if
6266 # If two elements are given, the second element is the default value of
6267 # the variable. This is then overwritten if the option exists in ARGS.
6269 # Any parse_args elements in (the caller's) ARGS will be removed, leaving
6270 # any optional components.
6273 # proc myproc {foo args} {
6274 # parse_args {{bar} {baz "abc"} {qux}}
6277 # myproc ABC -bar -baz DEF peanut butter
6278 # will define the following variables in myproc:
6279 # foo (=ABC), bar (=1), baz (=DEF), and qux (=0)
6280 # args will be the list {peanut butter}
6282 proc parse_args { argset } {
6285 foreach argument $argset {
6286 if {[llength $argument] == 1} {
6287 # No default specified, so we assume that we should set
6288 # the value to 1 if the arg is present and 0 if it's not.
6289 # It is assumed that no value is given with the argument.
6290 set result [lsearch -exact $args "-$argument"]
6291 if {$result != -1} then {
6292 uplevel 1 [list set $argument 1]
6293 set args [lreplace $args $result $result]
6295 uplevel 1 [list set $argument 0]
6297 } elseif {[llength $argument] == 2} {
6298 # There are two items in the argument. The second is a
6299 # default value to use if the item is not present.
6300 # Otherwise, the variable is set to whatever is provided
6301 # after the item in the args.
6302 set arg [lindex $argument 0]
6303 set result [lsearch -exact $args "-[lindex $arg 0]"]
6304 if {$result != -1} then {
6305 uplevel 1 [list set $arg [lindex $args [expr $result+1]]]
6306 set args [lreplace $args $result [expr $result+1]]
6308 uplevel 1 [list set $arg [lindex $argument 1]]
6311 error "Badly formatted argument \"$argument\" in argument set"
6315 # The remaining args should be checked to see that they match the
6316 # number of items expected to be passed into the procedure...
6319 # Capture the output of COMMAND in a string ignoring PREFIX (a regexp);
6320 # return that string.
6322 proc capture_command_output { command prefix } {
6326 set output_string ""
6327 gdb_test_multiple "$command" "capture_command_output for $command" {
6328 -re "[string_to_regexp ${command}]\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
6329 set output_string $expect_out(1,string)
6332 return $output_string
6335 # A convenience function that joins all the arguments together, with a
6336 # regexp that matches exactly one end of line in between each argument.
6337 # This function is ideal to write the expected output of a GDB command
6338 # that generates more than a couple of lines, as this allows us to write
6339 # each line as a separate string, which is easier to read by a human
6342 proc multi_line { args } {
6343 return [join $args "\r\n"]
6346 # Similar to the above, but while multi_line is meant to be used to
6347 # match GDB output, this one is meant to be used to build strings to
6348 # send as GDB input.
6350 proc multi_line_input { args } {
6351 return [join $args "\n"]
6354 # Return the version of the DejaGnu framework.
6356 # The return value is a list containing the major, minor and patch version
6357 # numbers. If the version does not contain a minor or patch number, they will
6358 # be set to 0. For example:
6364 proc dejagnu_version { } {
6365 # The frame_version variable is defined by DejaGnu, in runtest.exp.
6366 global frame_version
6368 verbose -log "DejaGnu version: $frame_version"
6369 verbose -log "Expect version: [exp_version]"
6370 verbose -log "Tcl version: [info tclversion]"
6372 set dg_ver [split $frame_version .]
6374 while { [llength $dg_ver] < 3 } {
6381 # Define user-defined command COMMAND using the COMMAND_LIST as the
6382 # command's definition. The terminating "end" is added automatically.
6384 proc gdb_define_cmd {command command_list} {
6387 set input [multi_line_input {*}$command_list "end"]
6388 set test "define $command"
6390 gdb_test_multiple "define $command" $test {
6392 gdb_test_multiple $input $test {
6393 -re "\r\n$gdb_prompt " {
6400 # Override the 'cd' builtin with a version that ensures that the
6401 # log file keeps pointing at the same file. We need this because
6402 # unfortunately the path to the log file is recorded using an
6403 # relative path name, and, we sometimes need to close/reopen the log
6404 # after changing the current directory. See get_compiler_info.
6406 rename cd builtin_cd
6410 # Get the existing log file flags.
6411 set log_file_info [log_file -info]
6413 # Split the flags into args and file name.
6414 set log_file_flags ""
6415 set log_file_file ""
6416 foreach arg [ split "$log_file_info" " "] {
6417 if [string match "-*" $arg] {
6418 lappend log_file_flags $arg
6420 lappend log_file_file $arg
6424 # If there was an existing file, ensure it is an absolute path, and then
6426 if { $log_file_file != "" } {
6427 set log_file_file [file normalize $log_file_file]
6429 log_file $log_file_flags "$log_file_file"
6432 # Call the builtin version of cd.
6436 # Return a list of all languages supported by GDB, suitable for use in
6437 # 'set language NAME'. This doesn't include either the 'local' or
6439 proc gdb_supported_languages {} {
6440 return [list c objective-c c++ d go fortran modula-2 asm pascal \
6441 opencl rust minimal ada]
6444 # Check if debugging is enabled for gdb.
6446 proc gdb_debug_enabled { } {
6449 # If not already read, get the debug setting from environment or board setting.
6450 if {![info exists gdbdebug]} {
6452 if [info exists env(GDB_DEBUG)] {
6453 set gdbdebug $env(GDB_DEBUG)
6454 } elseif [target_info exists gdb,debug] {
6455 set gdbdebug [target_info gdb,debug]
6461 # Ensure it not empty.
6462 return [expr { $gdbdebug != "" }]
6465 # Turn on debugging if enabled, or reset if already on.
6467 proc gdb_debug_init { } {
6471 if ![gdb_debug_enabled] {
6475 # First ensure logging is off.
6476 send_gdb "set logging off\n"
6478 set debugfile [standard_output_file gdb.debug]
6479 send_gdb "set logging file $debugfile\n"
6481 send_gdb "set logging debugredirect\n"
6484 foreach entry [split $gdbdebug ,] {
6485 send_gdb "set debug $entry 1\n"
6488 # Now that everything is set, enable logging.
6489 send_gdb "set logging on\n"
6491 -re "Copying output to $debugfile.*Redirecting debug output to $debugfile.*$gdb_prompt $" {}
6492 timeout { warning "Couldn't set logging file" }
6496 # Check if debugging is enabled for gdbserver.
6498 proc gdbserver_debug_enabled { } {
6499 # Always disabled for GDB only setups.
6503 # Open the file for logging gdb input
6505 proc gdb_stdin_log_init { } {
6508 if {[info exists in_file]} {
6509 # Close existing file.
6510 catch "close $in_file"
6513 set logfile [standard_output_file_with_gdb_instance gdb.in]
6514 set in_file [open $logfile w]
6517 # Write to the file for logging gdb input.
6518 # TYPE can be one of the following:
6519 # "standard" : Default. Standard message written to the log
6520 # "answer" : Answer to a question (eg "Y"). Not written the log.
6521 # "optional" : Optional message. Not written to the log.
6523 proc gdb_stdin_log_write { message {type standard} } {
6526 if {![info exists in_file]} {
6530 # Check message types.
6531 switch -regexp -- $type {
6541 puts -nonewline $in_file "$message"
6544 # Write the command line used to invocate gdb to the cmd file.
6546 proc gdb_write_cmd_file { cmdline } {
6547 set logfile [standard_output_file_with_gdb_instance gdb.cmd]
6548 set cmd_file [open $logfile w]
6549 puts $cmd_file $cmdline
6550 catch "close $cmd_file"
6553 # Always load compatibility stuff.