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