* NEWS: Mention removed "set mips stack-arg-size" and "set mips
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / gdb.exp
CommitLineData
6aba47ca
DJ
1# Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
2# 2003, 2004, 2005, 2007 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
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
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.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
c906108c
SS
18# This file was written by Fred Fish. (fnf@cygnus.com)
19
20# Generic gdb subroutines that should work for any target. If these
21# need to be modified for any target, it can be done with a variable
22# or by passing arguments.
23
97c3f1f3
JK
24if {$tool == ""} {
25 # Tests would fail, logs on get_compiler_info() would be missing.
26 send_error "`site.exp' not found, run `make site.exp'!\n"
27 exit 2
28}
29
c906108c
SS
30load_lib libgloss.exp
31
32global GDB
c906108c
SS
33
34if [info exists TOOL_EXECUTABLE] {
35 set GDB $TOOL_EXECUTABLE;
36}
37if ![info exists GDB] {
38 if ![is_remote host] {
39 set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
40 } else {
41 set GDB [transform gdb];
42 }
43}
44verbose "using GDB = $GDB" 2
45
46global GDBFLAGS
47if ![info exists GDBFLAGS] {
48 set GDBFLAGS "-nx"
49}
50verbose "using GDBFLAGS = $GDBFLAGS" 2
51
9e0b60a8
JM
52# The variable gdb_prompt is a regexp which matches the gdb prompt.
53# Set it if it is not already set.
c906108c 54global gdb_prompt
9e0b60a8 55if ![info exists gdb_prompt] then {
c906108c
SS
56 set gdb_prompt "\[(\]gdb\[)\]"
57}
58
6006a3a1
BR
59# The variable fullname_syntax_POSIX is a regexp which matches a POSIX
60# absolute path ie. /foo/
61set fullname_syntax_POSIX "/.*/"
62# The variable fullname_syntax_UNC is a regexp which matches a Windows
63# UNC path ie. \\D\foo\
64set fullname_syntax_UNC {\\\\[^\\]+\\.+\\}
65# The variable fullname_syntax_DOS_CASE is a regexp which matches a
66# particular DOS case that GDB most likely will output
67# ie. \foo\, but don't match \\.*\
68set fullname_syntax_DOS_CASE {\\[^\\].*\\}
69# The variable fullname_syntax_DOS is a regexp which matches a DOS path
70# ie. a:\foo\ && a:foo\
71set fullname_syntax_DOS {[a-zA-Z]:.*\\}
72# The variable fullname_syntax is a regexp which matches what GDB considers
73# an absolute path. It is currently debatable if the Windows style paths
74# d:foo and \abc should be considered valid as an absolute path.
75# Also, the purpse of this regexp is not to recognize a well formed
76# absolute path, but to say with certainty that a path is absolute.
77set fullname_syntax "($fullname_syntax_POSIX|$fullname_syntax_UNC|$fullname_syntax_DOS_CASE|$fullname_syntax_DOS)"
78
93076499
ND
79# Needed for some tests under Cygwin.
80global EXEEXT
81global env
82
83if ![info exists env(EXEEXT)] {
84 set EXEEXT ""
85} else {
86 set EXEEXT $env(EXEEXT)
87}
88
085dd6e6
JM
89### Only procedures should come after this point.
90
c906108c
SS
91#
92# gdb_version -- extract and print the version number of GDB
93#
94proc default_gdb_version {} {
95 global GDB
96 global GDBFLAGS
97 global gdb_prompt
98 set fileid [open "gdb_cmd" w];
99 puts $fileid "q";
100 close $fileid;
101 set cmdfile [remote_download host "gdb_cmd"];
102 set output [remote_exec host "$GDB -nw --command $cmdfile"]
103 remote_file build delete "gdb_cmd";
104 remote_file host delete "$cmdfile";
105 set tmp [lindex $output 1];
106 set version ""
107 regexp " \[0-9\]\[^ \t\n\r\]+" "$tmp" version
108 if ![is_remote host] {
109 clone_output "[which $GDB] version $version $GDBFLAGS\n"
110 } else {
111 clone_output "$GDB on remote host version $version $GDBFLAGS\n"
112 }
113}
114
115proc gdb_version { } {
116 return [default_gdb_version];
117}
118
119#
120# gdb_unload -- unload a file if one is loaded
121#
122
123proc gdb_unload {} {
124 global verbose
125 global GDB
126 global gdb_prompt
127 send_gdb "file\n"
128 gdb_expect 60 {
129 -re "No executable file now\[^\r\n\]*\[\r\n\]" { exp_continue }
130 -re "No symbol file now\[^\r\n\]*\[\r\n\]" { exp_continue }
131 -re "A program is being debugged already..*Kill it.*y or n. $"\
132 { send_gdb "y\n"
133 verbose "\t\tKilling previous program being debugged"
134 exp_continue
135 }
136 -re "Discard symbol table from .*y or n.*$" {
137 send_gdb "y\n"
138 exp_continue
139 }
140 -re "$gdb_prompt $" {}
141 timeout {
142 perror "couldn't unload file in $GDB (timed out)."
143 return -1
144 }
145 }
146}
147
148# Many of the tests depend on setting breakpoints at various places and
149# running until that breakpoint is reached. At times, we want to start
150# with a clean-slate with respect to breakpoints, so this utility proc
151# lets us do this without duplicating this code everywhere.
152#
153
154proc delete_breakpoints {} {
155 global gdb_prompt
156
a0b3c4fd
JM
157 # we need a larger timeout value here or this thing just confuses
158 # itself. May need a better implementation if possible. - guo
159 #
c906108c 160 send_gdb "delete breakpoints\n"
a0b3c4fd 161 gdb_expect 100 {
c906108c
SS
162 -re "Delete all breakpoints.*y or n.*$" {
163 send_gdb "y\n";
164 exp_continue
165 }
166 -re "$gdb_prompt $" { # This happens if there were no breakpoints
167 }
168 timeout { perror "Delete all breakpoints in delete_breakpoints (timeout)" ; return }
169 }
170 send_gdb "info breakpoints\n"
a0b3c4fd 171 gdb_expect 100 {
c906108c
SS
172 -re "No breakpoints or watchpoints..*$gdb_prompt $" {}
173 -re "$gdb_prompt $" { perror "breakpoints not deleted" ; return }
174 -re "Delete all breakpoints.*or n.*$" {
175 send_gdb "y\n";
176 exp_continue
177 }
178 timeout { perror "info breakpoints (timeout)" ; return }
179 }
180}
181
182
183#
184# Generic run command.
185#
186# The second pattern below matches up to the first newline *only*.
187# Using ``.*$'' could swallow up output that we attempt to match
188# elsewhere.
189#
190proc gdb_run_cmd {args} {
191 global gdb_prompt
192
193 if [target_info exists gdb_init_command] {
194 send_gdb "[target_info gdb_init_command]\n";
195 gdb_expect 30 {
196 -re "$gdb_prompt $" { }
197 default {
198 perror "gdb_init_command for target failed";
199 return;
200 }
201 }
202 }
203
204 if [target_info exists use_gdb_stub] {
205 if [target_info exists gdb,do_reload_on_run] {
b741e217 206 if { [gdb_reload] != 0 } {
917317f4
JM
207 return;
208 }
c906108c
SS
209 send_gdb "continue\n";
210 gdb_expect 60 {
211 -re "Continu\[^\r\n\]*\[\r\n\]" {}
212 default {}
213 }
214 return;
215 }
216
217 if [target_info exists gdb,start_symbol] {
218 set start [target_info gdb,start_symbol];
219 } else {
220 set start "start";
221 }
222 send_gdb "jump *$start\n"
917317f4
JM
223 set start_attempt 1;
224 while { $start_attempt } {
225 # Cap (re)start attempts at three to ensure that this loop
226 # always eventually fails. Don't worry about trying to be
227 # clever and not send a command when it has failed.
228 if [expr $start_attempt > 3] {
229 perror "Jump to start() failed (retry count exceeded)";
c906108c
SS
230 return;
231 }
917317f4
JM
232 set start_attempt [expr $start_attempt + 1];
233 gdb_expect 30 {
234 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
235 set start_attempt 0;
236 }
237 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
238 perror "Can't find start symbol to run in gdb_run";
239 return;
240 }
241 -re "No symbol \"start\" in current.*$gdb_prompt $" {
242 send_gdb "jump *_start\n";
243 }
244 -re "No symbol.*context.*$gdb_prompt $" {
245 set start_attempt 0;
246 }
247 -re "Line.* Jump anyway.*y or n. $" {
248 send_gdb "y\n"
249 }
250 -re "The program is not being run.*$gdb_prompt $" {
b741e217 251 if { [gdb_reload] != 0 } {
917317f4
JM
252 return;
253 }
254 send_gdb "jump *$start\n";
255 }
256 timeout {
257 perror "Jump to start() failed (timeout)";
258 return
259 }
c906108c 260 }
c906108c
SS
261 }
262 if [target_info exists gdb_stub] {
263 gdb_expect 60 {
264 -re "$gdb_prompt $" {
265 send_gdb "continue\n"
266 }
267 }
268 }
269 return
270 }
83f66e8f
DJ
271
272 if [target_info exists gdb,do_reload_on_run] {
b741e217 273 if { [gdb_reload] != 0 } {
83f66e8f
DJ
274 return;
275 }
276 }
c906108c
SS
277 send_gdb "run $args\n"
278# This doesn't work quite right yet.
279 gdb_expect 60 {
280 -re "The program .* has been started already.*y or n. $" {
281 send_gdb "y\n"
282 exp_continue
283 }
bbb88ebf
UW
284 # Use -notransfer here so that test cases (like chng-sym.exp)
285 # may test for additional start-up messages.
286 -notransfer -re "Starting program: \[^\r\n\]*" {}
c906108c
SS
287 }
288}
289
b741e217
DJ
290# Generic start command. Return 0 if we could start the program, -1
291# if we could not.
292
293proc gdb_start_cmd {args} {
294 global gdb_prompt
295
296 if [target_info exists gdb_init_command] {
297 send_gdb "[target_info gdb_init_command]\n";
298 gdb_expect 30 {
299 -re "$gdb_prompt $" { }
300 default {
301 perror "gdb_init_command for target failed";
302 return;
303 }
304 }
305 }
306
307 if [target_info exists use_gdb_stub] {
308 return -1
309 }
310
311 send_gdb "start $args\n"
312 gdb_expect 60 {
313 -re "The program .* has been started already.*y or n. $" {
314 send_gdb "y\n"
315 exp_continue
316 }
317 # Use -notransfer here so that test cases (like chng-sym.exp)
318 # may test for additional start-up messages.
319 -notransfer -re "Starting program: \[^\r\n\]*" {
320 return 0
321 }
322 }
323 return -1
324}
325
78a1a894
DJ
326# Set a breakpoint at FUNCTION. If there is an additional argument it is
327# a list of options; the only currently supported option is allow-pending.
328
329proc gdb_breakpoint { function args } {
c906108c
SS
330 global gdb_prompt
331 global decimal
332
78a1a894
DJ
333 set pending_response n
334 if {[lsearch -exact [lindex $args 0] allow-pending] != -1} {
335 set pending_response y
336 }
337
c906108c
SS
338 send_gdb "break $function\n"
339 # The first two regexps are what we get with -g, the third is without -g.
340 gdb_expect 30 {
341 -re "Breakpoint \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
342 -re "Breakpoint \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
343 -re "Breakpoint \[0-9\]* at .*$gdb_prompt $" {}
78a1a894
DJ
344 -re "Breakpoint \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
345 if {$pending_response == "n"} {
346 fail "setting breakpoint at $function"
347 return 0
348 }
349 }
9f27c604 350 -re "Make breakpoint pending.*y or \\\[n\\\]. $" {
78a1a894 351 send_gdb "$pending_response\n"
14b1a056 352 exp_continue
18fe2033 353 }
c906108c
SS
354 -re "$gdb_prompt $" { fail "setting breakpoint at $function" ; return 0 }
355 timeout { fail "setting breakpoint at $function (timeout)" ; return 0 }
356 }
357 return 1;
358}
359
360# Set breakpoint at function and run gdb until it breaks there.
361# Since this is the only breakpoint that will be set, if it stops
362# at a breakpoint, we will assume it is the one we want. We can't
363# just compare to "function" because it might be a fully qualified,
78a1a894
DJ
364# single quoted C++ function specifier. If there's an additional argument,
365# pass it to gdb_breakpoint.
c906108c 366
78a1a894 367proc runto { function args } {
c906108c
SS
368 global gdb_prompt
369 global decimal
370
371 delete_breakpoints
372
78a1a894 373 if ![gdb_breakpoint $function [lindex $args 0]] {
c906108c
SS
374 return 0;
375 }
376
377 gdb_run_cmd
378
379 # the "at foo.c:36" output we get with -g.
380 # the "in func" output we get without -g.
381 gdb_expect 30 {
382 -re "Break.* at .*:$decimal.*$gdb_prompt $" {
383 return 1
384 }
385 -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
386 return 1
387 }
388 -re "$gdb_prompt $" {
389 fail "running to $function in runto"
390 return 0
391 }
392 timeout {
393 fail "running to $function in runto (timeout)"
394 return 0
395 }
396 }
397 return 1
398}
399
400#
401# runto_main -- ask gdb to run until we hit a breakpoint at main.
402# The case where the target uses stubs has to be handled
403# specially--if it uses stubs, assuming we hit
404# breakpoint() and just step out of the function.
405#
406proc runto_main { } {
407 global gdb_prompt
408 global decimal
409
410 if ![target_info exists gdb_stub] {
411 return [runto main]
412 }
413
414 delete_breakpoints
415
416 gdb_step_for_stub;
417
418 return 1
419}
420
7a292a7a 421
4ce44c66
JM
422### Continue, and expect to hit a breakpoint.
423### Report a pass or fail, depending on whether it seems to have
424### worked. Use NAME as part of the test name; each call to
425### continue_to_breakpoint should use a NAME which is unique within
426### that test file.
427proc gdb_continue_to_breakpoint {name} {
428 global gdb_prompt
429 set full_name "continue to breakpoint: $name"
430
431 send_gdb "continue\n"
432 gdb_expect {
433 -re "Breakpoint .* at .*\r\n$gdb_prompt $" {
434 pass $full_name
435 }
436 -re ".*$gdb_prompt $" {
437 fail $full_name
438 }
439 timeout {
440 fail "$full_name (timeout)"
441 }
442 }
443}
444
445
039cf96d
AC
446# gdb_internal_error_resync:
447#
448# Answer the questions GDB asks after it reports an internal error
449# until we get back to a GDB prompt. Decline to quit the debugging
450# session, and decline to create a core file. Return non-zero if the
451# resync succeeds.
452#
453# This procedure just answers whatever questions come up until it sees
454# a GDB prompt; it doesn't require you to have matched the input up to
455# any specific point. However, it only answers questions it sees in
456# the output itself, so if you've matched a question, you had better
457# answer it yourself before calling this.
458#
459# You can use this function thus:
460#
461# gdb_expect {
462# ...
463# -re ".*A problem internal to GDB has been detected" {
464# gdb_internal_error_resync
465# }
466# ...
467# }
468#
469proc gdb_internal_error_resync {} {
470 global gdb_prompt
471
472 set count 0
473 while {$count < 10} {
474 gdb_expect {
475 -re "Quit this debugging session\\? \\(y or n\\) $" {
476 send_gdb "n\n"
477 incr count
478 }
479 -re "Create a core file of GDB\\? \\(y or n\\) $" {
480 send_gdb "n\n"
481 incr count
482 }
483 -re "$gdb_prompt $" {
484 # We're resynchronized.
485 return 1
486 }
487 timeout {
488 perror "Could not resync from internal error (timeout)"
489 return 0
490 }
491 }
492 }
2b211c59
AC
493 perror "Could not resync from internal error (resync count exceeded)"
494 return 0
039cf96d
AC
495}
496
4ce44c66 497
2307bd6a 498# gdb_test_multiple COMMAND MESSAGE EXPECT_ARGUMENTS
8dbfb380 499# Send a command to gdb; test the result.
c906108c
SS
500#
501# COMMAND is the command to execute, send to GDB with send_gdb. If
502# this is the null string no command is sent.
2307bd6a
DJ
503# MESSAGE is a message to be printed with the built-in failure patterns
504# if one of them matches. If MESSAGE is empty COMMAND will be used.
505# EXPECT_ARGUMENTS will be fed to expect in addition to the standard
506# patterns. Pattern elements will be evaluated in the caller's
507# context; action elements will be executed in the caller's context.
508# Unlike patterns for gdb_test, these patterns should generally include
509# the final newline and prompt.
c906108c
SS
510#
511# Returns:
2307bd6a
DJ
512# 1 if the test failed, according to a built-in failure pattern
513# 0 if only user-supplied patterns matched
c906108c
SS
514# -1 if there was an internal error.
515#
d422fe19
AC
516# You can use this function thus:
517#
518# gdb_test_multiple "print foo" "test foo" {
519# -re "expected output 1" {
520# pass "print foo"
521# }
522# -re "expected output 2" {
523# fail "print foo"
524# }
525# }
526#
527# The standard patterns, such as "Program exited..." and "A problem
528# ...", all being implicitly appended to that list.
529#
2307bd6a 530proc gdb_test_multiple { command message user_code } {
c906108c
SS
531 global verbose
532 global gdb_prompt
533 global GDB
534 upvar timeout timeout
c47cebdb 535 upvar expect_out expect_out
c906108c 536
2307bd6a
DJ
537 if { $message == "" } {
538 set message $command
c906108c 539 }
c906108c 540
2307bd6a
DJ
541 # TCL/EXPECT WART ALERT
542 # Expect does something very strange when it receives a single braced
543 # argument. It splits it along word separators and performs substitutions.
544 # This means that { "[ab]" } is evaluated as "[ab]", but { "\[ab\]" } is
545 # evaluated as "\[ab\]". But that's not how TCL normally works; inside a
546 # double-quoted list item, "\[ab\]" is just a long way of representing
547 # "[ab]", because the backslashes will be removed by lindex.
548
549 # Unfortunately, there appears to be no easy way to duplicate the splitting
550 # that expect will do from within TCL. And many places make use of the
551 # "\[0-9\]" construct, so we need to support that; and some places make use
552 # of the "[func]" construct, so we need to support that too. In order to
553 # get this right we have to substitute quoted list elements differently
554 # from braced list elements.
555
556 # We do this roughly the same way that Expect does it. We have to use two
557 # lists, because if we leave unquoted newlines in the argument to uplevel
558 # they'll be treated as command separators, and if we escape newlines
559 # we mangle newlines inside of command blocks. This assumes that the
560 # input doesn't contain a pattern which contains actual embedded newlines
561 # at this point!
562
563 regsub -all {\n} ${user_code} { } subst_code
564 set subst_code [uplevel list $subst_code]
565
566 set processed_code ""
567 set patterns ""
568 set expecting_action 0
569 foreach item $user_code subst_item $subst_code {
570 if { $item == "-n" || $item == "-notransfer" || $item == "-nocase" } {
571 lappend processed_code $item
572 continue
573 }
574 if {$item == "-indices" || $item == "-re" || $item == "-ex"} {
575 lappend processed_code $item
576 continue
577 }
578 if { $expecting_action } {
579 lappend processed_code "uplevel [list $item]"
580 set expecting_action 0
581 # Cosmetic, no effect on the list.
582 append processed_code "\n"
583 continue
584 }
585 set expecting_action 1
586 lappend processed_code $subst_item
587 if {$patterns != ""} {
588 append patterns "; "
589 }
590 append patterns "\"$subst_item\""
c906108c
SS
591 }
592
2307bd6a
DJ
593 # Also purely cosmetic.
594 regsub -all {\r} $patterns {\\r} patterns
595 regsub -all {\n} $patterns {\\n} patterns
596
c906108c
SS
597 if $verbose>2 then {
598 send_user "Sending \"$command\" to gdb\n"
2307bd6a 599 send_user "Looking to match \"$patterns\"\n"
c906108c
SS
600 send_user "Message is \"$message\"\n"
601 }
602
603 set result -1
604 set string "${command}\n";
605 if { $command != "" } {
606 while { "$string" != "" } {
607 set foo [string first "\n" "$string"];
608 set len [string length "$string"];
609 if { $foo < [expr $len - 1] } {
610 set str [string range "$string" 0 $foo];
611 if { [send_gdb "$str"] != "" } {
612 global suppress_flag;
613
614 if { ! $suppress_flag } {
615 perror "Couldn't send $command to GDB.";
616 }
617 fail "$message";
618 return $result;
619 }
a0b3c4fd
JM
620 # since we're checking if each line of the multi-line
621 # command are 'accepted' by GDB here,
622 # we need to set -notransfer expect option so that
623 # command output is not lost for pattern matching
624 # - guo
5f279fa6
DJ
625 gdb_expect 2 {
626 -notransfer -re "\[\r\n\]" { verbose "partial: match" 3 }
627 timeout { verbose "partial: timeout" 3 }
c906108c
SS
628 }
629 set string [string range "$string" [expr $foo + 1] end];
630 } else {
631 break;
632 }
633 }
634 if { "$string" != "" } {
635 if { [send_gdb "$string"] != "" } {
636 global suppress_flag;
637
638 if { ! $suppress_flag } {
639 perror "Couldn't send $command to GDB.";
640 }
641 fail "$message";
642 return $result;
643 }
644 }
645 }
646
9d2e1bab
ND
647 if [target_info exists gdb,timeout] {
648 set tmt [target_info gdb,timeout];
c906108c 649 } else {
c906108c
SS
650 if [info exists timeout] {
651 set tmt $timeout;
652 } else {
9d2e1bab
ND
653 global timeout;
654 if [info exists timeout] {
655 set tmt $timeout;
656 } else {
657 set tmt 60;
658 }
c906108c
SS
659 }
660 }
2307bd6a
DJ
661
662 set code {
039cf96d
AC
663 -re ".*A problem internal to GDB has been detected" {
664 fail "$message (GDB internal error)"
665 gdb_internal_error_resync
666 }
c906108c
SS
667 -re "\\*\\*\\* DOSEXIT code.*" {
668 if { $message != "" } {
669 fail "$message";
670 }
671 gdb_suppress_entire_file "GDB died";
2307bd6a 672 set result -1;
c906108c 673 }
9e0b60a8 674 -re "Ending remote debugging.*$gdb_prompt $" {
c906108c
SS
675 if ![isnative] then {
676 warning "Can`t communicate to remote target."
677 }
678 gdb_exit
679 gdb_start
680 set result -1
681 }
2307bd6a
DJ
682 }
683 append code $processed_code
684 append code {
9e0b60a8 685 -re "Undefined\[a-z\]* command:.*$gdb_prompt $" {
c906108c 686 perror "Undefined command \"$command\"."
9e0b60a8 687 fail "$message"
c906108c
SS
688 set result 1
689 }
690 -re "Ambiguous command.*$gdb_prompt $" {
691 perror "\"$command\" is not a unique command name."
9e0b60a8 692 fail "$message"
c906108c
SS
693 set result 1
694 }
695 -re "Program exited with code \[0-9\]+.*$gdb_prompt $" {
696 if ![string match "" $message] then {
ed4c619a 697 set errmsg "$message (the program exited)"
c906108c 698 } else {
ed4c619a 699 set errmsg "$command (the program exited)"
c906108c
SS
700 }
701 fail "$errmsg"
2307bd6a 702 set result -1
cb9a9d3e
MS
703 }
704 -re "EXIT code \[0-9\r\n\]+Program exited normally.*$gdb_prompt $" {
705 if ![string match "" $message] then {
ed4c619a 706 set errmsg "$message (the program exited)"
cb9a9d3e 707 } else {
ed4c619a 708 set errmsg "$command (the program exited)"
cb9a9d3e
MS
709 }
710 fail "$errmsg"
2307bd6a 711 set result -1
c906108c
SS
712 }
713 -re "The program is not being run.*$gdb_prompt $" {
714 if ![string match "" $message] then {
ed4c619a 715 set errmsg "$message (the program is no longer running)"
c906108c 716 } else {
ed4c619a 717 set errmsg "$command (the program is no longer running)"
c906108c
SS
718 }
719 fail "$errmsg"
2307bd6a 720 set result -1
c906108c 721 }
734b8fe8 722 -re "\r\n$gdb_prompt $" {
c906108c
SS
723 if ![string match "" $message] then {
724 fail "$message"
725 }
726 set result 1
727 }
728 "<return>" {
729 send_gdb "\n"
730 perror "Window too small."
9e0b60a8 731 fail "$message"
2307bd6a 732 set result -1
c906108c
SS
733 }
734 -re "\\(y or n\\) " {
735 send_gdb "n\n"
736 perror "Got interactive prompt."
9e0b60a8 737 fail "$message"
2307bd6a 738 set result -1
c906108c
SS
739 }
740 eof {
741 perror "Process no longer exists"
742 if { $message != "" } {
743 fail "$message"
744 }
745 return -1
746 }
747 full_buffer {
748 perror "internal buffer is full."
9e0b60a8 749 fail "$message"
2307bd6a 750 set result -1
c906108c
SS
751 }
752 timeout {
753 if ![string match "" $message] then {
754 fail "$message (timeout)"
755 }
756 set result 1
757 }
758 }
2307bd6a
DJ
759
760 set result 0
04f6ecf2
DJ
761 set code [catch {gdb_expect $tmt $code} string]
762 if {$code == 1} {
763 global errorInfo errorCode;
764 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
765 } elseif {$code == 2} {
766 return -code return $string
767 } elseif {$code == 3} {
768 return
769 } elseif {$code > 4} {
770 return -code $code $string
771 }
c906108c
SS
772 return $result
773}
2307bd6a
DJ
774
775# gdb_test COMMAND PATTERN MESSAGE QUESTION RESPONSE
776# Send a command to gdb; test the result.
777#
778# COMMAND is the command to execute, send to GDB with send_gdb. If
779# this is the null string no command is sent.
780# PATTERN is the pattern to match for a PASS, and must NOT include
781# the \r\n sequence immediately before the gdb prompt.
782# MESSAGE is an optional message to be printed. If this is
783# omitted, then the pass/fail messages use the command string as the
784# message. (If this is the empty string, then sometimes we don't
785# call pass or fail at all; I don't understand this at all.)
786# QUESTION is a question GDB may ask in response to COMMAND, like
787# "are you sure?"
788# RESPONSE is the response to send if QUESTION appears.
789#
790# Returns:
791# 1 if the test failed,
792# 0 if the test passes,
793# -1 if there was an internal error.
794#
795proc gdb_test { args } {
796 global verbose
797 global gdb_prompt
798 global GDB
799 upvar timeout timeout
800
801 if [llength $args]>2 then {
802 set message [lindex $args 2]
803 } else {
804 set message [lindex $args 0]
805 }
806 set command [lindex $args 0]
807 set pattern [lindex $args 1]
808
809 if [llength $args]==5 {
810 set question_string [lindex $args 3];
811 set response_string [lindex $args 4];
812 } else {
813 set question_string "^FOOBAR$"
814 }
815
816 return [gdb_test_multiple $command $message {
817 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
818 if ![string match "" $message] then {
819 pass "$message"
820 }
821 }
822 -re "(${question_string})$" {
823 send_gdb "$response_string\n";
824 exp_continue;
825 }
826 }]
827}
c906108c
SS
828\f
829# Test that a command gives an error. For pass or fail, return
830# a 1 to indicate that more tests can proceed. However a timeout
831# is a serious error, generates a special fail message, and causes
832# a 0 to be returned to indicate that more tests are likely to fail
833# as well.
834
835proc test_print_reject { args } {
836 global gdb_prompt
837 global verbose
838
839 if [llength $args]==2 then {
840 set expectthis [lindex $args 1]
841 } else {
842 set expectthis "should never match this bogus string"
843 }
844 set sendthis [lindex $args 0]
845 if $verbose>2 then {
846 send_user "Sending \"$sendthis\" to gdb\n"
847 send_user "Looking to match \"$expectthis\"\n"
848 }
849 send_gdb "$sendthis\n"
850 #FIXME: Should add timeout as parameter.
851 gdb_expect {
852 -re "A .* in expression.*\\.*$gdb_prompt $" {
853 pass "reject $sendthis"
854 return 1
855 }
856 -re "Invalid syntax in expression.*$gdb_prompt $" {
857 pass "reject $sendthis"
858 return 1
859 }
860 -re "Junk after end of expression.*$gdb_prompt $" {
861 pass "reject $sendthis"
862 return 1
863 }
864 -re "Invalid number.*$gdb_prompt $" {
865 pass "reject $sendthis"
866 return 1
867 }
868 -re "Invalid character constant.*$gdb_prompt $" {
869 pass "reject $sendthis"
870 return 1
871 }
872 -re "No symbol table is loaded.*$gdb_prompt $" {
873 pass "reject $sendthis"
874 return 1
875 }
876 -re "No symbol .* in current context.*$gdb_prompt $" {
877 pass "reject $sendthis"
878 return 1
879 }
c4b7bc2b
JB
880 -re "Unmatched single quote.*$gdb_prompt $" {
881 pass "reject $sendthis"
882 return 1
883 }
884 -re "A character constant must contain at least one character.*$gdb_prompt $" {
885 pass "reject $sendthis"
886 return 1
887 }
c906108c
SS
888 -re "$expectthis.*$gdb_prompt $" {
889 pass "reject $sendthis"
890 return 1
891 }
892 -re ".*$gdb_prompt $" {
893 fail "reject $sendthis"
894 return 1
895 }
896 default {
897 fail "reject $sendthis (eof or timeout)"
898 return 0
899 }
900 }
901}
902\f
903# Given an input string, adds backslashes as needed to create a
904# regexp that will match the string.
905
906proc string_to_regexp {str} {
907 set result $str
39fb8e9e 908 regsub -all {[]*+.|()^$\[\\]} $str {\\&} result
c906108c
SS
909 return $result
910}
911
912# Same as gdb_test, but the second parameter is not a regexp,
913# but a string that must match exactly.
914
915proc gdb_test_exact { args } {
916 upvar timeout timeout
917
918 set command [lindex $args 0]
919
920 # This applies a special meaning to a null string pattern. Without
921 # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
922 # messages from commands that should have no output except a new
923 # prompt. With this, only results of a null string will match a null
924 # string pattern.
925
926 set pattern [lindex $args 1]
927 if [string match $pattern ""] {
928 set pattern [string_to_regexp [lindex $args 0]]
929 } else {
930 set pattern [string_to_regexp [lindex $args 1]]
931 }
932
933 # It is most natural to write the pattern argument with only
934 # embedded \n's, especially if you are trying to avoid Tcl quoting
935 # problems. But gdb_expect really wants to see \r\n in patterns. So
936 # transform the pattern here. First transform \r\n back to \n, in
937 # case some users of gdb_test_exact already do the right thing.
938 regsub -all "\r\n" $pattern "\n" pattern
939 regsub -all "\n" $pattern "\r\n" pattern
940 if [llength $args]==3 then {
941 set message [lindex $args 2]
942 } else {
943 set message $command
944 }
945
946 return [gdb_test $command $pattern $message]
947}
948\f
949proc gdb_reinitialize_dir { subdir } {
950 global gdb_prompt
951
952 if [is_remote host] {
953 return "";
954 }
955 send_gdb "dir\n"
956 gdb_expect 60 {
957 -re "Reinitialize source path to empty.*y or n. " {
958 send_gdb "y\n"
959 gdb_expect 60 {
960 -re "Source directories searched.*$gdb_prompt $" {
961 send_gdb "dir $subdir\n"
962 gdb_expect 60 {
963 -re "Source directories searched.*$gdb_prompt $" {
964 verbose "Dir set to $subdir"
965 }
966 -re "$gdb_prompt $" {
967 perror "Dir \"$subdir\" failed."
968 }
969 }
970 }
971 -re "$gdb_prompt $" {
972 perror "Dir \"$subdir\" failed."
973 }
974 }
975 }
976 -re "$gdb_prompt $" {
977 perror "Dir \"$subdir\" failed."
978 }
979 }
980}
981
982#
983# gdb_exit -- exit the GDB, killing the target program if necessary
984#
985proc default_gdb_exit {} {
986 global GDB
987 global GDBFLAGS
988 global verbose
989 global gdb_spawn_id;
990
991 gdb_stop_suppressing_tests;
992
993 if ![info exists gdb_spawn_id] {
994 return;
995 }
996
997 verbose "Quitting $GDB $GDBFLAGS"
998
999 if { [is_remote host] && [board_info host exists fileid] } {
1000 send_gdb "quit\n";
1001 gdb_expect 10 {
1002 -re "y or n" {
1003 send_gdb "y\n";
1004 exp_continue;
1005 }
1006 -re "DOSEXIT code" { }
1007 default { }
1008 }
1009 }
1010
1011 if ![is_remote host] {
1012 remote_close host;
1013 }
1014 unset gdb_spawn_id
1015}
1016
3e3ffd2b 1017# Load a file into the debugger.
2db8e78e 1018# The return value is 0 for success, -1 for failure.
c906108c 1019#
2db8e78e
MC
1020# This procedure also set the global variable GDB_FILE_CMD_DEBUG_INFO
1021# to one of these values:
3e3ffd2b 1022#
2db8e78e
MC
1023# debug file was loaded successfully and has debug information
1024# nodebug file was loaded successfully and has no debug information
1025# fail file was not loaded
c906108c 1026#
2db8e78e
MC
1027# I tried returning this information as part of the return value,
1028# but ran into a mess because of the many re-implementations of
1029# gdb_load in config/*.exp.
3e3ffd2b 1030#
2db8e78e
MC
1031# TODO: gdb.base/sepdebug.exp and gdb.stabs/weird.exp might be able to use
1032# this if they can get more information set.
3e3ffd2b 1033
c906108c 1034proc gdb_file_cmd { arg } {
3e3ffd2b 1035 global gdb_prompt
c906108c 1036 global verbose
c906108c 1037 global GDB
b741e217
DJ
1038 global last_loaded_file
1039
1040 set last_loaded_file $arg
c906108c 1041
2db8e78e
MC
1042 # Set whether debug info was found.
1043 # Default to "fail".
1044 global gdb_file_cmd_debug_info
1045 set gdb_file_cmd_debug_info "fail"
1046
c906108c 1047 if [is_remote host] {
3e3ffd2b 1048 set arg [remote_download host $arg]
c906108c 1049 if { $arg == "" } {
2db8e78e
MC
1050 perror "download failed"
1051 return -1
c906108c
SS
1052 }
1053 }
1054
4c42eaff
DJ
1055 # The file command used to kill the remote target. For the benefit
1056 # of the testsuite, preserve this behavior.
1057 send_gdb "kill\n"
1058 gdb_expect 120 {
1059 -re "Kill the program being debugged. .y or n. $" {
1060 send_gdb "y\n"
1061 verbose "\t\tKilling previous program being debugged"
1062 exp_continue
1063 }
1064 -re "$gdb_prompt $" {
1065 # OK.
1066 }
1067 }
1068
c906108c
SS
1069 send_gdb "file $arg\n"
1070 gdb_expect 120 {
3e3ffd2b
MC
1071 -re "Reading symbols from.*no debugging symbols found.*done.*$gdb_prompt $" {
1072 verbose "\t\tLoaded $arg into the $GDB with no debugging symbols"
2db8e78e
MC
1073 set gdb_file_cmd_debug_info "nodebug"
1074 return 0
3e3ffd2b 1075 }
c906108c
SS
1076 -re "Reading symbols from.*done.*$gdb_prompt $" {
1077 verbose "\t\tLoaded $arg into the $GDB"
2db8e78e
MC
1078 set gdb_file_cmd_debug_info "debug"
1079 return 0
c906108c 1080 }
c906108c
SS
1081 -re "Load new symbol table from \".*\".*y or n. $" {
1082 send_gdb "y\n"
1083 gdb_expect 120 {
1084 -re "Reading symbols from.*done.*$gdb_prompt $" {
1085 verbose "\t\tLoaded $arg with new symbol table into $GDB"
2db8e78e
MC
1086 set gdb_file_cmd_debug_info "debug"
1087 return 0
c906108c
SS
1088 }
1089 timeout {
2db8e78e
MC
1090 perror "(timeout) Couldn't load $arg, other program already loaded."
1091 return -1
c906108c
SS
1092 }
1093 }
1094 }
1095 -re "No such file or directory.*$gdb_prompt $" {
2db8e78e
MC
1096 perror "($arg) No such file or directory"
1097 return -1
c906108c
SS
1098 }
1099 -re "$gdb_prompt $" {
2db8e78e
MC
1100 perror "couldn't load $arg into $GDB."
1101 return -1
c906108c
SS
1102 }
1103 timeout {
2db8e78e
MC
1104 perror "couldn't load $arg into $GDB (timed out)."
1105 return -1
c906108c
SS
1106 }
1107 eof {
1108 # This is an attempt to detect a core dump, but seems not to
1109 # work. Perhaps we need to match .* followed by eof, in which
1110 # gdb_expect does not seem to have a way to do that.
2db8e78e
MC
1111 perror "couldn't load $arg into $GDB (end of file)."
1112 return -1
c906108c
SS
1113 }
1114 }
1115}
1116
1117#
1118# start gdb -- start gdb running, default procedure
1119#
1120# When running over NFS, particularly if running many simultaneous
1121# tests on different hosts all using the same server, things can
1122# get really slow. Give gdb at least 3 minutes to start up.
1123#
1124proc default_gdb_start { } {
1125 global verbose
1126 global GDB
1127 global GDBFLAGS
1128 global gdb_prompt
1129 global timeout
1130 global gdb_spawn_id;
1131
1132 gdb_stop_suppressing_tests;
1133
1134 verbose "Spawning $GDB -nw $GDBFLAGS"
1135
1136 if [info exists gdb_spawn_id] {
1137 return 0;
1138 }
1139
1140 if ![is_remote host] {
1141 if { [which $GDB] == 0 } then {
1142 perror "$GDB does not exist."
1143 exit 1
1144 }
1145 }
1146 set res [remote_spawn host "$GDB -nw $GDBFLAGS [host_info gdb_opts]"];
1147 if { $res < 0 || $res == "" } {
1148 perror "Spawning $GDB failed."
1149 return 1;
1150 }
1151 gdb_expect 360 {
1152 -re "\[\r\n\]$gdb_prompt $" {
1153 verbose "GDB initialized."
1154 }
1155 -re "$gdb_prompt $" {
1156 perror "GDB never initialized."
1157 return -1
1158 }
1159 timeout {
1160 perror "(timeout) GDB never initialized after 10 seconds."
1161 remote_close host;
1162 return -1
1163 }
1164 }
1165 set gdb_spawn_id -1;
1166 # force the height to "unlimited", so no pagers get used
1167
1168 send_gdb "set height 0\n"
1169 gdb_expect 10 {
1170 -re "$gdb_prompt $" {
1171 verbose "Setting height to 0." 2
1172 }
1173 timeout {
1174 warning "Couldn't set the height to 0"
1175 }
1176 }
1177 # force the width to "unlimited", so no wraparound occurs
1178 send_gdb "set width 0\n"
1179 gdb_expect 10 {
1180 -re "$gdb_prompt $" {
1181 verbose "Setting width to 0." 2
1182 }
1183 timeout {
1184 warning "Couldn't set the width to 0."
1185 }
1186 }
1187 return 0;
1188}
1189
d4f3574e
SS
1190# Return a 1 for configurations for which we don't even want to try to
1191# test C++.
1192
1193proc skip_cplus_tests {} {
d4f3574e
SS
1194 if { [istarget "h8300-*-*"] } {
1195 return 1
1196 }
81d2cbae 1197
1146c7f1
SC
1198 # The C++ IO streams are too large for HC11/HC12 and are thus not
1199 # available. The gdb C++ tests use them and don't compile.
1200 if { [istarget "m6811-*-*"] } {
1201 return 1
1202 }
1203 if { [istarget "m6812-*-*"] } {
1204 return 1
1205 }
d4f3574e
SS
1206 return 0
1207}
1208
89a237cb
MC
1209# Return a 1 if I don't even want to try to test FORTRAN.
1210
1211proc skip_fortran_tests {} {
1212 return 0
1213}
1214
3c95e6af
PG
1215# Run a test on the target to see if it supports vmx hardware. Return 0 if so,
1216# 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
1217
1218proc skip_altivec_tests {} {
1219 global skip_vmx_tests_saved
1220 global srcdir subdir gdb_prompt
1221
1222 # Use the cached value, if it exists.
1223 set me "skip_altivec_tests"
1224 if [info exists skip_vmx_tests_saved] {
1225 verbose "$me: returning saved $skip_vmx_tests_saved" 2
1226 return $skip_vmx_tests_saved
1227 }
1228
1229 # Some simulators are known to not support VMX instructions.
1230 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
1231 verbose "$me: target known to not support VMX, returning 1" 2
476308bf 1232 return [set skip_vmx_tests_saved 1]
3c95e6af
PG
1233 }
1234
1235 # Make sure we have a compiler that understands altivec.
fc91c6c2 1236 set compile_flags {debug nowarnings}
3c95e6af
PG
1237 if [get_compiler_info not-used] {
1238 warning "Could not get compiler info"
1239 return 1
1240 }
1241 if [test_compiler_info gcc*] {
1242 set compile_flags "$compile_flags additional_flags=-maltivec"
1243 } elseif [test_compiler_info xlc*] {
1244 set compile_flags "$compile_flags additional_flags=-qaltivec"
1245 } else {
1246 verbose "Could not compile with altivec support, returning 1" 2
1247 return 1
1248 }
1249
1250 # Set up, compile, and execute a test program containing VMX instructions.
1251 # Include the current process ID in the file names to prevent conflicts
1252 # with invocations for multiple testsuites.
1253 set src vmx[pid].c
1254 set exe vmx[pid].x
1255
1256 set f [open $src "w"]
1257 puts $f "int main() {"
1258 puts $f "#ifdef __MACH__"
1259 puts $f " asm volatile (\"vor v0,v0,v0\");"
1260 puts $f "#else"
1261 puts $f " asm volatile (\"vor 0,0,0\");"
1262 puts $f "#endif"
1263 puts $f " return 0; }"
1264 close $f
1265
1266 verbose "$me: compiling testfile $src" 2
1267 set lines [gdb_compile $src $exe executable $compile_flags]
1268 file delete $src
1269
1270 if ![string match "" $lines] then {
1271 verbose "$me: testfile compilation failed, returning 1" 2
1272 return [set skip_vmx_tests_saved 1]
1273 }
1274
1275 # No error message, compilation succeeded so now run it via gdb.
1276
1277 gdb_exit
1278 gdb_start
1279 gdb_reinitialize_dir $srcdir/$subdir
1280 gdb_load "$exe"
1281 gdb_run_cmd
1282 gdb_expect {
1283 -re ".*Illegal instruction.*${gdb_prompt} $" {
1284 verbose -log "\n$me altivec hardware not detected"
1285 set skip_vmx_tests_saved 1
1286 }
1287 -re ".*Program exited normally.*${gdb_prompt} $" {
1288 verbose -log "\n$me: altivec hardware detected"
1289 set skip_vmx_tests_saved 0
1290 }
1291 default {
1292 warning "\n$me: default case taken"
1293 set skip_vmx_tests_saved 1
1294 }
1295 }
1296 gdb_exit
1297 remote_file build delete $exe
1298
1299 verbose "$me: returning $skip_vmx_tests_saved" 2
1300 return $skip_vmx_tests_saved
1301}
1302
7a292a7a
SS
1303# Skip all the tests in the file if you are not on an hppa running
1304# hpux target.
1305
1306proc skip_hp_tests {} {
1307 eval set skip_hp [ expr ![isnative] || ![istarget "hppa*-*-hpux*"] ]
c906108c
SS
1308 verbose "Skip hp tests is $skip_hp"
1309 return $skip_hp
1310}
1311
94b8e876
MC
1312set compiler_info "unknown"
1313set gcc_compiled 0
1314set hp_cc_compiler 0
1315set hp_aCC_compiler 0
94b8e876
MC
1316
1317# Figure out what compiler I am using.
1318#
1319# BINFILE is a "compiler information" output file. This implementation
1320# does not use BINFILE.
1321#
1322# ARGS can be empty or "C++". If empty, "C" is assumed.
1323#
1324# There are several ways to do this, with various problems.
1325#
1326# [ gdb_compile -E $ifile -o $binfile.ci ]
1327# source $binfile.ci
1328#
1329# Single Unix Spec v3 says that "-E -o ..." together are not
1330# specified. And in fact, the native compiler on hp-ux 11 (among
1331# others) does not work with "-E -o ...". Most targets used to do
1332# this, and it mostly worked, because it works with gcc.
1333#
1334# [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
1335# source $binfile.ci
1336#
1337# This avoids the problem with -E and -o together. This almost works
1338# if the build machine is the same as the host machine, which is
1339# usually true of the targets which are not gcc. But this code does
1340# not figure which compiler to call, and it always ends up using the C
1341# compiler. Not good for setting hp_aCC_compiler. Targets
1342# hppa*-*-hpux* and mips*-*-irix* used to do this.
1343#
1344# [ gdb_compile -E $ifile > $binfile.ci ]
1345# source $binfile.ci
1346#
1347# dejagnu target_compile says that it supports output redirection,
1348# but the code is completely different from the normal path and I
1349# don't want to sweep the mines from that path. So I didn't even try
1350# this.
1351#
1352# set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
1353# eval $cppout
1354#
1355# I actually do this for all targets now. gdb_compile runs the right
1356# compiler, and TCL captures the output, and I eval the output.
1357#
1358# Unfortunately, expect logs the output of the command as it goes by,
1359# and dejagnu helpfully prints a second copy of it right afterwards.
1360# So I turn off expect logging for a moment.
1361#
1362# [ gdb_compile $ifile $ciexe_file executable $args ]
1363# [ remote_exec $ciexe_file ]
1364# [ source $ci_file.out ]
1365#
1366# I could give up on -E and just do this.
1367# I didn't get desperate enough to try this.
1368#
1369# -- chastain 2004-01-06
853d6e5b 1370
c906108c 1371proc get_compiler_info {binfile args} {
94b8e876 1372 # For compiler.c and compiler.cc
c906108c 1373 global srcdir
94b8e876
MC
1374
1375 # I am going to play with the log to keep noise out.
1376 global outdir
1377 global tool
1378
1379 # These come from compiler.c or compiler.cc
853d6e5b 1380 global compiler_info
4f70a4c9
MC
1381
1382 # Legacy global data symbols.
94b8e876
MC
1383 global gcc_compiled
1384 global hp_cc_compiler
1385 global hp_aCC_compiler
c906108c 1386
94b8e876
MC
1387 # Choose which file to preprocess.
1388 set ifile "${srcdir}/lib/compiler.c"
1389 if { [llength $args] > 0 && [lindex $args 0] == "c++" } {
1390 set ifile "${srcdir}/lib/compiler.cc"
c906108c 1391 }
085dd6e6 1392
94b8e876
MC
1393 # Run $ifile through the right preprocessor.
1394 # Toggle gdb.log to keep the compiler output out of the log.
1395 log_file
1396 set cppout [ gdb_compile "${ifile}" "" preprocess [list "$args" quiet] ]
1397 log_file -a "$outdir/$tool.log"
1398
4f70a4c9
MC
1399 # Eval the output.
1400 set unknown 0
94b8e876 1401 foreach cppline [ split "$cppout" "\n" ] {
4f70a4c9
MC
1402 if { [ regexp "^#" "$cppline" ] } {
1403 # line marker
1404 } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
1405 # blank line
1406 } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
1407 # eval this line
1408 verbose "get_compiler_info: $cppline" 2
1409 eval "$cppline"
1410 } else {
1411 # unknown line
1412 verbose -log "get_compiler_info: $cppline"
1413 set unknown 1
94b8e876 1414 }
085dd6e6 1415 }
4f70a4c9
MC
1416
1417 # Reset to unknown compiler if any diagnostics happened.
1418 if { $unknown } {
1419 set compiler_info "unknown"
4f70a4c9
MC
1420 }
1421
1422 # Set the legacy symbols.
1423 set gcc_compiled 0
1424 set hp_cc_compiler 0
1425 set hp_aCC_compiler 0
1426 if { [regexp "^gcc-1-" "$compiler_info" ] } { set gcc_compiled 1 }
1427 if { [regexp "^gcc-2-" "$compiler_info" ] } { set gcc_compiled 2 }
1428 if { [regexp "^gcc-3-" "$compiler_info" ] } { set gcc_compiled 3 }
1429 if { [regexp "^gcc-4-" "$compiler_info" ] } { set gcc_compiled 4 }
1430 if { [regexp "^gcc-5-" "$compiler_info" ] } { set gcc_compiled 5 }
1431 if { [regexp "^hpcc-" "$compiler_info" ] } { set hp_cc_compiler 1 }
1432 if { [regexp "^hpacc-" "$compiler_info" ] } { set hp_aCC_compiler 1 }
1433
1434 # Log what happened.
94b8e876 1435 verbose -log "get_compiler_info: $compiler_info"
085dd6e6
JM
1436
1437 # Most compilers will evaluate comparisons and other boolean
1438 # operations to 0 or 1.
1439 uplevel \#0 { set true 1 }
1440 uplevel \#0 { set false 0 }
1441
94b8e876
MC
1442 # Use of aCC results in boolean results being displayed as
1443 # "true" or "false"
1444 if { $hp_aCC_compiler } {
1445 uplevel \#0 { set true true }
1446 uplevel \#0 { set false false }
085dd6e6
JM
1447 }
1448
c906108c
SS
1449 return 0;
1450}
1451
9b593790 1452proc test_compiler_info { {compiler ""} } {
853d6e5b 1453 global compiler_info
6e87504d
PG
1454
1455 # if no arg, return the compiler_info string
1456
1457 if [string match "" $compiler] {
1458 if [info exists compiler_info] {
1459 return $compiler_info
1460 } else {
1461 perror "No compiler info found."
1462 }
1463 }
1464
853d6e5b
AC
1465 return [string match $compiler $compiler_info]
1466}
1467
f1c47eb2
MS
1468set gdb_wrapper_initialized 0
1469
1470proc gdb_wrapper_init { args } {
1471 global gdb_wrapper_initialized;
1472 global gdb_wrapper_file;
1473 global gdb_wrapper_flags;
1474
1475 if { $gdb_wrapper_initialized == 1 } { return; }
1476
1477 if {[target_info exists needs_status_wrapper] && \
277254ba 1478 [target_info needs_status_wrapper] != "0"} {
f1c47eb2
MS
1479 set result [build_wrapper "testglue.o"];
1480 if { $result != "" } {
1481 set gdb_wrapper_file [lindex $result 0];
1482 set gdb_wrapper_flags [lindex $result 1];
1483 } else {
1484 warning "Status wrapper failed to build."
1485 }
1486 }
1487 set gdb_wrapper_initialized 1
1488}
1489
c906108c
SS
1490proc gdb_compile {source dest type options} {
1491 global GDB_TESTCASE_OPTIONS;
f1c47eb2
MS
1492 global gdb_wrapper_file;
1493 global gdb_wrapper_flags;
1494 global gdb_wrapper_initialized;
c906108c 1495
57bf0e56
DJ
1496 # Add platform-specific options if a shared library was specified using
1497 # "shlib=librarypath" in OPTIONS.
1498 set new_options ""
1499 set shlib_found 0
1500 foreach opt $options {
1501 if [regexp {^shlib=(.*)} $opt dummy_var shlib_name] {
1502 if [test_compiler_info "xlc-*"] {
1503 # IBM xlc compiler doesn't accept shared library named other
1504 # than .so: use "-Wl," to bypass this
1505 lappend source "-Wl,$shlib_name"
1506 } else {
1507 lappend source $shlib_name
1508 }
1509 if {$shlib_found == 0} {
1510 set shlib_found 1
1511 if { ([test_compiler_info "gcc-*"]
1512 && ([istarget "powerpc*-*-aix*"]
1513 || [istarget "rs6000*-*-aix*"] )) } {
1514 lappend options "additional_flags=-L${objdir}/${subdir}"
1515 } elseif { [istarget "mips-sgi-irix*"] } {
1516 lappend options "additional_flags=-rpath ${objdir}/${subdir}"
1517 }
1518 }
1519 } else {
1520 lappend new_options $opt
1521 }
1522 }
1523 set options $new_options
1524
c906108c
SS
1525 if [target_info exists gdb_stub] {
1526 set options2 { "additional_flags=-Dusestubs" }
1527 lappend options "libs=[target_info gdb_stub]";
1528 set options [concat $options2 $options]
1529 }
1530 if [target_info exists is_vxworks] {
1531 set options2 { "additional_flags=-Dvxworks" }
1532 lappend options "libs=[target_info gdb_stub]";
1533 set options [concat $options2 $options]
1534 }
1535 if [info exists GDB_TESTCASE_OPTIONS] {
1536 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS";
1537 }
1538 verbose "options are $options"
1539 verbose "source is $source $dest $type $options"
1540
f1c47eb2
MS
1541 if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
1542
1543 if {[target_info exists needs_status_wrapper] && \
1544 [target_info needs_status_wrapper] != "0" && \
1545 [info exists gdb_wrapper_file]} {
1546 lappend options "libs=${gdb_wrapper_file}"
1547 lappend options "ldflags=${gdb_wrapper_flags}"
1548 }
1549
fc91c6c2
PB
1550 # Replace the "nowarnings" option with the appropriate additional_flags
1551 # to disable compiler warnings.
1552 set nowarnings [lsearch -exact $options nowarnings]
1553 if {$nowarnings != -1} {
1554 if [target_info exists gdb,nowarnings_flag] {
1555 set flag "additional_flags=[target_info gdb,nowarnings_flag]"
1556 } else {
1557 set flag "additional_flags=-w"
1558 }
1559 set options [lreplace $options $nowarnings $nowarnings $flag]
1560 }
1561
c906108c
SS
1562 set result [target_compile $source $dest $type $options];
1563 regsub "\[\r\n\]*$" "$result" "" result;
1564 regsub "^\[\r\n\]*" "$result" "" result;
81d2cbae
NS
1565 if { $result != "" && [lsearch $options quiet] == -1} {
1566 clone_output "gdb compile failed, $result"
c906108c
SS
1567 }
1568 return $result;
1569}
1570
b6ff0e81
JB
1571
1572# This is just like gdb_compile, above, except that it tries compiling
1573# against several different thread libraries, to see which one this
1574# system has.
1575proc gdb_compile_pthreads {source dest type options} {
0ae67eb3 1576 set built_binfile 0
b6ff0e81
JB
1577 set why_msg "unrecognized error"
1578 foreach lib {-lpthreads -lpthread -lthread} {
1579 # This kind of wipes out whatever libs the caller may have
1580 # set. Or maybe theirs will override ours. How infelicitous.
b5ab8ff3 1581 set options_with_lib [concat $options [list libs=$lib quiet]]
b6ff0e81
JB
1582 set ccout [gdb_compile $source $dest $type $options_with_lib]
1583 switch -regexp -- $ccout {
1584 ".*no posix threads support.*" {
1585 set why_msg "missing threads include file"
1586 break
1587 }
1588 ".*cannot open -lpthread.*" {
1589 set why_msg "missing runtime threads library"
1590 }
1591 ".*Can't find library for -lpthread.*" {
1592 set why_msg "missing runtime threads library"
1593 }
1594 {^$} {
1595 pass "successfully compiled posix threads test case"
1596 set built_binfile 1
1597 break
1598 }
1599 }
1600 }
0ae67eb3 1601 if {!$built_binfile} {
b6ff0e81
JB
1602 unsupported "Couldn't compile $source: ${why_msg}"
1603 return -1
1604 }
57bf0e56
DJ
1605}
1606
1607# Build a shared library from SOURCES. You must use get_compiler_info
1608# first.
1609
1610proc gdb_compile_shlib {sources dest options} {
1611 set obj_options $options
1612
1613 switch -glob [test_compiler_info] {
1614 "xlc-*" {
1615 lappend obj_options "additional_flags=-qpic"
1616 }
1617 "gcc-*" {
1618 if { !([istarget "powerpc*-*-aix*"]
227c54da
DJ
1619 || [istarget "rs6000*-*-aix*"]
1620 || [istarget "*-*-cygwin*"]
1621 || [istarget "*-*-mingw*"]
1622 || [istarget "*-*-pe*"]) } {
57bf0e56
DJ
1623 lappend obj_options "additional_flags=-fpic"
1624 }
1625 }
1626 default {
1627 switch -glob [istarget] {
1628 "hppa*-hp-hpux*" {
1629 lappend obj_options "additional_flags=+z"
1630 }
1631 "mips-sgi-irix*" {
1632 # Disable SGI compiler's implicit -Dsgi
1633 lappend obj_options "additional_flags=-Usgi"
1634 }
1635 default {
1636 # don't know what the compiler is...
1637 }
1638 }
1639 }
1640 }
1641
1642 set outdir [file dirname $dest]
1643 set objects ""
1644 foreach source $sources {
1645 set sourcebase [file tail $source]
1646 if {[gdb_compile $source "${outdir}/${sourcebase}.o" object $obj_options] != ""} {
1647 return -1
1648 }
1649 lappend objects ${outdir}/${sourcebase}.o
1650 }
1651
1652 if [istarget "hppa*-*-hpux*"] {
1653 remote_exec build "ld -b ${objects} -o ${dest}"
1654 } else {
1655 set link_options $options
1656 if [test_compiler_info "xlc-*"] {
1657 lappend link_options "additional_flags=-qmkshrobj"
1658 } else {
1659 lappend link_options "additional_flags=-shared"
1660 }
1661 if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
1662 return -1
1663 }
1664 }
b6ff0e81
JB
1665}
1666
130cacce
AF
1667# This is just like gdb_compile_pthreads, above, except that we always add the
1668# objc library for compiling Objective-C programs
1669proc gdb_compile_objc {source dest type options} {
1670 set built_binfile 0
1671 set why_msg "unrecognized error"
1672 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
1673 # This kind of wipes out whatever libs the caller may have
1674 # set. Or maybe theirs will override ours. How infelicitous.
1675 if { $lib == "solaris" } {
1676 set lib "-lpthread -lposix4"
1677 }
1678 if { $lib != "-lobjc" } {
1679 set lib "-lobjc $lib"
1680 }
1681 set options_with_lib [concat $options [list libs=$lib quiet]]
1682 set ccout [gdb_compile $source $dest $type $options_with_lib]
1683 switch -regexp -- $ccout {
1684 ".*no posix threads support.*" {
1685 set why_msg "missing threads include file"
1686 break
1687 }
1688 ".*cannot open -lpthread.*" {
1689 set why_msg "missing runtime threads library"
1690 }
1691 ".*Can't find library for -lpthread.*" {
1692 set why_msg "missing runtime threads library"
1693 }
1694 {^$} {
1695 pass "successfully compiled objc with posix threads test case"
1696 set built_binfile 1
1697 break
1698 }
1699 }
1700 }
1701 if {!$built_binfile} {
1702 unsupported "Couldn't compile $source: ${why_msg}"
1703 return -1
1704 }
1705}
1706
c906108c
SS
1707proc send_gdb { string } {
1708 global suppress_flag;
1709 if { $suppress_flag } {
1710 return "suppressed";
1711 }
1712 return [remote_send host "$string"];
1713}
1714
1715#
1716#
1717
1718proc gdb_expect { args } {
1719 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
1720 set gtimeout [lindex $args 0];
1721 set expcode [list [lindex $args 1]];
1722 } else {
1723 upvar timeout timeout;
1724
1725 set expcode $args;
1726 if [target_info exists gdb,timeout] {
1727 if [info exists timeout] {
1728 if { $timeout < [target_info gdb,timeout] } {
1729 set gtimeout [target_info gdb,timeout];
1730 } else {
1731 set gtimeout $timeout;
1732 }
1733 } else {
1734 set gtimeout [target_info gdb,timeout];
1735 }
1736 }
1737
1738 if ![info exists gtimeout] {
1739 global timeout;
1740 if [info exists timeout] {
1741 set gtimeout $timeout;
1742 } else {
1743 # Eeeeew.
1744 set gtimeout 60;
1745 }
1746 }
1747 }
1748 global suppress_flag;
1749 global remote_suppress_flag;
1750 if [info exists remote_suppress_flag] {
1751 set old_val $remote_suppress_flag;
1752 }
1753 if [info exists suppress_flag] {
1754 if { $suppress_flag } {
1755 set remote_suppress_flag 1;
1756 }
1757 }
a0b3c4fd 1758 set code [catch \
5f279fa6 1759 {uplevel remote_expect host $gtimeout $expcode} string];
c906108c
SS
1760 if [info exists old_val] {
1761 set remote_suppress_flag $old_val;
1762 } else {
1763 if [info exists remote_suppress_flag] {
1764 unset remote_suppress_flag;
1765 }
1766 }
1767
1768 if {$code == 1} {
1769 global errorInfo errorCode;
1770
1771 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
1772 } elseif {$code == 2} {
1773 return -code return $string
1774 } elseif {$code == 3} {
1775 return
1776 } elseif {$code > 4} {
1777 return -code $code $string
1778 }
1779}
1780
c2d11a7d 1781# gdb_expect_list MESSAGE SENTINEL LIST -- expect a sequence of outputs
085dd6e6
JM
1782#
1783# Check for long sequence of output by parts.
11cf8741 1784# MESSAGE: is the test message to be printed with the test success/fail.
085dd6e6
JM
1785# SENTINEL: Is the terminal pattern indicating that output has finished.
1786# LIST: is the sequence of outputs to match.
1787# If the sentinel is recognized early, it is considered an error.
1788#
11cf8741
JM
1789# Returns:
1790# 1 if the test failed,
1791# 0 if the test passes,
1792# -1 if there was an internal error.
1793#
c2d11a7d 1794proc gdb_expect_list {test sentinel list} {
085dd6e6 1795 global gdb_prompt
11cf8741 1796 global suppress_flag
085dd6e6 1797 set index 0
43ff13b4 1798 set ok 1
11cf8741
JM
1799 if { $suppress_flag } {
1800 set ok 0
a20ce2c3 1801 unresolved "${test}"
11cf8741 1802 }
43ff13b4 1803 while { ${index} < [llength ${list}] } {
085dd6e6
JM
1804 set pattern [lindex ${list} ${index}]
1805 set index [expr ${index} + 1]
1806 if { ${index} == [llength ${list}] } {
43ff13b4
JM
1807 if { ${ok} } {
1808 gdb_expect {
c2d11a7d 1809 -re "${pattern}${sentinel}" {
a20ce2c3 1810 # pass "${test}, pattern ${index} + sentinel"
c2d11a7d
JM
1811 }
1812 -re "${sentinel}" {
a20ce2c3 1813 fail "${test} (pattern ${index} + sentinel)"
c2d11a7d 1814 set ok 0
43ff13b4 1815 }
5c5455dc
AC
1816 -re ".*A problem internal to GDB has been detected" {
1817 fail "${test} (GDB internal error)"
1818 set ok 0
1819 gdb_internal_error_resync
1820 }
43ff13b4 1821 timeout {
a20ce2c3 1822 fail "${test} (pattern ${index} + sentinel) (timeout)"
43ff13b4
JM
1823 set ok 0
1824 }
085dd6e6 1825 }
43ff13b4 1826 } else {
a20ce2c3 1827 # unresolved "${test}, pattern ${index} + sentinel"
085dd6e6
JM
1828 }
1829 } else {
43ff13b4
JM
1830 if { ${ok} } {
1831 gdb_expect {
1832 -re "${pattern}" {
a20ce2c3 1833 # pass "${test}, pattern ${index}"
43ff13b4 1834 }
c2d11a7d 1835 -re "${sentinel}" {
a20ce2c3 1836 fail "${test} (pattern ${index})"
43ff13b4
JM
1837 set ok 0
1838 }
5c5455dc
AC
1839 -re ".*A problem internal to GDB has been detected" {
1840 fail "${test} (GDB internal error)"
1841 set ok 0
1842 gdb_internal_error_resync
1843 }
43ff13b4 1844 timeout {
a20ce2c3 1845 fail "${test} (pattern ${index}) (timeout)"
43ff13b4
JM
1846 set ok 0
1847 }
085dd6e6 1848 }
43ff13b4 1849 } else {
a20ce2c3 1850 # unresolved "${test}, pattern ${index}"
085dd6e6
JM
1851 }
1852 }
1853 }
11cf8741 1854 if { ${ok} } {
a20ce2c3 1855 pass "${test}"
11cf8741
JM
1856 return 0
1857 } else {
1858 return 1
1859 }
085dd6e6
JM
1860}
1861
1862#
1863#
c906108c
SS
1864proc gdb_suppress_entire_file { reason } {
1865 global suppress_flag;
1866
1867 warning "$reason\n";
1868 set suppress_flag -1;
1869}
1870
1871#
1872# Set suppress_flag, which will cause all subsequent calls to send_gdb and
1873# gdb_expect to fail immediately (until the next call to
1874# gdb_stop_suppressing_tests).
1875#
1876proc gdb_suppress_tests { args } {
1877 global suppress_flag;
1878
1879 return; # fnf - disable pending review of results where
1880 # testsuite ran better without this
1881 incr suppress_flag;
1882
1883 if { $suppress_flag == 1 } {
1884 if { [llength $args] > 0 } {
1885 warning "[lindex $args 0]\n";
1886 } else {
1887 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n";
1888 }
1889 }
1890}
1891
1892#
1893# Clear suppress_flag.
1894#
1895proc gdb_stop_suppressing_tests { } {
1896 global suppress_flag;
1897
1898 if [info exists suppress_flag] {
1899 if { $suppress_flag > 0 } {
1900 set suppress_flag 0;
1901 clone_output "Tests restarted.\n";
1902 }
1903 } else {
1904 set suppress_flag 0;
1905 }
1906}
1907
1908proc gdb_clear_suppressed { } {
1909 global suppress_flag;
1910
1911 set suppress_flag 0;
1912}
1913
1914proc gdb_start { } {
1915 default_gdb_start
1916}
1917
1918proc gdb_exit { } {
1919 catch default_gdb_exit
1920}
1921
e63b55d1
NS
1922#
1923# gdb_load_cmd -- load a file into the debugger.
1924# ARGS - additional args to load command.
1925# return a -1 if anything goes wrong.
1926#
1927proc gdb_load_cmd { args } {
1928 global gdb_prompt
1929
1930 if [target_info exists gdb_load_timeout] {
1931 set loadtimeout [target_info gdb_load_timeout]
1932 } else {
1933 set loadtimeout 1600
1934 }
1935 send_gdb "load $args\n"
1936 verbose "Timeout is now $timeout seconds" 2
1937 gdb_expect $loadtimeout {
1938 -re "Loading section\[^\r\]*\r\n" {
1939 exp_continue
1940 }
1941 -re "Start address\[\r\]*\r\n" {
1942 exp_continue
1943 }
1944 -re "Transfer rate\[\r\]*\r\n" {
1945 exp_continue
1946 }
1947 -re "Memory access error\[^\r\]*\r\n" {
1948 perror "Failed to load program"
1949 return -1
1950 }
1951 -re "$gdb_prompt $" {
1952 return 0
1953 }
1954 -re "(.*)\r\n$gdb_prompt " {
1955 perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
1956 return -1
1957 }
1958 timeout {
1959 perror "Timed out trying to load $arg."
1960 return -1
1961 }
1962 }
1963 return -1
1964}
1965
c906108c
SS
1966#
1967# gdb_load -- load a file into the debugger.
2db8e78e 1968# Many files in config/*.exp override this procedure.
c906108c
SS
1969#
1970proc gdb_load { arg } {
1971 return [gdb_file_cmd $arg]
1972}
1973
b741e217
DJ
1974# gdb_reload -- load a file into the target. Called before "running",
1975# either the first time or after already starting the program once,
1976# for remote targets. Most files that override gdb_load should now
1977# override this instead.
1978
1979proc gdb_reload { } {
1980 # For the benefit of existing configurations, default to gdb_load.
1981 # Specifying no file defaults to the executable currently being
1982 # debugged.
1983 return [gdb_load ""]
1984}
1985
c906108c
SS
1986proc gdb_continue { function } {
1987 global decimal
1988
1989 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"];
1990}
1991
1992proc default_gdb_init { args } {
277254ba
MS
1993 global gdb_wrapper_initialized
1994
c906108c
SS
1995 gdb_clear_suppressed;
1996
277254ba
MS
1997 # Make sure that the wrapper is rebuilt
1998 # with the appropriate multilib option.
1999 set gdb_wrapper_initialized 0
2000
c906108c
SS
2001 # Uh, this is lame. Really, really, really lame. But there's this *one*
2002 # testcase that will fail in random places if we don't increase this.
2003 match_max -d 20000
2004
2005 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
2006 if { [llength $args] > 0 } {
2007 global pf_prefix
2008
2009 set file [lindex $args 0];
2010
2011 set pf_prefix "[file tail [file dirname $file]]/[file tail $file]:";
2012 }
2013 global gdb_prompt;
2014 if [target_info exists gdb_prompt] {
2015 set gdb_prompt [target_info gdb_prompt];
2016 } else {
2017 set gdb_prompt "\\(gdb\\)"
2018 }
2019}
2020
2021proc gdb_init { args } {
2022 return [eval default_gdb_init $args];
2023}
2024
2025proc gdb_finish { } {
2026 gdb_exit;
2027}
2028
2029global debug_format
7a292a7a 2030set debug_format "unknown"
c906108c
SS
2031
2032# Run the gdb command "info source" and extract the debugging format
2033# information from the output and save it in debug_format.
2034
2035proc get_debug_format { } {
2036 global gdb_prompt
2037 global verbose
2038 global expect_out
2039 global debug_format
2040
2041 set debug_format "unknown"
2042 send_gdb "info source\n"
2043 gdb_expect 10 {
919d772c 2044 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
c906108c
SS
2045 set debug_format $expect_out(1,string)
2046 verbose "debug format is $debug_format"
2047 return 1;
2048 }
2049 -re "No current source file.\r\n$gdb_prompt $" {
2050 perror "get_debug_format used when no current source file"
2051 return 0;
2052 }
2053 -re "$gdb_prompt $" {
2054 warning "couldn't check debug format (no valid response)."
2055 return 1;
2056 }
2057 timeout {
2058 warning "couldn't check debug format (timed out)."
2059 return 1;
2060 }
2061 }
2062}
2063
838ae6c4
JB
2064# Return true if FORMAT matches the debug format the current test was
2065# compiled with. FORMAT is a shell-style globbing pattern; it can use
2066# `*', `[...]', and so on.
2067#
2068# This function depends on variables set by `get_debug_format', above.
2069
2070proc test_debug_format {format} {
2071 global debug_format
2072
2073 return [expr [string match $format $debug_format] != 0]
2074}
2075
c906108c
SS
2076# Like setup_xfail, but takes the name of a debug format (DWARF 1,
2077# COFF, stabs, etc). If that format matches the format that the
2078# current test was compiled with, then the next test is expected to
2079# fail for any target. Returns 1 if the next test or set of tests is
2080# expected to fail, 0 otherwise (or if it is unknown). Must have
2081# previously called get_debug_format.
b55a4771 2082proc setup_xfail_format { format } {
838ae6c4 2083 set ret [test_debug_format $format];
b55a4771 2084
838ae6c4 2085 if {$ret} then {
b55a4771
MS
2086 setup_xfail "*-*-*"
2087 }
2088 return $ret;
2089}
c906108c
SS
2090
2091proc gdb_step_for_stub { } {
2092 global gdb_prompt;
2093
2094 if ![target_info exists gdb,use_breakpoint_for_stub] {
2095 if [target_info exists gdb_stub_step_command] {
2096 set command [target_info gdb_stub_step_command];
2097 } else {
2098 set command "step";
2099 }
2100 send_gdb "${command}\n";
2101 set tries 0;
2102 gdb_expect 60 {
2103 -re "(main.* at |.*in .*start).*$gdb_prompt" {
2104 return;
2105 }
2106 -re ".*$gdb_prompt" {
2107 incr tries;
2108 if { $tries == 5 } {
2109 fail "stepping out of breakpoint function";
2110 return;
2111 }
2112 send_gdb "${command}\n";
2113 exp_continue;
2114 }
2115 default {
2116 fail "stepping out of breakpoint function";
2117 return;
2118 }
2119 }
2120 }
2121 send_gdb "where\n";
2122 gdb_expect {
2123 -re "main\[^\r\n\]*at \(\[^:]+\):\(\[0-9\]+\)" {
2124 set file $expect_out(1,string);
2125 set linenum [expr $expect_out(2,string) + 1];
2126 set breakplace "${file}:${linenum}";
2127 }
2128 default {}
2129 }
2130 send_gdb "break ${breakplace}\n";
2131 gdb_expect 60 {
2132 -re "Breakpoint (\[0-9\]+) at.*$gdb_prompt" {
2133 set breakpoint $expect_out(1,string);
2134 }
2135 -re "Breakpoint (\[0-9\]+): file.*$gdb_prompt" {
2136 set breakpoint $expect_out(1,string);
2137 }
2138 default {}
2139 }
2140 send_gdb "continue\n";
2141 gdb_expect 60 {
2142 -re "Breakpoint ${breakpoint},.*$gdb_prompt" {
2143 gdb_test "delete $breakpoint" ".*" "";
2144 return;
2145 }
2146 default {}
2147 }
2148}
2149
c6fee705
MC
2150# gdb_get_line_number TEXT [FILE]
2151#
2152# Search the source file FILE, and return the line number of the
2153# first line containing TEXT. If no match is found, return -1.
2154#
2155# TEXT is a string literal, not a regular expression.
2156#
2157# The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
2158# specified, and does not start with "/", then it is assumed to be in
2159# "$srcdir/$subdir". This is awkward, and can be fixed in the future,
2160# by changing the callers and the interface at the same time.
2161# In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
2162# gdb.base/ena-dis-br.exp.
2163#
2164# Use this function to keep your test scripts independent of the
2165# exact line numbering of the source file. Don't write:
2166#
2167# send_gdb "break 20"
2168#
2169# This means that if anyone ever edits your test's source file,
2170# your test could break. Instead, put a comment like this on the
2171# source file line you want to break at:
2172#
2173# /* breakpoint spot: frotz.exp: test name */
2174#
2175# and then write, in your test script (which we assume is named
2176# frotz.exp):
2177#
2178# send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
2179#
2180# (Yes, Tcl knows how to handle the nested quotes and brackets.
2181# Try this:
2182# $ tclsh
2183# % puts "foo [lindex "bar baz" 1]"
2184# foo baz
2185# %
2186# Tcl is quite clever, for a little stringy language.)
2187#
2188# ===
2189#
2190# The previous implementation of this procedure used the gdb search command.
2191# This version is different:
2192#
2193# . It works with MI, and it also works when gdb is not running.
2194#
2195# . It operates on the build machine, not the host machine.
2196#
2197# . For now, this implementation fakes a current directory of
2198# $srcdir/$subdir to be compatible with the old implementation.
2199# This will go away eventually and some callers will need to
2200# be changed.
2201#
2202# . The TEXT argument is literal text and matches literally,
2203# not a regular expression as it was before.
2204#
2205# . State changes in gdb, such as changing the current file
2206# and setting $_, no longer happen.
2207#
2208# After a bit of time we can forget about the differences from the
2209# old implementation.
2210#
2211# --chastain 2004-08-05
2212
2213proc gdb_get_line_number { text { file "" } } {
2214 global srcdir
2215 global subdir
2216 global srcfile
c906108c 2217
c6fee705
MC
2218 if { "$file" == "" } then {
2219 set file "$srcfile"
2220 }
2221 if { ! [regexp "^/" "$file"] } then {
2222 set file "$srcdir/$subdir/$file"
c906108c
SS
2223 }
2224
c6fee705
MC
2225 if { [ catch { set fd [open "$file"] } message ] } then {
2226 perror "$message"
2227 return -1
c906108c 2228 }
c6fee705
MC
2229
2230 set found -1
2231 for { set line 1 } { 1 } { incr line } {
2232 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
2233 perror "$message"
2234 return -1
2235 }
2236 if { $nchar < 0 } then {
2237 break
2238 }
2239 if { [string first "$text" "$body"] >= 0 } then {
2240 set found $line
2241 break
2242 }
2243 }
2244
2245 if { [ catch { close "$fd" } message ] } then {
2246 perror "$message"
2247 return -1
2248 }
2249
2250 return $found
c906108c
SS
2251}
2252
7a292a7a
SS
2253# gdb_continue_to_end:
2254# The case where the target uses stubs has to be handled specially. If a
2255# stub is used, we set a breakpoint at exit because we cannot rely on
2256# exit() behavior of a remote target.
2257#
2258# mssg is the error message that gets printed.
2259
2260proc gdb_continue_to_end {mssg} {
2261 if [target_info exists use_gdb_stub] {
2262 if {![gdb_breakpoint "exit"]} {
2263 return 0
2264 }
2265 gdb_test "continue" "Continuing..*Breakpoint .*exit.*" \
2266 "continue until exit at $mssg"
2267 } else {
2268 # Continue until we exit. Should not stop again.
2269 # Don't bother to check the output of the program, that may be
2270 # extremely tough for some remote systems.
2271 gdb_test "continue"\
1c56143a 2272 "Continuing.\[\r\n0-9\]+(... EXIT code 0\[\r\n\]+|Program exited normally\\.).*"\
7a292a7a
SS
2273 "continue until exit at $mssg"
2274 }
2275}
2276
2277proc rerun_to_main {} {
2278 global gdb_prompt
2279
2280 if [target_info exists use_gdb_stub] {
2281 gdb_run_cmd
2282 gdb_expect {
2283 -re ".*Breakpoint .*main .*$gdb_prompt $"\
2284 {pass "rerun to main" ; return 0}
2285 -re "$gdb_prompt $"\
2286 {fail "rerun to main" ; return 0}
2287 timeout {fail "(timeout) rerun to main" ; return 0}
2288 }
2289 } else {
2290 send_gdb "run\n"
2291 gdb_expect {
11350d2a
CV
2292 -re "The program .* has been started already.*y or n. $" {
2293 send_gdb "y\n"
2294 exp_continue
2295 }
7a292a7a
SS
2296 -re "Starting program.*$gdb_prompt $"\
2297 {pass "rerun to main" ; return 0}
2298 -re "$gdb_prompt $"\
2299 {fail "rerun to main" ; return 0}
2300 timeout {fail "(timeout) rerun to main" ; return 0}
2301 }
2302 }
2303}
c906108c 2304
13a5e3b8
MS
2305# Print a message and return true if a test should be skipped
2306# due to lack of floating point suport.
2307
2308proc gdb_skip_float_test { msg } {
2309 if [target_info exists gdb,skip_float_tests] {
2310 verbose "Skipping test '$msg': no float tests.";
2311 return 1;
2312 }
2313 return 0;
2314}
2315
2316# Print a message and return true if a test should be skipped
2317# due to lack of stdio support.
2318
2319proc gdb_skip_stdio_test { msg } {
2320 if [target_info exists gdb,noinferiorio] {
2321 verbose "Skipping test '$msg': no inferior i/o.";
2322 return 1;
2323 }
2324 return 0;
2325}
2326
2327proc gdb_skip_bogus_test { msg } {
2328 return 0;
2329}
2330
e515b470
DJ
2331# Return true if a test should be skipped due to lack of XML support
2332# in the host GDB.
2333
2334proc gdb_skip_xml_test { } {
2335 global gdb_prompt
2336 global srcdir
2337 global xml_missing_cached
2338
2339 if {[info exists xml_missing_cached]} {
2340 return $xml_missing_cached
2341 }
2342
2343 gdb_start
2344 set xml_missing_cached 0
2345 gdb_test_multiple "set tdesc filename ${srcdir}/gdb.xml/trivial.xml" "" {
2346 -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
2347 set xml_missing_cached 1
2348 }
2349 -re ".*$gdb_prompt $" { }
2350 }
2351 gdb_exit
2352 return $xml_missing_cached
2353}
1f8a6abb
EZ
2354
2355# Note: the procedure gdb_gnu_strip_debug will produce an executable called
2356# ${binfile}.dbglnk, which is just like the executable ($binfile) but without
2357# the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
94277a38 2358# the name of a debuginfo only file. This file will be stored in the
1f8a6abb
EZ
2359# gdb.base/.debug subdirectory.
2360
2361# Functions for separate debug info testing
2362
2363# starting with an executable:
2364# foo --> original executable
2365
2366# at the end of the process we have:
2367# foo.stripped --> foo w/o debug info
2368# .debug/foo.debug --> foo's debug info
2369# foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
2370
2371# Return the name of the file in which we should stor EXEC's separated
2372# debug info. EXEC contains the full path.
2373proc separate_debug_filename { exec } {
2374
2375 # In a .debug subdirectory off the same directory where the testcase
2376 # executable is going to be. Something like:
2377 # <your-path>/gdb/testsuite/gdb.base/.debug/blah.debug.
2378 # This is the default location where gdb expects to findi
2379 # the debug info file.
2380
2381 set exec_dir [file dirname $exec]
2382 set exec_file [file tail $exec]
2383 set debug_dir [file join $exec_dir ".debug"]
2384 set debug_file [file join $debug_dir "${exec_file}.debug"]
2385
2386 return $debug_file
2387}
2388
94277a38
DJ
2389# Create stripped files for DEST, replacing it. If ARGS is passed, it is a
2390# list of optional flags. The only currently supported flag is no-main,
2391# which removes the symbol entry for main from the separate debug file.
1f8a6abb 2392
94277a38
DJ
2393proc gdb_gnu_strip_debug { dest args } {
2394
2395 # First, make sure that we can do this. This is nasty. We need to
2396 # check for the stabs debug format. To do this we must run gdb on
2397 # the unstripped executable, list 'main' (as to have a default
2398 # source file), use get_debug_format (which does 'info source')
2399 # and then see if the debug info is stabs. If so, we bail out. We
2400 # cannot do this any other way because get_debug_format finds out
2401 # the debug format using gdb itself, and in case of stabs we get
2402 # an error loading the program if it is already stripped. An
2403 # alternative would be to find out the debug info from the flags
2404 # passed to dejagnu when the test is run.
2405
2406 gdb_exit
2407 gdb_start
2408 gdb_load ${dest}
2409 gdb_test "list main" "" ""
2410 get_debug_format
2411 if { [test_debug_format "stabs"] } then {
2412 # The separate debug info feature doesn't work well in
2413 # binutils with stabs. It produces a corrupted debug info
2414 # only file, and gdb chokes on it. It is almost impossible to
2415 # capture the failing message out of gdb, because it happens
2416 # inside gdb_load. At that point any error message is
2417 # intercepted by dejagnu itself, and, because of the error
2418 # threshold, any faulty test result is changed into an
2419 # UNRESOLVED. (see dejagnu/lib/framework.exp)
2420 unsupported "no separate debug info handling with stabs"
2421 return -1
2422 } elseif { [test_debug_format "unknown"] } then {
2423 # gdb doesn't know what the debug format is. We are out of luck here.
2424 unsupported "unknown debugging format"
2425 return -1
2426 }
2427 gdb_exit
1f8a6abb
EZ
2428
2429 set debug_file [separate_debug_filename $dest]
b741e217
DJ
2430 set strip_to_file_program [transform strip]
2431 set objcopy_program [transform objcopy]
1f8a6abb
EZ
2432
2433 # Make sure the directory that will hold the separated debug
2434 # info actually exists.
2435 set debug_dir [file dirname $debug_file]
2436 if {! [file isdirectory $debug_dir]} {
2437 file mkdir $debug_dir
2438 }
2439
2440 set debug_link [file tail $debug_file]
2441 set stripped_file "${dest}.stripped"
2442
2443 # Get rid of the debug info, and store result in stripped_file
2444 # something like gdb/testsuite/gdb.base/blah.stripped.
2445 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
2446 verbose "result is $result"
2447 verbose "output is $output"
2448 if {$result == 1} {
2449 return 1
2450 }
2451
2452 # Get rid of everything but the debug info, and store result in debug_file
2453 # This will be in the .debug subdirectory, see above.
2454 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
2455 verbose "result is $result"
2456 verbose "output is $output"
2457 if {$result == 1} {
2458 return 1
2459 }
2460
94277a38
DJ
2461 # If no-main is passed, strip the symbol for main from the separate
2462 # file. This is to simulate the behavior of elfutils's eu-strip, which
2463 # leaves the symtab in the original file only. There's no way to get
2464 # objcopy or strip to remove the symbol table without also removing the
2465 # debugging sections, so this is as close as we can get.
2466 if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
2467 set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
2468 verbose "result is $result"
2469 verbose "output is $output"
2470 if {$result == 1} {
2471 return 1
2472 }
2473 file delete "${debug_file}"
2474 file rename "${debug_file}-tmp" "${debug_file}"
2475 }
2476
1f8a6abb
EZ
2477 # Link the two previous output files together, adding the .gnu_debuglink
2478 # section to the stripped_file, containing a pointer to the debug_file,
2479 # save the new file in dest.
2480 # This will be the regular executable filename, in the usual location.
2481 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
2482 verbose "result is $result"
2483 verbose "output is $output"
2484 if {$result == 1} {
2485 return 1
2486 }
2487
2488 return 0
2489}
2490
d8295fe9
VP
2491# Test the output of GDB_COMMAND matches the pattern obtained
2492# by concatenating all elements of EXPECTED_LINES. This makes
2493# it possible to split otherwise very long string into pieces.
2494# If third argument is not empty, it's used as the name of the
2495# test to be printed on pass/fail.
2496proc help_test_raw { gdb_command expected_lines args } {
2497 set message $gdb_command
2498 if [llength $args]>0 then {
2499 set message [lindex $args 0]
2500 }
2501 set expected_output [join $expected_lines ""]
2502 gdb_test "${gdb_command}" "${expected_output}" $message
2503}
2504
2505# Test the output of "help COMMNAD_CLASS". EXPECTED_INITIAL_LINES
2506# are regular expressions that should match the beginning of output,
2507# before the list of commands in that class. The presence of
2508# command list and standard epilogue will be tested automatically.
2509proc test_class_help { command_class expected_initial_lines args } {
2510 set l_stock_body {
2511 "List of commands\:.*\[\r\n\]+"
2512 "Type \"help\" followed by command name for full documentation\.\[\r\n\]+"
2513 "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n\]+"
2514 "Command name abbreviations are allowed if unambiguous\."
2515 }
2516 set l_entire_body [concat $expected_initial_lines $l_stock_body]
2517
2518 eval [list help_test_raw "help ${command_class}" $l_entire_body] $args
2519}
2520
2521# COMMAND_LIST should have either one element -- command to test, or
2522# two elements -- abbreviated command to test, and full command the first
2523# element is abbreviation of.
2524# The command must be a prefix command. EXPECTED_INITIAL_LINES
2525# are regular expressions that should match the beginning of output,
2526# before the list of subcommands. The presence of
2527# subcommand list and standard epilogue will be tested automatically.
2528proc test_prefix_command_help { command_list expected_initial_lines args } {
2529 set command [lindex $command_list 0]
2530 if {[llength $command_list]>1} {
2531 set full_command [lindex $command_list 1]
2532 } else {
2533 set full_command $command
2534 }
2535 # Use 'list' and not just {} because we want variables to
2536 # be expanded in this list.
2537 set l_stock_body [list\
2538 "List of $full_command subcommands\:.*\[\r\n\]+"\
2539 "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"\
2540 "Type \"apropos word\" to search for commands related to \"word\"\.\[\r\n\]+"\
2541 "Command name abbreviations are allowed if unambiguous\."]
2542 set l_entire_body [concat $expected_initial_lines $l_stock_body]
2543 if {[llength $args]>0} {
2544 help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
2545 } else {
2546 help_test_raw "help ${command}" $l_entire_body
2547 }
2548}
This page took 0.794994 seconds and 4 git commands to generate.