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