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