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