]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/lib/gdb.exp
e3faf181daa338a78dc6b8ca7486f80a0a4f9d8c
[thirdparty/binutils-gdb.git] / gdb / testsuite / lib / gdb.exp
1 # Copyright 1992-2015 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16 # This file was written by Fred Fish. (fnf@cygnus.com)
17
18 # Generic gdb subroutines that should work for any target. If these
19 # need to be modified for any target, it can be done with a variable
20 # or by passing arguments.
21
22 if {$tool == ""} {
23 # Tests would fail, logs on get_compiler_info() would be missing.
24 send_error "`site.exp' not found, run `make site.exp'!\n"
25 exit 2
26 }
27
28 load_lib libgloss.exp
29 load_lib cache.exp
30 load_lib gdb-utils.exp
31
32 global GDB
33
34 # The spawn ID used for I/O interaction with the inferior. For native
35 # targets, or remote targets that can do I/O through GDB
36 # (semi-hosting) this will be the same as the host/GDB's spawn ID.
37 # Otherwise, the board may set this to some other spawn ID. E.g.,
38 # when debugging with GDBserver, this is set to GDBserver's spawn ID,
39 # so input/output is done on gdbserver's tty.
40 global inferior_spawn_id
41
42 if [info exists TOOL_EXECUTABLE] {
43 set GDB $TOOL_EXECUTABLE
44 }
45 if ![info exists GDB] {
46 if ![is_remote host] {
47 set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
48 } else {
49 set GDB [transform gdb]
50 }
51 }
52 verbose "using GDB = $GDB" 2
53
54 # GDBFLAGS is available for the user to set on the command line.
55 # E.g. make check RUNTESTFLAGS=GDBFLAGS=mumble
56 # Testcases may use it to add additional flags, but they must:
57 # - append new flags, not overwrite
58 # - restore the original value when done
59 global GDBFLAGS
60 if ![info exists GDBFLAGS] {
61 set GDBFLAGS ""
62 }
63 verbose "using GDBFLAGS = $GDBFLAGS" 2
64
65 # Make the build data directory available to tests.
66 set BUILD_DATA_DIRECTORY "[pwd]/../data-directory"
67
68 # INTERNAL_GDBFLAGS contains flags that the testsuite requires.
69 global INTERNAL_GDBFLAGS
70 if ![info exists INTERNAL_GDBFLAGS] {
71 set INTERNAL_GDBFLAGS "-nw -nx -data-directory $BUILD_DATA_DIRECTORY"
72 }
73
74 # The variable gdb_prompt is a regexp which matches the gdb prompt.
75 # Set it if it is not already set. This is also set by default_gdb_init
76 # but it's not clear what removing one of them will break.
77 # See with_gdb_prompt for more details on prompt handling.
78 global gdb_prompt
79 if ![info exists gdb_prompt] then {
80 set gdb_prompt "\\(gdb\\)"
81 }
82
83 # A regexp that matches the pagination prompt.
84 set pagination_prompt [string_to_regexp "---Type <return> to continue, or q <return> to quit---"]
85
86 # The variable fullname_syntax_POSIX is a regexp which matches a POSIX
87 # absolute path ie. /foo/
88 set fullname_syntax_POSIX {/[^\n]*/}
89 # The variable fullname_syntax_UNC is a regexp which matches a Windows
90 # UNC path ie. \\D\foo\
91 set fullname_syntax_UNC {\\\\[^\\]+\\[^\n]+\\}
92 # The variable fullname_syntax_DOS_CASE is a regexp which matches a
93 # particular DOS case that GDB most likely will output
94 # ie. \foo\, but don't match \\.*\
95 set fullname_syntax_DOS_CASE {\\[^\\][^\n]*\\}
96 # The variable fullname_syntax_DOS is a regexp which matches a DOS path
97 # ie. a:\foo\ && a:foo\
98 set fullname_syntax_DOS {[a-zA-Z]:[^\n]*\\}
99 # The variable fullname_syntax is a regexp which matches what GDB considers
100 # an absolute path. It is currently debatable if the Windows style paths
101 # d:foo and \abc should be considered valid as an absolute path.
102 # Also, the purpse of this regexp is not to recognize a well formed
103 # absolute path, but to say with certainty that a path is absolute.
104 set fullname_syntax "($fullname_syntax_POSIX|$fullname_syntax_UNC|$fullname_syntax_DOS_CASE|$fullname_syntax_DOS)"
105
106 # Needed for some tests under Cygwin.
107 global EXEEXT
108 global env
109
110 if ![info exists env(EXEEXT)] {
111 set EXEEXT ""
112 } else {
113 set EXEEXT $env(EXEEXT)
114 }
115
116 set octal "\[0-7\]+"
117
118 set inferior_exited_re "(\\\[Inferior \[0-9\]+ \\(.*\\) exited)"
119
120 ### Only procedures should come after this point.
121
122 #
123 # gdb_version -- extract and print the version number of GDB
124 #
125 proc default_gdb_version {} {
126 global GDB
127 global INTERNAL_GDBFLAGS GDBFLAGS
128 global gdb_prompt
129 global inotify_pid
130
131 if {[info exists inotify_pid]} {
132 eval exec kill $inotify_pid
133 }
134
135 set output [remote_exec host "$GDB $INTERNAL_GDBFLAGS --version"]
136 set tmp [lindex $output 1]
137 set version ""
138 regexp " \[0-9\]\[^ \t\n\r\]+" "$tmp" version
139 if ![is_remote host] {
140 clone_output "[which $GDB] version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
141 } else {
142 clone_output "$GDB on remote host version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
143 }
144 }
145
146 proc gdb_version { } {
147 return [default_gdb_version]
148 }
149
150 #
151 # gdb_unload -- unload a file if one is loaded
152 # Return 0 on success, -1 on error.
153 #
154
155 proc gdb_unload {} {
156 global verbose
157 global GDB
158 global gdb_prompt
159 send_gdb "file\n"
160 gdb_expect 60 {
161 -re "No executable file now\[^\r\n\]*\[\r\n\]" { exp_continue }
162 -re "No symbol file now\[^\r\n\]*\[\r\n\]" { exp_continue }
163 -re "A program is being debugged already.*Are you sure you want to change the file.*y or n. $" {
164 send_gdb "y\n"
165 exp_continue
166 }
167 -re "Discard symbol table from .*y or n.*$" {
168 send_gdb "y\n"
169 exp_continue
170 }
171 -re "$gdb_prompt $" {}
172 timeout {
173 perror "couldn't unload file in $GDB (timeout)."
174 return -1
175 }
176 }
177 return 0
178 }
179
180 # Many of the tests depend on setting breakpoints at various places and
181 # running until that breakpoint is reached. At times, we want to start
182 # with a clean-slate with respect to breakpoints, so this utility proc
183 # lets us do this without duplicating this code everywhere.
184 #
185
186 proc delete_breakpoints {} {
187 global gdb_prompt
188
189 # we need a larger timeout value here or this thing just confuses
190 # itself. May need a better implementation if possible. - guo
191 #
192 set timeout 100
193
194 set msg "delete all breakpoints in delete_breakpoints"
195 set deleted 0
196 gdb_test_multiple "delete breakpoints" "$msg" {
197 -re "Delete all breakpoints.*y or n.*$" {
198 send_gdb "y\n"
199 exp_continue
200 }
201 -re "$gdb_prompt $" {
202 set deleted 1
203 }
204 }
205
206 if {$deleted} {
207 # Confirm with "info breakpoints".
208 set deleted 0
209 set msg "info breakpoints"
210 gdb_test_multiple $msg $msg {
211 -re "No breakpoints or watchpoints..*$gdb_prompt $" {
212 set deleted 1
213 }
214 -re "$gdb_prompt $" {
215 }
216 }
217 }
218
219 if {!$deleted} {
220 perror "breakpoints not deleted"
221 }
222 }
223
224 # Generic run command.
225 #
226 # The second pattern below matches up to the first newline *only*.
227 # Using ``.*$'' could swallow up output that we attempt to match
228 # elsewhere.
229 #
230 # N.B. This function does not wait for gdb to return to the prompt,
231 # that is the caller's responsibility.
232
233 proc gdb_run_cmd {args} {
234 global gdb_prompt use_gdb_stub
235
236 foreach command [gdb_init_commands] {
237 send_gdb "$command\n"
238 gdb_expect 30 {
239 -re "$gdb_prompt $" { }
240 default {
241 perror "gdb_init_command for target failed"
242 return
243 }
244 }
245 }
246
247 if $use_gdb_stub {
248 if [target_info exists gdb,do_reload_on_run] {
249 if { [gdb_reload] != 0 } {
250 return
251 }
252 send_gdb "continue\n"
253 gdb_expect 60 {
254 -re "Continu\[^\r\n\]*\[\r\n\]" {}
255 default {}
256 }
257 return
258 }
259
260 if [target_info exists gdb,start_symbol] {
261 set start [target_info gdb,start_symbol]
262 } else {
263 set start "start"
264 }
265 send_gdb "jump *$start\n"
266 set start_attempt 1
267 while { $start_attempt } {
268 # Cap (re)start attempts at three to ensure that this loop
269 # always eventually fails. Don't worry about trying to be
270 # clever and not send a command when it has failed.
271 if [expr $start_attempt > 3] {
272 perror "Jump to start() failed (retry count exceeded)"
273 return
274 }
275 set start_attempt [expr $start_attempt + 1]
276 gdb_expect 30 {
277 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
278 set start_attempt 0
279 }
280 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
281 perror "Can't find start symbol to run in gdb_run"
282 return
283 }
284 -re "No symbol \"start\" in current.*$gdb_prompt $" {
285 send_gdb "jump *_start\n"
286 }
287 -re "No symbol.*context.*$gdb_prompt $" {
288 set start_attempt 0
289 }
290 -re "Line.* Jump anyway.*y or n. $" {
291 send_gdb "y\n"
292 }
293 -re "The program is not being run.*$gdb_prompt $" {
294 if { [gdb_reload] != 0 } {
295 return
296 }
297 send_gdb "jump *$start\n"
298 }
299 timeout {
300 perror "Jump to start() failed (timeout)"
301 return
302 }
303 }
304 }
305 return
306 }
307
308 if [target_info exists gdb,do_reload_on_run] {
309 if { [gdb_reload] != 0 } {
310 return
311 }
312 }
313 send_gdb "run $args\n"
314 # This doesn't work quite right yet.
315 # Use -notransfer here so that test cases (like chng-sym.exp)
316 # may test for additional start-up messages.
317 gdb_expect 60 {
318 -re "The program .* has been started already.*y or n. $" {
319 send_gdb "y\n"
320 exp_continue
321 }
322 -notransfer -re "Starting program: \[^\r\n\]*" {}
323 -notransfer -re "$gdb_prompt $" {
324 # There is no more input expected.
325 }
326 }
327 }
328
329 # Generic start command. Return 0 if we could start the program, -1
330 # if we could not.
331 #
332 # N.B. This function does not wait for gdb to return to the prompt,
333 # that is the caller's responsibility.
334
335 proc gdb_start_cmd {args} {
336 global gdb_prompt use_gdb_stub
337
338 foreach command [gdb_init_commands] {
339 send_gdb "$command\n"
340 gdb_expect 30 {
341 -re "$gdb_prompt $" { }
342 default {
343 perror "gdb_init_command for target failed"
344 return -1
345 }
346 }
347 }
348
349 if $use_gdb_stub {
350 return -1
351 }
352
353 send_gdb "start $args\n"
354 # Use -notransfer here so that test cases (like chng-sym.exp)
355 # may test for additional start-up messages.
356 gdb_expect 60 {
357 -re "The program .* has been started already.*y or n. $" {
358 send_gdb "y\n"
359 exp_continue
360 }
361 -notransfer -re "Starting program: \[^\r\n\]*" {
362 return 0
363 }
364 }
365 return -1
366 }
367
368 # Set a breakpoint at FUNCTION. If there is an additional argument it is
369 # a list of options; the supported options are allow-pending, temporary,
370 # message, no-message, and passfail.
371 # The result is 1 for success, 0 for failure.
372 #
373 # Note: The handling of message vs no-message is messed up, but it's based
374 # on historical usage. By default this function does not print passes,
375 # only fails.
376 # no-message: turns off printing of fails (and passes, but they're already off)
377 # message: turns on printing of passes (and fails, but they're already on)
378
379 proc gdb_breakpoint { function args } {
380 global gdb_prompt
381 global decimal
382
383 set pending_response n
384 if {[lsearch -exact $args allow-pending] != -1} {
385 set pending_response y
386 }
387
388 set break_command "break"
389 set break_message "Breakpoint"
390 if {[lsearch -exact $args temporary] != -1} {
391 set break_command "tbreak"
392 set break_message "Temporary breakpoint"
393 }
394
395 set print_pass 0
396 set print_fail 1
397 set no_message_loc [lsearch -exact $args no-message]
398 set message_loc [lsearch -exact $args message]
399 # The last one to appear in args wins.
400 if { $no_message_loc > $message_loc } {
401 set print_fail 0
402 } elseif { $message_loc > $no_message_loc } {
403 set print_pass 1
404 }
405
406 set test_name "setting breakpoint at $function"
407
408 send_gdb "$break_command $function\n"
409 # The first two regexps are what we get with -g, the third is without -g.
410 gdb_expect 30 {
411 -re "$break_message \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
412 -re "$break_message \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
413 -re "$break_message \[0-9\]* at .*$gdb_prompt $" {}
414 -re "$break_message \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
415 if {$pending_response == "n"} {
416 if { $print_fail } {
417 fail $test_name
418 }
419 return 0
420 }
421 }
422 -re "Make breakpoint pending.*y or \\\[n\\\]. $" {
423 send_gdb "$pending_response\n"
424 exp_continue
425 }
426 -re "A problem internal to GDB has been detected" {
427 if { $print_fail } {
428 fail "$test_name (GDB internal error)"
429 }
430 gdb_internal_error_resync
431 return 0
432 }
433 -re "$gdb_prompt $" {
434 if { $print_fail } {
435 fail $test_name
436 }
437 return 0
438 }
439 eof {
440 if { $print_fail } {
441 fail "$test_name (eof)"
442 }
443 return 0
444 }
445 timeout {
446 if { $print_fail } {
447 fail "$test_name (timeout)"
448 }
449 return 0
450 }
451 }
452 if { $print_pass } {
453 pass $test_name
454 }
455 return 1
456 }
457
458 # Set breakpoint at function and run gdb until it breaks there.
459 # Since this is the only breakpoint that will be set, if it stops
460 # at a breakpoint, we will assume it is the one we want. We can't
461 # just compare to "function" because it might be a fully qualified,
462 # single quoted C++ function specifier.
463 #
464 # If there are additional arguments, pass them to gdb_breakpoint.
465 # We recognize no-message/message ourselves.
466 # The default is no-message.
467 # no-message is messed up here, like gdb_breakpoint: to preserve
468 # historical usage fails are always printed by default.
469 # no-message: turns off printing of fails (and passes, but they're already off)
470 # message: turns on printing of passes (and fails, but they're already on)
471
472 proc runto { function args } {
473 global gdb_prompt
474 global decimal
475
476 delete_breakpoints
477
478 # Default to "no-message".
479 set args "no-message $args"
480
481 set print_pass 0
482 set print_fail 1
483 set no_message_loc [lsearch -exact $args no-message]
484 set message_loc [lsearch -exact $args message]
485 # The last one to appear in args wins.
486 if { $no_message_loc > $message_loc } {
487 set print_fail 0
488 } elseif { $message_loc > $no_message_loc } {
489 set print_pass 1
490 }
491
492 set test_name "running to $function in runto"
493
494 # We need to use eval here to pass our varargs args to gdb_breakpoint
495 # which is also a varargs function.
496 # But we also have to be careful because $function may have multiple
497 # elements, and we don't want Tcl to move the remaining elements after
498 # the first to $args. That is why $function is wrapped in {}.
499 if ![eval gdb_breakpoint {$function} $args] {
500 return 0
501 }
502
503 gdb_run_cmd
504
505 # the "at foo.c:36" output we get with -g.
506 # the "in func" output we get without -g.
507 gdb_expect 30 {
508 -re "Break.* at .*:$decimal.*$gdb_prompt $" {
509 if { $print_pass } {
510 pass $test_name
511 }
512 return 1
513 }
514 -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
515 if { $print_pass } {
516 pass $test_name
517 }
518 return 1
519 }
520 -re "The target does not support running in non-stop mode.\r\n$gdb_prompt $" {
521 if { $print_fail } {
522 unsupported "Non-stop mode not supported"
523 }
524 return 0
525 }
526 -re ".*A problem internal to GDB has been detected" {
527 if { $print_fail } {
528 fail "$test_name (GDB internal error)"
529 }
530 gdb_internal_error_resync
531 return 0
532 }
533 -re "$gdb_prompt $" {
534 if { $print_fail } {
535 fail $test_name
536 }
537 return 0
538 }
539 eof {
540 if { $print_fail } {
541 fail "$test_name (eof)"
542 }
543 return 0
544 }
545 timeout {
546 if { $print_fail } {
547 fail "$test_name (timeout)"
548 }
549 return 0
550 }
551 }
552 if { $print_pass } {
553 pass $test_name
554 }
555 return 1
556 }
557
558 # Ask gdb to run until we hit a breakpoint at main.
559 #
560 # N.B. This function deletes all existing breakpoints.
561 # If you don't want that, use gdb_start_cmd.
562
563 proc runto_main { } {
564 return [runto main no-message]
565 }
566
567 ### Continue, and expect to hit a breakpoint.
568 ### Report a pass or fail, depending on whether it seems to have
569 ### worked. Use NAME as part of the test name; each call to
570 ### continue_to_breakpoint should use a NAME which is unique within
571 ### that test file.
572 proc gdb_continue_to_breakpoint {name {location_pattern .*}} {
573 global gdb_prompt
574 set full_name "continue to breakpoint: $name"
575
576 gdb_test_multiple "continue" $full_name {
577 -re "(?:Breakpoint|Temporary breakpoint) .* (at|in) $location_pattern\r\n$gdb_prompt $" {
578 pass $full_name
579 }
580 }
581 }
582
583
584 # gdb_internal_error_resync:
585 #
586 # Answer the questions GDB asks after it reports an internal error
587 # until we get back to a GDB prompt. Decline to quit the debugging
588 # session, and decline to create a core file. Return non-zero if the
589 # resync succeeds.
590 #
591 # This procedure just answers whatever questions come up until it sees
592 # a GDB prompt; it doesn't require you to have matched the input up to
593 # any specific point. However, it only answers questions it sees in
594 # the output itself, so if you've matched a question, you had better
595 # answer it yourself before calling this.
596 #
597 # You can use this function thus:
598 #
599 # gdb_expect {
600 # ...
601 # -re ".*A problem internal to GDB has been detected" {
602 # gdb_internal_error_resync
603 # }
604 # ...
605 # }
606 #
607 proc gdb_internal_error_resync {} {
608 global gdb_prompt
609
610 verbose -log "Resyncing due to internal error."
611
612 set count 0
613 while {$count < 10} {
614 gdb_expect {
615 -re "Quit this debugging session\\? \\(y or n\\) $" {
616 send_gdb "n\n"
617 incr count
618 }
619 -re "Create a core file of GDB\\? \\(y or n\\) $" {
620 send_gdb "n\n"
621 incr count
622 }
623 -re "$gdb_prompt $" {
624 # We're resynchronized.
625 return 1
626 }
627 timeout {
628 perror "Could not resync from internal error (timeout)"
629 return 0
630 }
631 }
632 }
633 perror "Could not resync from internal error (resync count exceeded)"
634 return 0
635 }
636
637
638 # gdb_test_multiple COMMAND MESSAGE EXPECT_ARGUMENTS
639 # Send a command to gdb; test the result.
640 #
641 # COMMAND is the command to execute, send to GDB with send_gdb. If
642 # this is the null string no command is sent.
643 # MESSAGE is a message to be printed with the built-in failure patterns
644 # if one of them matches. If MESSAGE is empty COMMAND will be used.
645 # EXPECT_ARGUMENTS will be fed to expect in addition to the standard
646 # patterns. Pattern elements will be evaluated in the caller's
647 # context; action elements will be executed in the caller's context.
648 # Unlike patterns for gdb_test, these patterns should generally include
649 # the final newline and prompt.
650 #
651 # Returns:
652 # 1 if the test failed, according to a built-in failure pattern
653 # 0 if only user-supplied patterns matched
654 # -1 if there was an internal error.
655 #
656 # You can use this function thus:
657 #
658 # gdb_test_multiple "print foo" "test foo" {
659 # -re "expected output 1" {
660 # pass "print foo"
661 # }
662 # -re "expected output 2" {
663 # fail "print foo"
664 # }
665 # }
666 #
667 # Like with "expect", you can also specify the spawn id to match with
668 # -i "$id". Interesting spawn ids are $inferior_spawn_id and
669 # $gdb_spawn_id. The former matches inferior I/O, while the latter
670 # matches GDB I/O. E.g.:
671 #
672 # send_inferior "hello\n"
673 # gdb_test_multiple "continue" "test echo" {
674 # -i "$inferior_spawn_id" -re "^hello\r\nhello\r\n$" {
675 # pass "got echo"
676 # }
677 # -i "$gdb_spawn_id" -re "Breakpoint.*$gdb_prompt $" {
678 # fail "hit breakpoint"
679 # }
680 # }
681 #
682 # The standard patterns, such as "Inferior exited..." and "A problem
683 # ...", all being implicitly appended to that list. These are always
684 # expected from $gdb_spawn_id. IOW, callers do not need to worry
685 # about resetting "-i" back to $gdb_spawn_id explicitly.
686 #
687 proc gdb_test_multiple { command message user_code } {
688 global verbose use_gdb_stub
689 global gdb_prompt pagination_prompt
690 global GDB
691 global gdb_spawn_id
692 global inferior_exited_re
693 upvar timeout timeout
694 upvar expect_out expect_out
695 global any_spawn_id
696
697 if { $message == "" } {
698 set message $command
699 }
700
701 if [string match "*\[\r\n\]" $command] {
702 error "Invalid trailing newline in \"$message\" test"
703 }
704
705 if [string match "*\[\r\n\]*" $message] {
706 error "Invalid newline in \"$message\" test"
707 }
708
709 if {$use_gdb_stub
710 && [regexp -nocase {^\s*(r|run|star|start|at|att|atta|attac|attach)\M} \
711 $command]} {
712 error "gdbserver does not support $command without extended-remote"
713 }
714
715 # TCL/EXPECT WART ALERT
716 # Expect does something very strange when it receives a single braced
717 # argument. It splits it along word separators and performs substitutions.
718 # This means that { "[ab]" } is evaluated as "[ab]", but { "\[ab\]" } is
719 # evaluated as "\[ab\]". But that's not how TCL normally works; inside a
720 # double-quoted list item, "\[ab\]" is just a long way of representing
721 # "[ab]", because the backslashes will be removed by lindex.
722
723 # Unfortunately, there appears to be no easy way to duplicate the splitting
724 # that expect will do from within TCL. And many places make use of the
725 # "\[0-9\]" construct, so we need to support that; and some places make use
726 # of the "[func]" construct, so we need to support that too. In order to
727 # get this right we have to substitute quoted list elements differently
728 # from braced list elements.
729
730 # We do this roughly the same way that Expect does it. We have to use two
731 # lists, because if we leave unquoted newlines in the argument to uplevel
732 # they'll be treated as command separators, and if we escape newlines
733 # we mangle newlines inside of command blocks. This assumes that the
734 # input doesn't contain a pattern which contains actual embedded newlines
735 # at this point!
736
737 regsub -all {\n} ${user_code} { } subst_code
738 set subst_code [uplevel list $subst_code]
739
740 set processed_code ""
741 set patterns ""
742 set expecting_action 0
743 set expecting_arg 0
744 foreach item $user_code subst_item $subst_code {
745 if { $item == "-n" || $item == "-notransfer" || $item == "-nocase" } {
746 lappend processed_code $item
747 continue
748 }
749 if { $item == "-indices" || $item == "-re" || $item == "-ex" } {
750 lappend processed_code $item
751 continue
752 }
753 if { $item == "-timeout" || $item == "-i" } {
754 set expecting_arg 1
755 lappend processed_code $item
756 continue
757 }
758 if { $expecting_arg } {
759 set expecting_arg 0
760 lappend processed_code $subst_item
761 continue
762 }
763 if { $expecting_action } {
764 lappend processed_code "uplevel [list $item]"
765 set expecting_action 0
766 # Cosmetic, no effect on the list.
767 append processed_code "\n"
768 continue
769 }
770 set expecting_action 1
771 lappend processed_code $subst_item
772 if {$patterns != ""} {
773 append patterns "; "
774 }
775 append patterns "\"$subst_item\""
776 }
777
778 # Also purely cosmetic.
779 regsub -all {\r} $patterns {\\r} patterns
780 regsub -all {\n} $patterns {\\n} patterns
781
782 if $verbose>2 then {
783 send_user "Sending \"$command\" to gdb\n"
784 send_user "Looking to match \"$patterns\"\n"
785 send_user "Message is \"$message\"\n"
786 }
787
788 set result -1
789 set string "${command}\n"
790 if { $command != "" } {
791 set multi_line_re "\[\r\n\] *>"
792 while { "$string" != "" } {
793 set foo [string first "\n" "$string"]
794 set len [string length "$string"]
795 if { $foo < [expr $len - 1] } {
796 set str [string range "$string" 0 $foo]
797 if { [send_gdb "$str"] != "" } {
798 global suppress_flag
799
800 if { ! $suppress_flag } {
801 perror "Couldn't send $command to GDB."
802 }
803 fail "$message"
804 return $result
805 }
806 # since we're checking if each line of the multi-line
807 # command are 'accepted' by GDB here,
808 # we need to set -notransfer expect option so that
809 # command output is not lost for pattern matching
810 # - guo
811 gdb_expect 2 {
812 -notransfer -re "$multi_line_re$" { verbose "partial: match" 3 }
813 timeout { verbose "partial: timeout" 3 }
814 }
815 set string [string range "$string" [expr $foo + 1] end]
816 set multi_line_re "$multi_line_re.*\[\r\n\] *>"
817 } else {
818 break
819 }
820 }
821 if { "$string" != "" } {
822 if { [send_gdb "$string"] != "" } {
823 global suppress_flag
824
825 if { ! $suppress_flag } {
826 perror "Couldn't send $command to GDB."
827 }
828 fail "$message"
829 return $result
830 }
831 }
832 }
833
834 set code {
835 -re ".*A problem internal to GDB has been detected" {
836 fail "$message (GDB internal error)"
837 gdb_internal_error_resync
838 set result -1
839 }
840 -re "\\*\\*\\* DOSEXIT code.*" {
841 if { $message != "" } {
842 fail "$message"
843 }
844 gdb_suppress_entire_file "GDB died"
845 set result -1
846 }
847 }
848 append code $processed_code
849 append code {
850 # Reset the spawn id, in case the processed code used -i.
851 -i "$gdb_spawn_id"
852
853 -re "Ending remote debugging.*$gdb_prompt $" {
854 if ![isnative] then {
855 warning "Can`t communicate to remote target."
856 }
857 gdb_exit
858 gdb_start
859 set result -1
860 }
861 -re "Undefined\[a-z\]* command:.*$gdb_prompt $" {
862 perror "Undefined command \"$command\"."
863 fail "$message"
864 set result 1
865 }
866 -re "Ambiguous command.*$gdb_prompt $" {
867 perror "\"$command\" is not a unique command name."
868 fail "$message"
869 set result 1
870 }
871 -re "$inferior_exited_re with code \[0-9\]+.*$gdb_prompt $" {
872 if ![string match "" $message] then {
873 set errmsg "$message (the program exited)"
874 } else {
875 set errmsg "$command (the program exited)"
876 }
877 fail "$errmsg"
878 set result -1
879 }
880 -re "$inferior_exited_re normally.*$gdb_prompt $" {
881 if ![string match "" $message] then {
882 set errmsg "$message (the program exited)"
883 } else {
884 set errmsg "$command (the program exited)"
885 }
886 fail "$errmsg"
887 set result -1
888 }
889 -re "The program is not being run.*$gdb_prompt $" {
890 if ![string match "" $message] then {
891 set errmsg "$message (the program is no longer running)"
892 } else {
893 set errmsg "$command (the program is no longer running)"
894 }
895 fail "$errmsg"
896 set result -1
897 }
898 -re "\r\n$gdb_prompt $" {
899 if ![string match "" $message] then {
900 fail "$message"
901 }
902 set result 1
903 }
904 -re "$pagination_prompt" {
905 send_gdb "\n"
906 perror "Window too small."
907 fail "$message"
908 set result -1
909 }
910 -re "\\((y or n|y or \\\[n\\\]|\\\[y\\\] or n)\\) " {
911 send_gdb "n\n"
912 gdb_expect -re "$gdb_prompt $"
913 fail "$message (got interactive prompt)"
914 set result -1
915 }
916 -re "\\\[0\\\] cancel\r\n\\\[1\\\] all.*\r\n> $" {
917 send_gdb "0\n"
918 gdb_expect -re "$gdb_prompt $"
919 fail "$message (got breakpoint menu)"
920 set result -1
921 }
922
923 # Patterns below apply to any spawn id specified.
924 -i $any_spawn_id
925 eof {
926 perror "Process no longer exists"
927 if { $message != "" } {
928 fail "$message"
929 }
930 return -1
931 }
932 full_buffer {
933 perror "internal buffer is full."
934 fail "$message"
935 set result -1
936 }
937 timeout {
938 if ![string match "" $message] then {
939 fail "$message (timeout)"
940 }
941 set result 1
942 }
943 }
944
945 set result 0
946 set code [catch {gdb_expect $code} string]
947 if {$code == 1} {
948 global errorInfo errorCode
949 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
950 } elseif {$code > 1} {
951 return -code $code $string
952 }
953 return $result
954 }
955
956 # gdb_test COMMAND PATTERN MESSAGE QUESTION RESPONSE
957 # Send a command to gdb; test the result.
958 #
959 # COMMAND is the command to execute, send to GDB with send_gdb. If
960 # this is the null string no command is sent.
961 # PATTERN is the pattern to match for a PASS, and must NOT include
962 # the \r\n sequence immediately before the gdb prompt.
963 # MESSAGE is an optional message to be printed. If this is
964 # omitted, then the pass/fail messages use the command string as the
965 # message. (If this is the empty string, then sometimes we don't
966 # call pass or fail at all; I don't understand this at all.)
967 # QUESTION is a question GDB may ask in response to COMMAND, like
968 # "are you sure?"
969 # RESPONSE is the response to send if QUESTION appears.
970 #
971 # Returns:
972 # 1 if the test failed,
973 # 0 if the test passes,
974 # -1 if there was an internal error.
975 #
976 proc gdb_test { args } {
977 global verbose
978 global gdb_prompt
979 global GDB
980 upvar timeout timeout
981
982 if [llength $args]>2 then {
983 set message [lindex $args 2]
984 } else {
985 set message [lindex $args 0]
986 }
987 set command [lindex $args 0]
988 set pattern [lindex $args 1]
989
990 if [llength $args]==5 {
991 set question_string [lindex $args 3]
992 set response_string [lindex $args 4]
993 } else {
994 set question_string "^FOOBAR$"
995 }
996
997 return [gdb_test_multiple $command $message {
998 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
999 if ![string match "" $message] then {
1000 pass "$message"
1001 }
1002 }
1003 -re "(${question_string})$" {
1004 send_gdb "$response_string\n"
1005 exp_continue
1006 }
1007 }]
1008 }
1009
1010 # gdb_test_no_output COMMAND MESSAGE
1011 # Send a command to GDB and verify that this command generated no output.
1012 #
1013 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
1014 # parameters. If MESSAGE is ommitted, then COMMAND will be used as
1015 # the message. (If MESSAGE is the empty string, then sometimes we do not
1016 # call pass or fail at all; I don't understand this at all.)
1017
1018 proc gdb_test_no_output { args } {
1019 global gdb_prompt
1020 set command [lindex $args 0]
1021 if [llength $args]>1 then {
1022 set message [lindex $args 1]
1023 } else {
1024 set message $command
1025 }
1026
1027 set command_regex [string_to_regexp $command]
1028 gdb_test_multiple $command $message {
1029 -re "^$command_regex\r\n$gdb_prompt $" {
1030 if ![string match "" $message] then {
1031 pass "$message"
1032 }
1033 }
1034 }
1035 }
1036
1037 # Send a command and then wait for a sequence of outputs.
1038 # This is useful when the sequence is long and contains ".*", a single
1039 # regexp to match the entire output can get a timeout much easier.
1040 #
1041 # COMMAND is the command to send.
1042 # TEST_NAME is passed to pass/fail. COMMAND is used if TEST_NAME is "".
1043 # EXPECTED_OUTPUT_LIST is a list of regexps of expected output, which are
1044 # processed in order, and all must be present in the output.
1045 #
1046 # It is unnecessary to specify ".*" at the beginning or end of any regexp,
1047 # there is an implicit ".*" between each element of EXPECTED_OUTPUT_LIST.
1048 # There is also an implicit ".*" between the last regexp and the gdb prompt.
1049 #
1050 # Like gdb_test and gdb_test_multiple, the output is expected to end with the
1051 # gdb prompt, which must not be specified in EXPECTED_OUTPUT_LIST.
1052 #
1053 # Returns:
1054 # 1 if the test failed,
1055 # 0 if the test passes,
1056 # -1 if there was an internal error.
1057
1058 proc gdb_test_sequence { command test_name expected_output_list } {
1059 global gdb_prompt
1060 if { $test_name == "" } {
1061 set test_name $command
1062 }
1063 lappend expected_output_list ""; # implicit ".*" before gdb prompt
1064 send_gdb "$command\n"
1065 return [gdb_expect_list $test_name "$gdb_prompt $" $expected_output_list]
1066 }
1067
1068 \f
1069 # Test that a command gives an error. For pass or fail, return
1070 # a 1 to indicate that more tests can proceed. However a timeout
1071 # is a serious error, generates a special fail message, and causes
1072 # a 0 to be returned to indicate that more tests are likely to fail
1073 # as well.
1074
1075 proc test_print_reject { args } {
1076 global gdb_prompt
1077 global verbose
1078
1079 if [llength $args]==2 then {
1080 set expectthis [lindex $args 1]
1081 } else {
1082 set expectthis "should never match this bogus string"
1083 }
1084 set sendthis [lindex $args 0]
1085 if $verbose>2 then {
1086 send_user "Sending \"$sendthis\" to gdb\n"
1087 send_user "Looking to match \"$expectthis\"\n"
1088 }
1089 send_gdb "$sendthis\n"
1090 #FIXME: Should add timeout as parameter.
1091 gdb_expect {
1092 -re "A .* in expression.*\\.*$gdb_prompt $" {
1093 pass "reject $sendthis"
1094 return 1
1095 }
1096 -re "Invalid syntax in expression.*$gdb_prompt $" {
1097 pass "reject $sendthis"
1098 return 1
1099 }
1100 -re "Junk after end of expression.*$gdb_prompt $" {
1101 pass "reject $sendthis"
1102 return 1
1103 }
1104 -re "Invalid number.*$gdb_prompt $" {
1105 pass "reject $sendthis"
1106 return 1
1107 }
1108 -re "Invalid character constant.*$gdb_prompt $" {
1109 pass "reject $sendthis"
1110 return 1
1111 }
1112 -re "No symbol table is loaded.*$gdb_prompt $" {
1113 pass "reject $sendthis"
1114 return 1
1115 }
1116 -re "No symbol .* in current context.*$gdb_prompt $" {
1117 pass "reject $sendthis"
1118 return 1
1119 }
1120 -re "Unmatched single quote.*$gdb_prompt $" {
1121 pass "reject $sendthis"
1122 return 1
1123 }
1124 -re "A character constant must contain at least one character.*$gdb_prompt $" {
1125 pass "reject $sendthis"
1126 return 1
1127 }
1128 -re "$expectthis.*$gdb_prompt $" {
1129 pass "reject $sendthis"
1130 return 1
1131 }
1132 -re ".*$gdb_prompt $" {
1133 fail "reject $sendthis"
1134 return 1
1135 }
1136 default {
1137 fail "reject $sendthis (eof or timeout)"
1138 return 0
1139 }
1140 }
1141 }
1142 \f
1143
1144 # Same as gdb_test, but the second parameter is not a regexp,
1145 # but a string that must match exactly.
1146
1147 proc gdb_test_exact { args } {
1148 upvar timeout timeout
1149
1150 set command [lindex $args 0]
1151
1152 # This applies a special meaning to a null string pattern. Without
1153 # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
1154 # messages from commands that should have no output except a new
1155 # prompt. With this, only results of a null string will match a null
1156 # string pattern.
1157
1158 set pattern [lindex $args 1]
1159 if [string match $pattern ""] {
1160 set pattern [string_to_regexp [lindex $args 0]]
1161 } else {
1162 set pattern [string_to_regexp [lindex $args 1]]
1163 }
1164
1165 # It is most natural to write the pattern argument with only
1166 # embedded \n's, especially if you are trying to avoid Tcl quoting
1167 # problems. But gdb_expect really wants to see \r\n in patterns. So
1168 # transform the pattern here. First transform \r\n back to \n, in
1169 # case some users of gdb_test_exact already do the right thing.
1170 regsub -all "\r\n" $pattern "\n" pattern
1171 regsub -all "\n" $pattern "\r\n" pattern
1172 if [llength $args]==3 then {
1173 set message [lindex $args 2]
1174 } else {
1175 set message $command
1176 }
1177
1178 return [gdb_test $command $pattern $message]
1179 }
1180
1181 # Wrapper around gdb_test_multiple that looks for a list of expected
1182 # output elements, but which can appear in any order.
1183 # CMD is the gdb command.
1184 # NAME is the name of the test.
1185 # ELM_FIND_REGEXP specifies how to partition the output into elements to
1186 # compare.
1187 # ELM_EXTRACT_REGEXP specifies the part of ELM_FIND_REGEXP to compare.
1188 # RESULT_MATCH_LIST is a list of exact matches for each expected element.
1189 # All elements of RESULT_MATCH_LIST must appear for the test to pass.
1190 #
1191 # A typical use of ELM_FIND_REGEXP/ELM_EXTRACT_REGEXP is to extract one line
1192 # of text per element and then strip trailing \r\n's.
1193 # Example:
1194 # gdb_test_list_exact "foo" "bar" \
1195 # "\[^\r\n\]+\[\r\n\]+" \
1196 # "\[^\r\n\]+" \
1197 # { \
1198 # {expected result 1} \
1199 # {expected result 2} \
1200 # }
1201
1202 proc gdb_test_list_exact { cmd name elm_find_regexp elm_extract_regexp result_match_list } {
1203 global gdb_prompt
1204
1205 set matches [lsort $result_match_list]
1206 set seen {}
1207 gdb_test_multiple $cmd $name {
1208 "$cmd\[\r\n\]" { exp_continue }
1209 -re $elm_find_regexp {
1210 set str $expect_out(0,string)
1211 verbose -log "seen: $str" 3
1212 regexp -- $elm_extract_regexp $str elm_seen
1213 verbose -log "extracted: $elm_seen" 3
1214 lappend seen $elm_seen
1215 exp_continue
1216 }
1217 -re "$gdb_prompt $" {
1218 set failed ""
1219 foreach got [lsort $seen] have $matches {
1220 if {![string equal $got $have]} {
1221 set failed $have
1222 break
1223 }
1224 }
1225 if {[string length $failed] != 0} {
1226 fail "$name ($failed not found)"
1227 } else {
1228 pass $name
1229 }
1230 }
1231 }
1232 }
1233
1234 # gdb_test_stdio COMMAND INFERIOR_PATTERN GDB_PATTERN MESSAGE
1235 # Send a command to gdb; expect inferior and gdb output.
1236 #
1237 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
1238 # parameters.
1239 #
1240 # INFERIOR_PATTERN is the pattern to match against inferior output.
1241 #
1242 # GDB_PATTERN is the pattern to match against gdb output, and must NOT
1243 # include the \r\n sequence immediately before the gdb prompt, nor the
1244 # prompt. The default is empty.
1245 #
1246 # Both inferior and gdb patterns must match for a PASS.
1247 #
1248 # If MESSAGE is ommitted, then COMMAND will be used as the message.
1249 #
1250 # Returns:
1251 # 1 if the test failed,
1252 # 0 if the test passes,
1253 # -1 if there was an internal error.
1254 #
1255
1256 proc gdb_test_stdio {command inferior_pattern {gdb_pattern ""} {message ""}} {
1257 global inferior_spawn_id gdb_spawn_id
1258 global gdb_prompt
1259
1260 if {$message == ""} {
1261 set message $command
1262 }
1263
1264 set inferior_matched 0
1265 set gdb_matched 0
1266
1267 # Use an indirect spawn id list, and remove the inferior spawn id
1268 # from the expected output as soon as it matches, in case
1269 # $inferior_pattern happens to be a prefix of the resulting full
1270 # gdb pattern below (e.g., "\r\n").
1271 global gdb_test_stdio_spawn_id_list
1272 set gdb_test_stdio_spawn_id_list "$inferior_spawn_id"
1273
1274 # Note that if $inferior_spawn_id and $gdb_spawn_id are different,
1275 # then we may see gdb's output arriving before the inferior's
1276 # output.
1277 set res [gdb_test_multiple $command $message {
1278 -i gdb_test_stdio_spawn_id_list -re "$inferior_pattern" {
1279 set inferior_matched 1
1280 if {!$gdb_matched} {
1281 set gdb_test_stdio_spawn_id_list ""
1282 exp_continue
1283 }
1284 }
1285 -i $gdb_spawn_id -re "$gdb_pattern\r\n$gdb_prompt $" {
1286 set gdb_matched 1
1287 if {!$inferior_matched} {
1288 exp_continue
1289 }
1290 }
1291 }]
1292 if {$res == 0} {
1293 pass $message
1294 } else {
1295 verbose -log "inferior_matched=$inferior_matched, gdb_matched=$gdb_matched"
1296 }
1297 return $res
1298 }
1299
1300 \f
1301
1302 # Issue a PASS and return true if evaluating CONDITION in the caller's
1303 # frame returns true, and issue a FAIL and return false otherwise.
1304 # MESSAGE is the pass/fail message to be printed. If MESSAGE is
1305 # omitted or is empty, then the pass/fail messages use the condition
1306 # string as the message.
1307
1308 proc gdb_assert { condition {message ""} } {
1309 if { $message == ""} {
1310 set message $condition
1311 }
1312
1313 set res [uplevel 1 expr $condition]
1314 if {!$res} {
1315 fail $message
1316 } else {
1317 pass $message
1318 }
1319 return $res
1320 }
1321
1322 proc gdb_reinitialize_dir { subdir } {
1323 global gdb_prompt
1324
1325 if [is_remote host] {
1326 return ""
1327 }
1328 send_gdb "dir\n"
1329 gdb_expect 60 {
1330 -re "Reinitialize source path to empty.*y or n. " {
1331 send_gdb "y\n"
1332 gdb_expect 60 {
1333 -re "Source directories searched.*$gdb_prompt $" {
1334 send_gdb "dir $subdir\n"
1335 gdb_expect 60 {
1336 -re "Source directories searched.*$gdb_prompt $" {
1337 verbose "Dir set to $subdir"
1338 }
1339 -re "$gdb_prompt $" {
1340 perror "Dir \"$subdir\" failed."
1341 }
1342 }
1343 }
1344 -re "$gdb_prompt $" {
1345 perror "Dir \"$subdir\" failed."
1346 }
1347 }
1348 }
1349 -re "$gdb_prompt $" {
1350 perror "Dir \"$subdir\" failed."
1351 }
1352 }
1353 }
1354
1355 #
1356 # gdb_exit -- exit the GDB, killing the target program if necessary
1357 #
1358 proc default_gdb_exit {} {
1359 global GDB
1360 global INTERNAL_GDBFLAGS GDBFLAGS
1361 global verbose
1362 global gdb_spawn_id
1363 global inotify_log_file
1364
1365 gdb_stop_suppressing_tests
1366
1367 if ![info exists gdb_spawn_id] {
1368 return
1369 }
1370
1371 verbose "Quitting $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1372
1373 if {[info exists inotify_log_file] && [file exists $inotify_log_file]} {
1374 set fd [open $inotify_log_file]
1375 set data [read -nonewline $fd]
1376 close $fd
1377
1378 if {[string compare $data ""] != 0} {
1379 warning "parallel-unsafe file creations noticed"
1380
1381 # Clear the log.
1382 set fd [open $inotify_log_file w]
1383 close $fd
1384 }
1385 }
1386
1387 if { [is_remote host] && [board_info host exists fileid] } {
1388 send_gdb "quit\n"
1389 gdb_expect 10 {
1390 -re "y or n" {
1391 send_gdb "y\n"
1392 exp_continue
1393 }
1394 -re "DOSEXIT code" { }
1395 default { }
1396 }
1397 }
1398
1399 if ![is_remote host] {
1400 remote_close host
1401 }
1402 unset gdb_spawn_id
1403 }
1404
1405 # Load a file into the debugger.
1406 # The return value is 0 for success, -1 for failure.
1407 #
1408 # This procedure also set the global variable GDB_FILE_CMD_DEBUG_INFO
1409 # to one of these values:
1410 #
1411 # debug file was loaded successfully and has debug information
1412 # nodebug file was loaded successfully and has no debug information
1413 # lzma file was loaded, .gnu_debugdata found, but no LZMA support
1414 # compiled in
1415 # fail file was not loaded
1416 #
1417 # I tried returning this information as part of the return value,
1418 # but ran into a mess because of the many re-implementations of
1419 # gdb_load in config/*.exp.
1420 #
1421 # TODO: gdb.base/sepdebug.exp and gdb.stabs/weird.exp might be able to use
1422 # this if they can get more information set.
1423
1424 proc gdb_file_cmd { arg } {
1425 global gdb_prompt
1426 global verbose
1427 global GDB
1428 global last_loaded_file
1429
1430 # Save this for the benefit of gdbserver-support.exp.
1431 set last_loaded_file $arg
1432
1433 # Set whether debug info was found.
1434 # Default to "fail".
1435 global gdb_file_cmd_debug_info
1436 set gdb_file_cmd_debug_info "fail"
1437
1438 if [is_remote host] {
1439 set arg [remote_download host $arg]
1440 if { $arg == "" } {
1441 perror "download failed"
1442 return -1
1443 }
1444 }
1445
1446 # The file command used to kill the remote target. For the benefit
1447 # of the testsuite, preserve this behavior.
1448 send_gdb "kill\n"
1449 gdb_expect 120 {
1450 -re "Kill the program being debugged. .y or n. $" {
1451 send_gdb "y\n"
1452 verbose "\t\tKilling previous program being debugged"
1453 exp_continue
1454 }
1455 -re "$gdb_prompt $" {
1456 # OK.
1457 }
1458 }
1459
1460 send_gdb "file $arg\n"
1461 gdb_expect 120 {
1462 -re "Reading symbols from.*LZMA support was disabled.*done.*$gdb_prompt $" {
1463 verbose "\t\tLoaded $arg into $GDB; .gnu_debugdata found but no LZMA available"
1464 set gdb_file_cmd_debug_info "lzma"
1465 return 0
1466 }
1467 -re "Reading symbols from.*no debugging symbols found.*done.*$gdb_prompt $" {
1468 verbose "\t\tLoaded $arg into $GDB with no debugging symbols"
1469 set gdb_file_cmd_debug_info "nodebug"
1470 return 0
1471 }
1472 -re "Reading symbols from.*done.*$gdb_prompt $" {
1473 verbose "\t\tLoaded $arg into $GDB"
1474 set gdb_file_cmd_debug_info "debug"
1475 return 0
1476 }
1477 -re "Load new symbol table from \".*\".*y or n. $" {
1478 send_gdb "y\n"
1479 gdb_expect 120 {
1480 -re "Reading symbols from.*done.*$gdb_prompt $" {
1481 verbose "\t\tLoaded $arg with new symbol table into $GDB"
1482 set gdb_file_cmd_debug_info "debug"
1483 return 0
1484 }
1485 timeout {
1486 perror "Couldn't load $arg, other program already loaded (timeout)."
1487 return -1
1488 }
1489 eof {
1490 perror "Couldn't load $arg, other program already loaded (eof)."
1491 return -1
1492 }
1493 }
1494 }
1495 -re "No such file or directory.*$gdb_prompt $" {
1496 perror "($arg) No such file or directory"
1497 return -1
1498 }
1499 -re "A problem internal to GDB has been detected" {
1500 fail "($arg) (GDB internal error)"
1501 gdb_internal_error_resync
1502 return -1
1503 }
1504 -re "$gdb_prompt $" {
1505 perror "Couldn't load $arg into $GDB."
1506 return -1
1507 }
1508 timeout {
1509 perror "Couldn't load $arg into $GDB (timeout)."
1510 return -1
1511 }
1512 eof {
1513 # This is an attempt to detect a core dump, but seems not to
1514 # work. Perhaps we need to match .* followed by eof, in which
1515 # gdb_expect does not seem to have a way to do that.
1516 perror "Couldn't load $arg into $GDB (eof)."
1517 return -1
1518 }
1519 }
1520 }
1521
1522 # Default gdb_spawn procedure.
1523
1524 proc default_gdb_spawn { } {
1525 global use_gdb_stub
1526 global GDB
1527 global INTERNAL_GDBFLAGS GDBFLAGS
1528 global gdb_spawn_id
1529
1530 gdb_stop_suppressing_tests
1531
1532 # Set the default value, it may be overriden later by specific testfile.
1533 #
1534 # Use `set_board_info use_gdb_stub' for the board file to flag the inferior
1535 # is already started after connecting and run/attach are not supported.
1536 # This is used for the "remote" protocol. After GDB starts you should
1537 # check global $use_gdb_stub instead of the board as the testfile may force
1538 # a specific different target protocol itself.
1539 set use_gdb_stub [target_info exists use_gdb_stub]
1540
1541 verbose "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1542
1543 if [info exists gdb_spawn_id] {
1544 return 0
1545 }
1546
1547 if ![is_remote host] {
1548 if { [which $GDB] == 0 } then {
1549 perror "$GDB does not exist."
1550 exit 1
1551 }
1552 }
1553 set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS [host_info gdb_opts]"]
1554 if { $res < 0 || $res == "" } {
1555 perror "Spawning $GDB failed."
1556 return 1
1557 }
1558
1559 set gdb_spawn_id $res
1560 return 0
1561 }
1562
1563 # Default gdb_start procedure.
1564
1565 proc default_gdb_start { } {
1566 global gdb_prompt pagination_prompt
1567 global gdb_spawn_id
1568 global inferior_spawn_id
1569
1570 if [info exists gdb_spawn_id] {
1571 return 0
1572 }
1573
1574 set res [gdb_spawn]
1575 if { $res != 0} {
1576 return $res
1577 }
1578
1579 # Default to assuming inferior I/O is done on GDB's terminal.
1580 if {![info exists inferior_spawn_id]} {
1581 set inferior_spawn_id $gdb_spawn_id
1582 }
1583
1584 # When running over NFS, particularly if running many simultaneous
1585 # tests on different hosts all using the same server, things can
1586 # get really slow. Give gdb at least 3 minutes to start up.
1587 set loop_again 1
1588 while { $loop_again } {
1589 set loop_again 0
1590 gdb_expect 360 {
1591 -re "$pagination_prompt" {
1592 verbose "Hit pagination during startup. Pressing enter to continue."
1593 send_gdb "\n"
1594 set loop_again 1
1595 }
1596 -re "\[\r\n\]$gdb_prompt $" {
1597 verbose "GDB initialized."
1598 }
1599 -re "$gdb_prompt $" {
1600 perror "GDB never initialized."
1601 unset gdb_spawn_id
1602 return -1
1603 }
1604 timeout {
1605 perror "(timeout) GDB never initialized after 10 seconds."
1606 remote_close host
1607 unset gdb_spawn_id
1608 return -1
1609 }
1610 }
1611 }
1612
1613 # force the height to "unlimited", so no pagers get used
1614
1615 send_gdb "set height 0\n"
1616 gdb_expect 10 {
1617 -re "$gdb_prompt $" {
1618 verbose "Setting height to 0." 2
1619 }
1620 timeout {
1621 warning "Couldn't set the height to 0"
1622 }
1623 }
1624 # force the width to "unlimited", so no wraparound occurs
1625 send_gdb "set width 0\n"
1626 gdb_expect 10 {
1627 -re "$gdb_prompt $" {
1628 verbose "Setting width to 0." 2
1629 }
1630 timeout {
1631 warning "Couldn't set the width to 0."
1632 }
1633 }
1634 return 0
1635 }
1636
1637 # Utility procedure to give user control of the gdb prompt in a script. It is
1638 # meant to be used for debugging test cases, and should not be left in the
1639 # test cases code.
1640
1641 proc gdb_interact { } {
1642 global gdb_spawn_id
1643 set spawn_id $gdb_spawn_id
1644
1645 send_user "+------------------------------------------+\n"
1646 send_user "| Script interrupted, you can now interact |\n"
1647 send_user "| with by gdb. Type >>> to continue. |\n"
1648 send_user "+------------------------------------------+\n"
1649
1650 interact {
1651 ">>>" return
1652 }
1653 }
1654
1655 # Examine the output of compilation to determine whether compilation
1656 # failed or not. If it failed determine whether it is due to missing
1657 # compiler or due to compiler error. Report pass, fail or unsupported
1658 # as appropriate
1659
1660 proc gdb_compile_test {src output} {
1661 if { $output == "" } {
1662 pass "compilation [file tail $src]"
1663 } elseif { [regexp {^[a-zA-Z_0-9]+: Can't find [^ ]+\.$} $output] } {
1664 unsupported "compilation [file tail $src]"
1665 } elseif { [regexp {.*: command not found[\r|\n]*$} $output] } {
1666 unsupported "compilation [file tail $src]"
1667 } elseif { [regexp {.*: [^\r\n]*compiler not installed[^\r\n]*[\r|\n]*$} $output] } {
1668 unsupported "compilation [file tail $src]"
1669 } else {
1670 verbose -log "compilation failed: $output" 2
1671 fail "compilation [file tail $src]"
1672 }
1673 }
1674
1675 # Return a 1 for configurations for which we don't even want to try to
1676 # test C++.
1677
1678 proc skip_cplus_tests {} {
1679 if { [istarget "h8300-*-*"] } {
1680 return 1
1681 }
1682
1683 # The C++ IO streams are too large for HC11/HC12 and are thus not
1684 # available. The gdb C++ tests use them and don't compile.
1685 if { [istarget "m6811-*-*"] } {
1686 return 1
1687 }
1688 if { [istarget "m6812-*-*"] } {
1689 return 1
1690 }
1691 return 0
1692 }
1693
1694 # Return a 1 for configurations for which don't have both C++ and the STL.
1695
1696 proc skip_stl_tests {} {
1697 # Symbian supports the C++ language, but the STL is missing
1698 # (both headers and libraries).
1699 if { [istarget "arm*-*-symbianelf*"] } {
1700 return 1
1701 }
1702
1703 return [skip_cplus_tests]
1704 }
1705
1706 # Return a 1 if I don't even want to try to test FORTRAN.
1707
1708 proc skip_fortran_tests {} {
1709 return 0
1710 }
1711
1712 # Return a 1 if I don't even want to try to test ada.
1713
1714 proc skip_ada_tests {} {
1715 return 0
1716 }
1717
1718 # Return a 1 if I don't even want to try to test GO.
1719
1720 proc skip_go_tests {} {
1721 return 0
1722 }
1723
1724 # Return a 1 if I don't even want to try to test java.
1725
1726 proc skip_java_tests {} {
1727 return 0
1728 }
1729
1730 # Return a 1 if I don't even want to try to test D.
1731
1732 proc skip_d_tests {} {
1733 return 0
1734 }
1735
1736 # Return a 1 for configurations that do not support Python scripting.
1737
1738 proc skip_python_tests {} {
1739 global gdb_prompt
1740 global gdb_py_is_py3k
1741 global gdb_py_is_py24
1742
1743 gdb_test_multiple "python print ('test')" "verify python support" {
1744 -re "not supported.*$gdb_prompt $" {
1745 unsupported "Python support is disabled."
1746 return 1
1747 }
1748 -re "$gdb_prompt $" {}
1749 }
1750
1751 set gdb_py_is_py24 0
1752 gdb_test_multiple "python print (sys.version_info\[0\])" "check if python 3" {
1753 -re "3.*$gdb_prompt $" {
1754 set gdb_py_is_py3k 1
1755 }
1756 -re ".*$gdb_prompt $" {
1757 set gdb_py_is_py3k 0
1758 }
1759 }
1760 if { $gdb_py_is_py3k == 0 } {
1761 gdb_test_multiple "python print (sys.version_info\[1\])" "check if python 2.4" {
1762 -re "\[45\].*$gdb_prompt $" {
1763 set gdb_py_is_py24 1
1764 }
1765 -re ".*$gdb_prompt $" {
1766 set gdb_py_is_py24 0
1767 }
1768 }
1769 }
1770
1771 return 0
1772 }
1773
1774 # Return a 1 if we should skip shared library tests.
1775
1776 proc skip_shlib_tests {} {
1777 # Run the shared library tests on native systems.
1778 if {[isnative]} {
1779 return 0
1780 }
1781
1782 # An abbreviated list of remote targets where we should be able to
1783 # run shared library tests.
1784 if {([istarget *-*-linux*]
1785 || [istarget *-*-*bsd*]
1786 || [istarget *-*-solaris2*]
1787 || [istarget arm*-*-symbianelf*]
1788 || [istarget *-*-mingw*]
1789 || [istarget *-*-cygwin*]
1790 || [istarget *-*-pe*])} {
1791 return 0
1792 }
1793
1794 return 1
1795 }
1796
1797 # Return 1 if we should skip tui related tests.
1798
1799 proc skip_tui_tests {} {
1800 global gdb_prompt
1801
1802 gdb_test_multiple "help layout" "verify tui support" {
1803 -re "Undefined command: \"layout\".*$gdb_prompt $" {
1804 return 1
1805 }
1806 -re "$gdb_prompt $" {
1807 }
1808 }
1809
1810 return 0
1811 }
1812
1813 # Test files shall make sure all the test result lines in gdb.sum are
1814 # unique in a test run, so that comparing the gdb.sum files of two
1815 # test runs gives correct results. Test files that exercise
1816 # variations of the same tests more than once, shall prefix the
1817 # different test invocations with different identifying strings in
1818 # order to make them unique.
1819 #
1820 # About test prefixes:
1821 #
1822 # $pf_prefix is the string that dejagnu prints after the result (FAIL,
1823 # PASS, etc.), and before the test message/name in gdb.sum. E.g., the
1824 # underlined substring in
1825 #
1826 # PASS: gdb.base/mytest.exp: some test
1827 # ^^^^^^^^^^^^^^^^^^^^
1828 #
1829 # is $pf_prefix.
1830 #
1831 # The easiest way to adjust the test prefix is to append a test
1832 # variation prefix to the $pf_prefix, using the with_test_prefix
1833 # procedure. E.g.,
1834 #
1835 # proc do_tests {} {
1836 # gdb_test ... ... "test foo"
1837 # gdb_test ... ... "test bar"
1838 #
1839 # with_test_prefix "subvariation a" {
1840 # gdb_test ... ... "test x"
1841 # }
1842 #
1843 # with_test_prefix "subvariation b" {
1844 # gdb_test ... ... "test x"
1845 # }
1846 # }
1847 #
1848 # with_test_prefix "variation1" {
1849 # ...do setup for variation 1...
1850 # do_tests
1851 # }
1852 #
1853 # with_test_prefix "variation2" {
1854 # ...do setup for variation 2...
1855 # do_tests
1856 # }
1857 #
1858 # Results in:
1859 #
1860 # PASS: gdb.base/mytest.exp: variation1: test foo
1861 # PASS: gdb.base/mytest.exp: variation1: test bar
1862 # PASS: gdb.base/mytest.exp: variation1: subvariation a: test x
1863 # PASS: gdb.base/mytest.exp: variation1: subvariation b: test x
1864 # PASS: gdb.base/mytest.exp: variation2: test foo
1865 # PASS: gdb.base/mytest.exp: variation2: test bar
1866 # PASS: gdb.base/mytest.exp: variation2: subvariation a: test x
1867 # PASS: gdb.base/mytest.exp: variation2: subvariation b: test x
1868 #
1869 # If for some reason more flexibility is necessary, one can also
1870 # manipulate the pf_prefix global directly, treating it as a string.
1871 # E.g.,
1872 #
1873 # global pf_prefix
1874 # set saved_pf_prefix
1875 # append pf_prefix "${foo}: bar"
1876 # ... actual tests ...
1877 # set pf_prefix $saved_pf_prefix
1878 #
1879
1880 # Run BODY in the context of the caller, with the current test prefix
1881 # (pf_prefix) appended with one space, then PREFIX, and then a colon.
1882 # Returns the result of BODY.
1883 #
1884 proc with_test_prefix { prefix body } {
1885 global pf_prefix
1886
1887 set saved $pf_prefix
1888 append pf_prefix " " $prefix ":"
1889 set code [catch {uplevel 1 $body} result]
1890 set pf_prefix $saved
1891
1892 if {$code == 1} {
1893 global errorInfo errorCode
1894 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
1895 } else {
1896 return -code $code $result
1897 }
1898 }
1899
1900 # Run tests in BODY with GDB prompt and variable $gdb_prompt set to
1901 # PROMPT. When BODY is finished, restore GDB prompt and variable
1902 # $gdb_prompt.
1903 # Returns the result of BODY.
1904 #
1905 # Notes:
1906 #
1907 # 1) If you want to use, for example, "(foo)" as the prompt you must pass it
1908 # as "(foo)", and not the regexp form "\(foo\)" (expressed as "\\(foo\\)" in
1909 # TCL). PROMPT is internally converted to a suitable regexp for matching.
1910 # We do the conversion from "(foo)" to "\(foo\)" here for a few reasons:
1911 # a) It's more intuitive for callers to pass the plain text form.
1912 # b) We need two forms of the prompt:
1913 # - a regexp to use in output matching,
1914 # - a value to pass to the "set prompt" command.
1915 # c) It's easier to convert the plain text form to its regexp form.
1916 #
1917 # 2) Don't add a trailing space, we do that here.
1918
1919 proc with_gdb_prompt { prompt body } {
1920 global gdb_prompt
1921
1922 # Convert "(foo)" to "\(foo\)".
1923 # We don't use string_to_regexp because while it works today it's not
1924 # clear it will work tomorrow: the value we need must work as both a
1925 # regexp *and* as the argument to the "set prompt" command, at least until
1926 # we start recording both forms separately instead of just $gdb_prompt.
1927 # The testsuite is pretty-much hardwired to interpret $gdb_prompt as the
1928 # regexp form.
1929 regsub -all {[]*+.|()^$\[\\]} $prompt {\\&} prompt
1930
1931 set saved $gdb_prompt
1932
1933 verbose -log "Setting gdb prompt to \"$prompt \"."
1934 set gdb_prompt $prompt
1935 gdb_test_no_output "set prompt $prompt " ""
1936
1937 set code [catch {uplevel 1 $body} result]
1938
1939 verbose -log "Restoring gdb prompt to \"$saved \"."
1940 set gdb_prompt $saved
1941 gdb_test_no_output "set prompt $saved " ""
1942
1943 if {$code == 1} {
1944 global errorInfo errorCode
1945 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
1946 } else {
1947 return -code $code $result
1948 }
1949 }
1950
1951 # Run tests in BODY with target-charset setting to TARGET_CHARSET. When
1952 # BODY is finished, restore target-charset.
1953
1954 proc with_target_charset { target_charset body } {
1955 global gdb_prompt
1956
1957 set saved ""
1958 gdb_test_multiple "show target-charset" "" {
1959 -re "The target character set is \".*; currently (.*)\"\..*$gdb_prompt " {
1960 set saved $expect_out(1,string)
1961 }
1962 -re "The target character set is \"(.*)\".*$gdb_prompt " {
1963 set saved $expect_out(1,string)
1964 }
1965 -re ".*$gdb_prompt " {
1966 fail "get target-charset"
1967 }
1968 }
1969
1970 gdb_test_no_output "set target-charset $target_charset" ""
1971
1972 set code [catch {uplevel 1 $body} result]
1973
1974 gdb_test_no_output "set target-charset $saved" ""
1975
1976 if {$code == 1} {
1977 global errorInfo errorCode
1978 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
1979 } else {
1980 return -code $code $result
1981 }
1982 }
1983
1984 # Select the largest timeout from all the timeouts:
1985 # - the local "timeout" variable of the scope two levels above,
1986 # - the global "timeout" variable,
1987 # - the board variable "gdb,timeout".
1988
1989 proc get_largest_timeout {} {
1990 upvar #0 timeout gtimeout
1991 upvar 2 timeout timeout
1992
1993 set tmt 0
1994 if [info exists timeout] {
1995 set tmt $timeout
1996 }
1997 if { [info exists gtimeout] && $gtimeout > $tmt } {
1998 set tmt $gtimeout
1999 }
2000 if { [target_info exists gdb,timeout]
2001 && [target_info gdb,timeout] > $tmt } {
2002 set tmt [target_info gdb,timeout]
2003 }
2004 if { $tmt == 0 } {
2005 # Eeeeew.
2006 set tmt 60
2007 }
2008
2009 return $tmt
2010 }
2011
2012 # Run tests in BODY with timeout increased by factor of FACTOR. When
2013 # BODY is finished, restore timeout.
2014
2015 proc with_timeout_factor { factor body } {
2016 global timeout
2017
2018 set savedtimeout $timeout
2019
2020 set timeout [expr [get_largest_timeout] * $factor]
2021 set code [catch {uplevel 1 $body} result]
2022
2023 set timeout $savedtimeout
2024 if {$code == 1} {
2025 global errorInfo errorCode
2026 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2027 } else {
2028 return -code $code $result
2029 }
2030 }
2031
2032 # Return 1 if _Complex types are supported, otherwise, return 0.
2033
2034 gdb_caching_proc support_complex_tests {
2035 # Set up, compile, and execute a test program containing _Complex types.
2036 # Include the current process ID in the file names to prevent conflicts
2037 # with invocations for multiple testsuites.
2038 set src [standard_temp_file complex[pid].c]
2039 set exe [standard_temp_file complex[pid].x]
2040
2041 gdb_produce_source $src {
2042 int main() {
2043 _Complex float cf;
2044 _Complex double cd;
2045 _Complex long double cld;
2046 return 0;
2047 }
2048 }
2049
2050 verbose "compiling testfile $src" 2
2051 set compile_flags {debug nowarnings quiet}
2052 set lines [gdb_compile $src $exe executable $compile_flags]
2053 file delete $src
2054 file delete $exe
2055
2056 if ![string match "" $lines] then {
2057 verbose "testfile compilation failed, returning 0" 2
2058 set result 0
2059 } else {
2060 set result 1
2061 }
2062
2063 return $result
2064 }
2065
2066 # Return 1 if GDB can get a type for siginfo from the target, otherwise
2067 # return 0.
2068
2069 proc supports_get_siginfo_type {} {
2070 if { [istarget "*-*-linux*"] } {
2071 return 1
2072 } else {
2073 return 0
2074 }
2075 }
2076
2077 # Return 1 if target hardware or OS supports single stepping to signal
2078 # handler, otherwise, return 0.
2079
2080 proc can_single_step_to_signal_handler {} {
2081
2082 # Targets don't have hardware single step. On these targets, when
2083 # a signal is delivered during software single step, gdb is unable
2084 # to determine the next instruction addresses, because start of signal
2085 # handler is one of them.
2086 if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
2087 || [istarget "tic6x-*-*"] || [istarget "sparc*-*-linux*"]
2088 || [istarget "nios2-*-*"] } {
2089 return 0
2090 }
2091
2092 return 1
2093 }
2094
2095 # Return 1 if target supports process record, otherwise return 0.
2096
2097 proc supports_process_record {} {
2098
2099 if [target_info exists gdb,use_precord] {
2100 return [target_info gdb,use_precord]
2101 }
2102
2103 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2104 || [istarget "i\[34567\]86-*-linux*"]
2105 || [istarget "aarch64*-*-linux*"]
2106 || [istarget "powerpc*-*-linux*"] } {
2107 return 1
2108 }
2109
2110 return 0
2111 }
2112
2113 # Return 1 if target supports reverse debugging, otherwise return 0.
2114
2115 proc supports_reverse {} {
2116
2117 if [target_info exists gdb,can_reverse] {
2118 return [target_info gdb,can_reverse]
2119 }
2120
2121 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2122 || [istarget "i\[34567\]86-*-linux*"]
2123 || [istarget "aarch64*-*-linux*"]
2124 || [istarget "powerpc*-*-linux*"] } {
2125 return 1
2126 }
2127
2128 return 0
2129 }
2130
2131 # Return 1 if readline library is used.
2132
2133 proc readline_is_used { } {
2134 global gdb_prompt
2135
2136 gdb_test_multiple "show editing" "" {
2137 -re ".*Editing of command lines as they are typed is on\..*$gdb_prompt $" {
2138 return 1
2139 }
2140 -re ".*$gdb_prompt $" {
2141 return 0
2142 }
2143 }
2144 }
2145
2146 # Return 1 if target is ELF.
2147 gdb_caching_proc is_elf_target {
2148 set me "is_elf_target"
2149
2150 set src [standard_temp_file is_elf_target[pid].c]
2151 set obj [standard_temp_file is_elf_target[pid].o]
2152
2153 gdb_produce_source $src {
2154 int foo () {return 0;}
2155 }
2156
2157 verbose "$me: compiling testfile $src" 2
2158 set lines [gdb_compile $src $obj object {quiet}]
2159
2160 file delete $src
2161
2162 if ![string match "" $lines] then {
2163 verbose "$me: testfile compilation failed, returning 0" 2
2164 return 0
2165 }
2166
2167 set fp_obj [open $obj "r"]
2168 fconfigure $fp_obj -translation binary
2169 set data [read $fp_obj]
2170 close $fp_obj
2171
2172 file delete $obj
2173
2174 set ELFMAG "\u007FELF"
2175
2176 if {[string compare -length 4 $data $ELFMAG] != 0} {
2177 verbose "$me: returning 0" 2
2178 return 0
2179 }
2180
2181 verbose "$me: returning 1" 2
2182 return 1
2183 }
2184
2185 # Return 1 if the memory at address zero is readable.
2186
2187 gdb_caching_proc is_address_zero_readable {
2188 global gdb_prompt
2189
2190 set ret 0
2191 gdb_test_multiple "x 0" "" {
2192 -re "Cannot access memory at address 0x0.*$gdb_prompt $" {
2193 set ret 0
2194 }
2195 -re ".*$gdb_prompt $" {
2196 set ret 1
2197 }
2198 }
2199
2200 return $ret
2201 }
2202
2203 # Produce source file NAME and write SOURCES into it.
2204
2205 proc gdb_produce_source { name sources } {
2206 set index 0
2207 set f [open $name "w"]
2208
2209 puts $f $sources
2210 close $f
2211 }
2212
2213 # Return 1 if target is ILP32.
2214 # This cannot be decided simply from looking at the target string,
2215 # as it might depend on externally passed compiler options like -m64.
2216 gdb_caching_proc is_ilp32_target {
2217 set me "is_ilp32_target"
2218
2219 set src [standard_temp_file ilp32[pid].c]
2220 set obj [standard_temp_file ilp32[pid].o]
2221
2222 gdb_produce_source $src {
2223 int dummy[sizeof (int) == 4
2224 && sizeof (void *) == 4
2225 && sizeof (long) == 4 ? 1 : -1];
2226 }
2227
2228 verbose "$me: compiling testfile $src" 2
2229 set lines [gdb_compile $src $obj object {quiet}]
2230 file delete $src
2231 file delete $obj
2232
2233 if ![string match "" $lines] then {
2234 verbose "$me: testfile compilation failed, returning 0" 2
2235 return 0
2236 }
2237
2238 verbose "$me: returning 1" 2
2239 return 1
2240 }
2241
2242 # Return 1 if target is LP64.
2243 # This cannot be decided simply from looking at the target string,
2244 # as it might depend on externally passed compiler options like -m64.
2245 gdb_caching_proc is_lp64_target {
2246 set me "is_lp64_target"
2247
2248 set src [standard_temp_file lp64[pid].c]
2249 set obj [standard_temp_file lp64[pid].o]
2250
2251 gdb_produce_source $src {
2252 int dummy[sizeof (int) == 4
2253 && sizeof (void *) == 8
2254 && sizeof (long) == 8 ? 1 : -1];
2255 }
2256
2257 verbose "$me: compiling testfile $src" 2
2258 set lines [gdb_compile $src $obj object {quiet}]
2259 file delete $src
2260 file delete $obj
2261
2262 if ![string match "" $lines] then {
2263 verbose "$me: testfile compilation failed, returning 0" 2
2264 return 0
2265 }
2266
2267 verbose "$me: returning 1" 2
2268 return 1
2269 }
2270
2271 # Return 1 if target has 64 bit addresses.
2272 # This cannot be decided simply from looking at the target string,
2273 # as it might depend on externally passed compiler options like -m64.
2274 gdb_caching_proc is_64_target {
2275 set me "is_64_target"
2276
2277 set src [standard_temp_file is64[pid].c]
2278 set obj [standard_temp_file is64[pid].o]
2279
2280 gdb_produce_source $src {
2281 int function(void) { return 3; }
2282 int dummy[sizeof (&function) == 8 ? 1 : -1];
2283 }
2284
2285 verbose "$me: compiling testfile $src" 2
2286 set lines [gdb_compile $src $obj object {quiet}]
2287 file delete $src
2288 file delete $obj
2289
2290 if ![string match "" $lines] then {
2291 verbose "$me: testfile compilation failed, returning 0" 2
2292 return 0
2293 }
2294
2295 verbose "$me: returning 1" 2
2296 return 1
2297 }
2298
2299 # Return 1 if target has x86_64 registers - either amd64 or x32.
2300 # x32 target identifies as x86_64-*-linux*, therefore it cannot be determined
2301 # just from the target string.
2302 gdb_caching_proc is_amd64_regs_target {
2303 if {![istarget "x86_64-*-*"] && ![istarget "i?86-*"]} {
2304 return 0
2305 }
2306
2307 set me "is_amd64_regs_target"
2308
2309 set src [standard_temp_file reg64[pid].s]
2310 set obj [standard_temp_file reg64[pid].o]
2311
2312 set list {}
2313 foreach reg \
2314 {rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15} {
2315 lappend list "\tincq %$reg"
2316 }
2317 gdb_produce_source $src [join $list \n]
2318
2319 verbose "$me: compiling testfile $src" 2
2320 set lines [gdb_compile $src $obj object {quiet}]
2321 file delete $src
2322 file delete $obj
2323
2324 if ![string match "" $lines] then {
2325 verbose "$me: testfile compilation failed, returning 0" 2
2326 return 0
2327 }
2328
2329 verbose "$me: returning 1" 2
2330 return 1
2331 }
2332
2333 # Return 1 if this target is an x86 or x86-64 with -m32.
2334 proc is_x86_like_target {} {
2335 if {![istarget "x86_64-*-*"] && ![istarget i?86-*]} {
2336 return 0
2337 }
2338 return [expr [is_ilp32_target] && ![is_amd64_regs_target]]
2339 }
2340
2341 # Return 1 if this target is an arm or aarch32 on aarch64.
2342
2343 gdb_caching_proc is_aarch32_target {
2344 if { [istarget "arm*-*-*"] } {
2345 return 1
2346 }
2347
2348 if { ![istarget "aarch64*-*-*"] } {
2349 return 0
2350 }
2351
2352 set me "is_aarch32_target"
2353
2354 set src [standard_temp_file aarch32[pid].s]
2355 set obj [standard_temp_file aarch32[pid].o]
2356
2357 set list {}
2358 foreach reg \
2359 {r0 r1 r2 r3} {
2360 lappend list "\tmov $reg, $reg"
2361 }
2362 gdb_produce_source $src [join $list \n]
2363
2364 verbose "$me: compiling testfile $src" 2
2365 set lines [gdb_compile $src $obj object {quiet}]
2366 file delete $src
2367 file delete $obj
2368
2369 if ![string match "" $lines] then {
2370 verbose "$me: testfile compilation failed, returning 0" 2
2371 return 0
2372 }
2373
2374 verbose "$me: returning 1" 2
2375 return 1
2376 }
2377
2378 # Return 1 if this target is an aarch64, either lp64 or ilp32.
2379
2380 proc is_aarch64_target {} {
2381 if { ![istarget "aarch64*-*-*"] } {
2382 return 0
2383 }
2384
2385 return [expr ![is_aarch32_target]]
2386 }
2387
2388 # Return 1 if displaced stepping is supported on target, otherwise, return 0.
2389 proc support_displaced_stepping {} {
2390
2391 if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"]
2392 || [istarget "arm*-*-linux*"] || [istarget "powerpc-*-linux*"]
2393 || [istarget "powerpc64-*-linux*"] || [istarget "s390*-*-*"] } {
2394 return 1
2395 }
2396
2397 return 0
2398 }
2399
2400 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2401 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2402
2403 gdb_caching_proc skip_altivec_tests {
2404 global srcdir subdir gdb_prompt inferior_exited_re
2405
2406 set me "skip_altivec_tests"
2407
2408 # Some simulators are known to not support VMX instructions.
2409 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2410 verbose "$me: target known to not support VMX, returning 1" 2
2411 return 1
2412 }
2413
2414 # Make sure we have a compiler that understands altivec.
2415 set compile_flags {debug nowarnings}
2416 if [get_compiler_info] {
2417 warning "Could not get compiler info"
2418 return 1
2419 }
2420 if [test_compiler_info gcc*] {
2421 set compile_flags "$compile_flags additional_flags=-maltivec"
2422 } elseif [test_compiler_info xlc*] {
2423 set compile_flags "$compile_flags additional_flags=-qaltivec"
2424 } else {
2425 verbose "Could not compile with altivec support, returning 1" 2
2426 return 1
2427 }
2428
2429 # Set up, compile, and execute a test program containing VMX instructions.
2430 # Include the current process ID in the file names to prevent conflicts
2431 # with invocations for multiple testsuites.
2432 set src [standard_temp_file vmx[pid].c]
2433 set exe [standard_temp_file vmx[pid].x]
2434
2435 gdb_produce_source $src {
2436 int main() {
2437 #ifdef __MACH__
2438 asm volatile ("vor v0,v0,v0");
2439 #else
2440 asm volatile ("vor 0,0,0");
2441 #endif
2442 return 0;
2443 }
2444 }
2445
2446 verbose "$me: compiling testfile $src" 2
2447 set lines [gdb_compile $src $exe executable $compile_flags]
2448 file delete $src
2449
2450 if ![string match "" $lines] then {
2451 verbose "$me: testfile compilation failed, returning 1" 2
2452 return 1
2453 }
2454
2455 # No error message, compilation succeeded so now run it via gdb.
2456
2457 gdb_exit
2458 gdb_start
2459 gdb_reinitialize_dir $srcdir/$subdir
2460 gdb_load "$exe"
2461 gdb_run_cmd
2462 gdb_expect {
2463 -re ".*Illegal instruction.*${gdb_prompt} $" {
2464 verbose -log "\n$me altivec hardware not detected"
2465 set skip_vmx_tests 1
2466 }
2467 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2468 verbose -log "\n$me: altivec hardware detected"
2469 set skip_vmx_tests 0
2470 }
2471 default {
2472 warning "\n$me: default case taken"
2473 set skip_vmx_tests 1
2474 }
2475 }
2476 gdb_exit
2477 remote_file build delete $exe
2478
2479 verbose "$me: returning $skip_vmx_tests" 2
2480 return $skip_vmx_tests
2481 }
2482
2483 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2484 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2485
2486 gdb_caching_proc skip_vsx_tests {
2487 global srcdir subdir gdb_prompt inferior_exited_re
2488
2489 set me "skip_vsx_tests"
2490
2491 # Some simulators are known to not support Altivec instructions, so
2492 # they won't support VSX instructions as well.
2493 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2494 verbose "$me: target known to not support VSX, returning 1" 2
2495 return 1
2496 }
2497
2498 # Make sure we have a compiler that understands altivec.
2499 set compile_flags {debug nowarnings quiet}
2500 if [get_compiler_info] {
2501 warning "Could not get compiler info"
2502 return 1
2503 }
2504 if [test_compiler_info gcc*] {
2505 set compile_flags "$compile_flags additional_flags=-mvsx"
2506 } elseif [test_compiler_info xlc*] {
2507 set compile_flags "$compile_flags additional_flags=-qasm=gcc"
2508 } else {
2509 verbose "Could not compile with vsx support, returning 1" 2
2510 return 1
2511 }
2512
2513 set src [standard_temp_file vsx[pid].c]
2514 set exe [standard_temp_file vsx[pid].x]
2515
2516 gdb_produce_source $src {
2517 int main() {
2518 double a[2] = { 1.0, 2.0 };
2519 #ifdef __MACH__
2520 asm volatile ("lxvd2x v0,v0,%[addr]" : : [addr] "r" (a));
2521 #else
2522 asm volatile ("lxvd2x 0,0,%[addr]" : : [addr] "r" (a));
2523 #endif
2524 return 0;
2525 }
2526 }
2527
2528 verbose "$me: compiling testfile $src" 2
2529 set lines [gdb_compile $src $exe executable $compile_flags]
2530 file delete $src
2531
2532 if ![string match "" $lines] then {
2533 verbose "$me: testfile compilation failed, returning 1" 2
2534 return 1
2535 }
2536
2537 # No error message, compilation succeeded so now run it via gdb.
2538
2539 gdb_exit
2540 gdb_start
2541 gdb_reinitialize_dir $srcdir/$subdir
2542 gdb_load "$exe"
2543 gdb_run_cmd
2544 gdb_expect {
2545 -re ".*Illegal instruction.*${gdb_prompt} $" {
2546 verbose -log "\n$me VSX hardware not detected"
2547 set skip_vsx_tests 1
2548 }
2549 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2550 verbose -log "\n$me: VSX hardware detected"
2551 set skip_vsx_tests 0
2552 }
2553 default {
2554 warning "\n$me: default case taken"
2555 set skip_vsx_tests 1
2556 }
2557 }
2558 gdb_exit
2559 remote_file build delete $exe
2560
2561 verbose "$me: returning $skip_vsx_tests" 2
2562 return $skip_vsx_tests
2563 }
2564
2565 # Run a test on the target to see if it supports btrace hardware. Return 0 if so,
2566 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2567
2568 gdb_caching_proc skip_btrace_tests {
2569 global srcdir subdir gdb_prompt inferior_exited_re
2570
2571 set me "skip_btrace_tests"
2572 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2573 verbose "$me: target does not support btrace, returning 1" 2
2574 return 1
2575 }
2576
2577 # Set up, compile, and execute a test program.
2578 # Include the current process ID in the file names to prevent conflicts
2579 # with invocations for multiple testsuites.
2580 set src [standard_temp_file btrace[pid].c]
2581 set exe [standard_temp_file btrace[pid].x]
2582
2583 gdb_produce_source $src {
2584 int main(void) { return 0; }
2585 }
2586
2587 verbose "$me: compiling testfile $src" 2
2588 set compile_flags {debug nowarnings quiet}
2589 set lines [gdb_compile $src $exe executable $compile_flags]
2590
2591 if ![string match "" $lines] then {
2592 verbose "$me: testfile compilation failed, returning 1" 2
2593 file delete $src
2594 return 1
2595 }
2596
2597 # No error message, compilation succeeded so now run it via gdb.
2598
2599 gdb_exit
2600 gdb_start
2601 gdb_reinitialize_dir $srcdir/$subdir
2602 gdb_load $exe
2603 if ![runto_main] {
2604 file delete $src
2605 return 1
2606 }
2607 file delete $src
2608 # In case of an unexpected output, we return 2 as a fail value.
2609 set skip_btrace_tests 2
2610 gdb_test_multiple "record btrace" "check btrace support" {
2611 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
2612 set skip_btrace_tests 1
2613 }
2614 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
2615 set skip_btrace_tests 1
2616 }
2617 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
2618 set skip_btrace_tests 1
2619 }
2620 -re "^record btrace\r\n$gdb_prompt $" {
2621 set skip_btrace_tests 0
2622 }
2623 }
2624 gdb_exit
2625 remote_file build delete $exe
2626
2627 verbose "$me: returning $skip_btrace_tests" 2
2628 return $skip_btrace_tests
2629 }
2630
2631 # Skip all the tests in the file if you are not on an hppa running
2632 # hpux target.
2633
2634 proc skip_hp_tests {} {
2635 eval set skip_hp [ expr ![isnative] || ![istarget "hppa*-*-hpux*"] ]
2636 verbose "Skip hp tests is $skip_hp"
2637 return $skip_hp
2638 }
2639
2640 # Return whether we should skip tests for showing inlined functions in
2641 # backtraces. Requires get_compiler_info and get_debug_format.
2642
2643 proc skip_inline_frame_tests {} {
2644 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2645 if { ! [test_debug_format "DWARF 2"] } {
2646 return 1
2647 }
2648
2649 # GCC before 4.1 does not emit DW_AT_call_file / DW_AT_call_line.
2650 if { ([test_compiler_info "gcc-2-*"]
2651 || [test_compiler_info "gcc-3-*"]
2652 || [test_compiler_info "gcc-4-0-*"]) } {
2653 return 1
2654 }
2655
2656 return 0
2657 }
2658
2659 # Return whether we should skip tests for showing variables from
2660 # inlined functions. Requires get_compiler_info and get_debug_format.
2661
2662 proc skip_inline_var_tests {} {
2663 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2664 if { ! [test_debug_format "DWARF 2"] } {
2665 return 1
2666 }
2667
2668 return 0
2669 }
2670
2671 # Return a 1 if we should skip tests that require hardware breakpoints
2672
2673 proc skip_hw_breakpoint_tests {} {
2674 # Skip tests if requested by the board (note that no_hardware_watchpoints
2675 # disables both watchpoints and breakpoints)
2676 if { [target_info exists gdb,no_hardware_watchpoints]} {
2677 return 1
2678 }
2679
2680 # These targets support hardware breakpoints natively
2681 if { [istarget "i?86-*-*"]
2682 || [istarget "x86_64-*-*"]
2683 || [istarget "ia64-*-*"]
2684 || [istarget "arm*-*-*"]
2685 || [istarget "aarch64*-*-*"]} {
2686 return 0
2687 }
2688
2689 return 1
2690 }
2691
2692 # Return a 1 if we should skip tests that require hardware watchpoints
2693
2694 proc skip_hw_watchpoint_tests {} {
2695 # Skip tests if requested by the board
2696 if { [target_info exists gdb,no_hardware_watchpoints]} {
2697 return 1
2698 }
2699
2700 # These targets support hardware watchpoints natively
2701 if { [istarget "i?86-*-*"]
2702 || [istarget "x86_64-*-*"]
2703 || [istarget "ia64-*-*"]
2704 || [istarget "arm*-*-*"]
2705 || [istarget "aarch64*-*-*"]
2706 || [istarget "powerpc*-*-linux*"]
2707 || [istarget "s390*-*-*"] } {
2708 return 0
2709 }
2710
2711 return 1
2712 }
2713
2714 # Return a 1 if we should skip tests that require *multiple* hardware
2715 # watchpoints to be active at the same time
2716
2717 proc skip_hw_watchpoint_multi_tests {} {
2718 if { [skip_hw_watchpoint_tests] } {
2719 return 1
2720 }
2721
2722 # These targets support just a single hardware watchpoint
2723 if { [istarget "arm*-*-*"]
2724 || [istarget "powerpc*-*-linux*"] } {
2725 return 1
2726 }
2727
2728 return 0
2729 }
2730
2731 # Return a 1 if we should skip tests that require read/access watchpoints
2732
2733 proc skip_hw_watchpoint_access_tests {} {
2734 if { [skip_hw_watchpoint_tests] } {
2735 return 1
2736 }
2737
2738 # These targets support just write watchpoints
2739 if { [istarget "s390*-*-*"] } {
2740 return 1
2741 }
2742
2743 return 0
2744 }
2745
2746 # Return 1 if we should skip tests that require the runtime unwinder
2747 # hook. This must be invoked while gdb is running, after shared
2748 # libraries have been loaded. This is needed because otherwise a
2749 # shared libgcc won't be visible.
2750
2751 proc skip_unwinder_tests {} {
2752 global gdb_prompt
2753
2754 set ok 0
2755 gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook" {
2756 -re "= .*no debug info.*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
2757 }
2758 -re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
2759 set ok 1
2760 }
2761 -re "No symbol .* in current context.\r\n$gdb_prompt $" {
2762 }
2763 }
2764 if {!$ok} {
2765 gdb_test_multiple "info probe" "check for stap probe in unwinder" {
2766 -re ".*libgcc.*unwind.*\r\n$gdb_prompt $" {
2767 set ok 1
2768 }
2769 -re "\r\n$gdb_prompt $" {
2770 }
2771 }
2772 }
2773 return $ok
2774 }
2775
2776 # Return 0 if we should skip tests that require the libstdc++ stap
2777 # probes. This must be invoked while gdb is running, after shared
2778 # libraries have been loaded.
2779
2780 proc skip_libstdcxx_probe_tests {} {
2781 global gdb_prompt
2782
2783 set ok 0
2784 gdb_test_multiple "info probe" "check for stap probe in libstdc++" {
2785 -re ".*libstdcxx.*catch.*\r\n$gdb_prompt $" {
2786 set ok 1
2787 }
2788 -re "\r\n$gdb_prompt $" {
2789 }
2790 }
2791 return $ok
2792 }
2793
2794 # Return 1 if we should skip tests of the "compile" feature.
2795 # This must be invoked after the inferior has been started.
2796
2797 proc skip_compile_feature_tests {} {
2798 global gdb_prompt
2799
2800 set result 0
2801 gdb_test_multiple "compile code -- ;" "check for working compile command" {
2802 "Could not load libcc1.*\r\n$gdb_prompt $" {
2803 set result 1
2804 }
2805 -re "Command not supported on this host\\..*\r\n$gdb_prompt $" {
2806 set result 1
2807 }
2808 -re "\r\n$gdb_prompt $" {
2809 }
2810 }
2811 return $result
2812 }
2813
2814 # Check whether we're testing with the remote or extended-remote
2815 # targets.
2816
2817 proc gdb_is_target_remote {} {
2818 global gdb_prompt
2819
2820 set test "probe for target remote"
2821 gdb_test_multiple "maint print target-stack" $test {
2822 -re ".*emote serial target in gdb-specific protocol.*$gdb_prompt $" {
2823 pass $test
2824 return 1
2825 }
2826 -re "$gdb_prompt $" {
2827 pass $test
2828 }
2829 }
2830 return 0
2831 }
2832
2833 # Return 1 if the current remote target is an instance of our GDBserver, 0
2834 # otherwise. Return -1 if there was an error and we can't tell.
2835
2836 gdb_caching_proc target_is_gdbserver {
2837 global gdb_prompt
2838
2839 set is_gdbserver -1
2840 set test "Probing for GDBserver"
2841
2842 gdb_test_multiple "monitor help" $test {
2843 -re "The following monitor commands are supported.*Quit GDBserver.*$gdb_prompt $" {
2844 set is_gdbserver 1
2845 }
2846 -re "$gdb_prompt $" {
2847 set is_gdbserver 0
2848 }
2849 }
2850
2851 if { $is_gdbserver == -1 } {
2852 verbose -log "Unable to tell whether we are using GDBserver or not."
2853 }
2854
2855 return $is_gdbserver
2856 }
2857
2858 # N.B. compiler_info is intended to be local to this file.
2859 # Call test_compiler_info with no arguments to fetch its value.
2860 # Yes, this is counterintuitive when there's get_compiler_info,
2861 # but that's the current API.
2862 if [info exists compiler_info] {
2863 unset compiler_info
2864 }
2865
2866 set gcc_compiled 0
2867 set hp_cc_compiler 0
2868 set hp_aCC_compiler 0
2869
2870 # Figure out what compiler I am using.
2871 # The result is cached so only the first invocation runs the compiler.
2872 #
2873 # ARG can be empty or "C++". If empty, "C" is assumed.
2874 #
2875 # There are several ways to do this, with various problems.
2876 #
2877 # [ gdb_compile -E $ifile -o $binfile.ci ]
2878 # source $binfile.ci
2879 #
2880 # Single Unix Spec v3 says that "-E -o ..." together are not
2881 # specified. And in fact, the native compiler on hp-ux 11 (among
2882 # others) does not work with "-E -o ...". Most targets used to do
2883 # this, and it mostly worked, because it works with gcc.
2884 #
2885 # [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
2886 # source $binfile.ci
2887 #
2888 # This avoids the problem with -E and -o together. This almost works
2889 # if the build machine is the same as the host machine, which is
2890 # usually true of the targets which are not gcc. But this code does
2891 # not figure which compiler to call, and it always ends up using the C
2892 # compiler. Not good for setting hp_aCC_compiler. Target
2893 # hppa*-*-hpux* used to do this.
2894 #
2895 # [ gdb_compile -E $ifile > $binfile.ci ]
2896 # source $binfile.ci
2897 #
2898 # dejagnu target_compile says that it supports output redirection,
2899 # but the code is completely different from the normal path and I
2900 # don't want to sweep the mines from that path. So I didn't even try
2901 # this.
2902 #
2903 # set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
2904 # eval $cppout
2905 #
2906 # I actually do this for all targets now. gdb_compile runs the right
2907 # compiler, and TCL captures the output, and I eval the output.
2908 #
2909 # Unfortunately, expect logs the output of the command as it goes by,
2910 # and dejagnu helpfully prints a second copy of it right afterwards.
2911 # So I turn off expect logging for a moment.
2912 #
2913 # [ gdb_compile $ifile $ciexe_file executable $args ]
2914 # [ remote_exec $ciexe_file ]
2915 # [ source $ci_file.out ]
2916 #
2917 # I could give up on -E and just do this.
2918 # I didn't get desperate enough to try this.
2919 #
2920 # -- chastain 2004-01-06
2921
2922 proc get_compiler_info {{arg ""}} {
2923 # For compiler.c and compiler.cc
2924 global srcdir
2925
2926 # I am going to play with the log to keep noise out.
2927 global outdir
2928 global tool
2929
2930 # These come from compiler.c or compiler.cc
2931 global compiler_info
2932
2933 # Legacy global data symbols.
2934 global gcc_compiled
2935 global hp_cc_compiler
2936 global hp_aCC_compiler
2937
2938 if [info exists compiler_info] {
2939 # Already computed.
2940 return 0
2941 }
2942
2943 # Choose which file to preprocess.
2944 set ifile "${srcdir}/lib/compiler.c"
2945 if { $arg == "c++" } {
2946 set ifile "${srcdir}/lib/compiler.cc"
2947 }
2948
2949 # Run $ifile through the right preprocessor.
2950 # Toggle gdb.log to keep the compiler output out of the log.
2951 set saved_log [log_file -info]
2952 log_file
2953 if [is_remote host] {
2954 # We have to use -E and -o together, despite the comments
2955 # above, because of how DejaGnu handles remote host testing.
2956 set ppout "$outdir/compiler.i"
2957 gdb_compile "${ifile}" "$ppout" preprocess [list "$arg" quiet]
2958 set file [open $ppout r]
2959 set cppout [read $file]
2960 close $file
2961 } else {
2962 set cppout [ gdb_compile "${ifile}" "" preprocess [list "$arg" quiet] ]
2963 }
2964 eval log_file $saved_log
2965
2966 # Eval the output.
2967 set unknown 0
2968 foreach cppline [ split "$cppout" "\n" ] {
2969 if { [ regexp "^#" "$cppline" ] } {
2970 # line marker
2971 } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
2972 # blank line
2973 } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
2974 # eval this line
2975 verbose "get_compiler_info: $cppline" 2
2976 eval "$cppline"
2977 } else {
2978 # unknown line
2979 verbose -log "get_compiler_info: $cppline"
2980 set unknown 1
2981 }
2982 }
2983
2984 # Set to unknown if for some reason compiler_info didn't get defined.
2985 if ![info exists compiler_info] {
2986 verbose -log "get_compiler_info: compiler_info not provided"
2987 set compiler_info "unknown"
2988 }
2989 # Also set to unknown compiler if any diagnostics happened.
2990 if { $unknown } {
2991 verbose -log "get_compiler_info: got unexpected diagnostics"
2992 set compiler_info "unknown"
2993 }
2994
2995 # Set the legacy symbols.
2996 set gcc_compiled 0
2997 set hp_cc_compiler 0
2998 set hp_aCC_compiler 0
2999 if { [regexp "^gcc-1-" "$compiler_info" ] } { set gcc_compiled 1 }
3000 if { [regexp "^gcc-2-" "$compiler_info" ] } { set gcc_compiled 2 }
3001 if { [regexp "^gcc-3-" "$compiler_info" ] } { set gcc_compiled 3 }
3002 if { [regexp "^gcc-4-" "$compiler_info" ] } { set gcc_compiled 4 }
3003 if { [regexp "^gcc-5-" "$compiler_info" ] } { set gcc_compiled 5 }
3004 if { [regexp "^hpcc-" "$compiler_info" ] } { set hp_cc_compiler 1 }
3005 if { [regexp "^hpacc-" "$compiler_info" ] } { set hp_aCC_compiler 1 }
3006
3007 # Log what happened.
3008 verbose -log "get_compiler_info: $compiler_info"
3009
3010 # Most compilers will evaluate comparisons and other boolean
3011 # operations to 0 or 1.
3012 uplevel \#0 { set true 1 }
3013 uplevel \#0 { set false 0 }
3014
3015 # Use of aCC results in boolean results being displayed as
3016 # "true" or "false"
3017 if { $hp_aCC_compiler } {
3018 uplevel \#0 { set true true }
3019 uplevel \#0 { set false false }
3020 }
3021
3022 return 0
3023 }
3024
3025 # Return the compiler_info string if no arg is provided.
3026 # Otherwise the argument is a glob-style expression to match against
3027 # compiler_info.
3028
3029 proc test_compiler_info { {compiler ""} } {
3030 global compiler_info
3031 get_compiler_info
3032
3033 # If no arg, return the compiler_info string.
3034 if [string match "" $compiler] {
3035 return $compiler_info
3036 }
3037
3038 return [string match $compiler $compiler_info]
3039 }
3040
3041 proc current_target_name { } {
3042 global target_info
3043 if [info exists target_info(target,name)] {
3044 set answer $target_info(target,name)
3045 } else {
3046 set answer ""
3047 }
3048 return $answer
3049 }
3050
3051 set gdb_wrapper_initialized 0
3052 set gdb_wrapper_target ""
3053
3054 proc gdb_wrapper_init { args } {
3055 global gdb_wrapper_initialized
3056 global gdb_wrapper_file
3057 global gdb_wrapper_flags
3058 global gdb_wrapper_target
3059
3060 if { $gdb_wrapper_initialized == 1 } { return; }
3061
3062 if {[target_info exists needs_status_wrapper] && \
3063 [target_info needs_status_wrapper] != "0"} {
3064 set result [build_wrapper "testglue.o"]
3065 if { $result != "" } {
3066 set gdb_wrapper_file [lindex $result 0]
3067 set gdb_wrapper_flags [lindex $result 1]
3068 } else {
3069 warning "Status wrapper failed to build."
3070 }
3071 }
3072 set gdb_wrapper_initialized 1
3073 set gdb_wrapper_target [current_target_name]
3074 }
3075
3076 # Some targets need to always link a special object in. Save its path here.
3077 global gdb_saved_set_unbuffered_mode_obj
3078 set gdb_saved_set_unbuffered_mode_obj ""
3079
3080 proc gdb_compile {source dest type options} {
3081 global GDB_TESTCASE_OPTIONS
3082 global gdb_wrapper_file
3083 global gdb_wrapper_flags
3084 global gdb_wrapper_initialized
3085 global srcdir
3086 global objdir
3087 global gdb_saved_set_unbuffered_mode_obj
3088
3089 set outdir [file dirname $dest]
3090
3091 # Add platform-specific options if a shared library was specified using
3092 # "shlib=librarypath" in OPTIONS.
3093 set new_options ""
3094 set shlib_found 0
3095 set shlib_load 0
3096 foreach opt $options {
3097 if [regexp {^shlib=(.*)} $opt dummy_var shlib_name] {
3098 if [test_compiler_info "xlc-*"] {
3099 # IBM xlc compiler doesn't accept shared library named other
3100 # than .so: use "-Wl," to bypass this
3101 lappend source "-Wl,$shlib_name"
3102 } elseif { ([istarget "*-*-mingw*"]
3103 || [istarget *-*-cygwin*]
3104 || [istarget *-*-pe*])} {
3105 lappend source "${shlib_name}.a"
3106 } else {
3107 lappend source $shlib_name
3108 }
3109 if { $shlib_found == 0 } {
3110 set shlib_found 1
3111 if { ([istarget "*-*-mingw*"]
3112 || [istarget *-*-cygwin*]) } {
3113 lappend new_options "additional_flags=-Wl,--enable-auto-import"
3114 }
3115 if { [test_compiler_info "gcc-*"] || [test_compiler_info "clang-*"] } {
3116 # Undo debian's change in the default.
3117 # Put it at the front to not override any user-provided
3118 # value, and to make sure it appears in front of all the
3119 # shlibs!
3120 lappend new_options "early_flags=-Wl,--no-as-needed"
3121 }
3122 }
3123 } elseif { $opt == "shlib_load" } {
3124 set shlib_load 1
3125 } else {
3126 lappend new_options $opt
3127 }
3128 }
3129
3130 # We typically link to shared libraries using an absolute path, and
3131 # that's how they are found at runtime. If we are going to
3132 # dynamically load one by basename, we must specify rpath. If we
3133 # are using a remote host, DejaGNU will link to the shared library
3134 # using a relative path, so again we must specify an rpath.
3135 if { $shlib_load || ($shlib_found && [is_remote target]) } {
3136 if { ([istarget "*-*-mingw*"]
3137 || [istarget *-*-cygwin*]
3138 || [istarget *-*-pe*]
3139 || [istarget hppa*-*-hpux*])} {
3140 # Do not need anything.
3141 } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
3142 lappend new_options "ldflags=-Wl,-rpath,${outdir}"
3143 } elseif { [istarget arm*-*-symbianelf*] } {
3144 if { $shlib_load } {
3145 lappend new_options "libs=-ldl"
3146 }
3147 } else {
3148 if { $shlib_load } {
3149 lappend new_options "libs=-ldl"
3150 }
3151 lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
3152 }
3153 }
3154 set options $new_options
3155
3156 if [info exists GDB_TESTCASE_OPTIONS] {
3157 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS"
3158 }
3159 verbose "options are $options"
3160 verbose "source is $source $dest $type $options"
3161
3162 if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
3163
3164 if {[target_info exists needs_status_wrapper] && \
3165 [target_info needs_status_wrapper] != "0" && \
3166 [info exists gdb_wrapper_file]} {
3167 lappend options "libs=${gdb_wrapper_file}"
3168 lappend options "ldflags=${gdb_wrapper_flags}"
3169 }
3170
3171 # Replace the "nowarnings" option with the appropriate additional_flags
3172 # to disable compiler warnings.
3173 set nowarnings [lsearch -exact $options nowarnings]
3174 if {$nowarnings != -1} {
3175 if [target_info exists gdb,nowarnings_flag] {
3176 set flag "additional_flags=[target_info gdb,nowarnings_flag]"
3177 } else {
3178 set flag "additional_flags=-w"
3179 }
3180 set options [lreplace $options $nowarnings $nowarnings $flag]
3181 }
3182
3183 if { $type == "executable" } {
3184 if { ([istarget "*-*-mingw*"]
3185 || [istarget "*-*-*djgpp"]
3186 || [istarget "*-*-cygwin*"])} {
3187 # Force output to unbuffered mode, by linking in an object file
3188 # with a global contructor that calls setvbuf.
3189 #
3190 # Compile the special object seperatelly for two reasons:
3191 # 1) Insulate it from $options.
3192 # 2) Avoid compiling it for every gdb_compile invocation,
3193 # which is time consuming, especially if we're remote
3194 # host testing.
3195 #
3196 if { $gdb_saved_set_unbuffered_mode_obj == "" } {
3197 verbose "compiling gdb_saved_set_unbuffered_obj"
3198 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
3199 set unbuf_obj ${objdir}/set_unbuffered_mode.o
3200
3201 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
3202 if { $result != "" } {
3203 return $result
3204 }
3205 if {[is_remote host]} {
3206 set gdb_saved_set_unbuffered_mode_obj set_unbuffered_mode_saved.o
3207 } else {
3208 set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
3209 }
3210 # Link a copy of the output object, because the
3211 # original may be automatically deleted.
3212 remote_download host $unbuf_obj $gdb_saved_set_unbuffered_mode_obj
3213 } else {
3214 verbose "gdb_saved_set_unbuffered_obj already compiled"
3215 }
3216
3217 # Rely on the internal knowledge that the global ctors are ran in
3218 # reverse link order. In that case, we can use ldflags to
3219 # avoid copying the object file to the host multiple
3220 # times.
3221 # This object can only be added if standard libraries are
3222 # used. Thus, we need to disable it if -nostdlib option is used
3223 if {[lsearch -regexp $options "-nostdlib"] < 0 } {
3224 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
3225 }
3226 }
3227 }
3228
3229 set result [target_compile $source $dest $type $options]
3230
3231 # Prune uninteresting compiler (and linker) output.
3232 regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
3233
3234 regsub "\[\r\n\]*$" "$result" "" result
3235 regsub "^\[\r\n\]*" "$result" "" result
3236
3237 if {[lsearch $options quiet] < 0} {
3238 # We shall update this on a per language basis, to avoid
3239 # changing the entire testsuite in one go.
3240 if {[lsearch $options f77] >= 0} {
3241 gdb_compile_test $source $result
3242 } elseif { $result != "" } {
3243 clone_output "gdb compile failed, $result"
3244 }
3245 }
3246 return $result
3247 }
3248
3249
3250 # This is just like gdb_compile, above, except that it tries compiling
3251 # against several different thread libraries, to see which one this
3252 # system has.
3253 proc gdb_compile_pthreads {source dest type options} {
3254 set built_binfile 0
3255 set why_msg "unrecognized error"
3256 foreach lib {-lpthreads -lpthread -lthread ""} {
3257 # This kind of wipes out whatever libs the caller may have
3258 # set. Or maybe theirs will override ours. How infelicitous.
3259 set options_with_lib [concat $options [list libs=$lib quiet]]
3260 set ccout [gdb_compile $source $dest $type $options_with_lib]
3261 switch -regexp -- $ccout {
3262 ".*no posix threads support.*" {
3263 set why_msg "missing threads include file"
3264 break
3265 }
3266 ".*cannot open -lpthread.*" {
3267 set why_msg "missing runtime threads library"
3268 }
3269 ".*Can't find library for -lpthread.*" {
3270 set why_msg "missing runtime threads library"
3271 }
3272 {^$} {
3273 pass "successfully compiled posix threads test case"
3274 set built_binfile 1
3275 break
3276 }
3277 }
3278 }
3279 if {!$built_binfile} {
3280 unsupported "Couldn't compile [file tail $source]: ${why_msg}"
3281 return -1
3282 }
3283 }
3284
3285 # Build a shared library from SOURCES.
3286
3287 proc gdb_compile_shlib {sources dest options} {
3288 set obj_options $options
3289
3290 set info_options ""
3291 if { [lsearch -exact $options "c++"] >= 0 } {
3292 set info_options "c++"
3293 }
3294 if [get_compiler_info ${info_options}] {
3295 return -1
3296 }
3297
3298 switch -glob [test_compiler_info] {
3299 "xlc-*" {
3300 lappend obj_options "additional_flags=-qpic"
3301 }
3302 "clang-*" {
3303 if { !([istarget "*-*-cygwin*"]
3304 || [istarget "*-*-mingw*"]) } {
3305 lappend obj_options "additional_flags=-fpic"
3306 }
3307 }
3308 "gcc-*" {
3309 if { !([istarget "powerpc*-*-aix*"]
3310 || [istarget "rs6000*-*-aix*"]
3311 || [istarget "*-*-cygwin*"]
3312 || [istarget "*-*-mingw*"]
3313 || [istarget "*-*-pe*"]) } {
3314 lappend obj_options "additional_flags=-fpic"
3315 }
3316 }
3317 default {
3318 switch -glob [istarget] {
3319 "hppa*-hp-hpux*" {
3320 lappend obj_options "additional_flags=+z"
3321 }
3322 default {
3323 # don't know what the compiler is...
3324 }
3325 }
3326 }
3327 }
3328
3329 set outdir [file dirname $dest]
3330 set objects ""
3331 foreach source $sources {
3332 set sourcebase [file tail $source]
3333 if {[gdb_compile $source "${outdir}/${sourcebase}.o" object $obj_options] != ""} {
3334 return -1
3335 }
3336 lappend objects ${outdir}/${sourcebase}.o
3337 }
3338
3339 if [istarget "hppa*-*-hpux*"] {
3340 remote_exec build "ld -b ${objects} -o ${dest}"
3341 } else {
3342 set link_options $options
3343 if [test_compiler_info "xlc-*"] {
3344 lappend link_options "additional_flags=-qmkshrobj"
3345 } else {
3346 lappend link_options "additional_flags=-shared"
3347
3348 if { ([istarget "*-*-mingw*"]
3349 || [istarget *-*-cygwin*]
3350 || [istarget *-*-pe*]) } {
3351 if { [is_remote host] } {
3352 set name [file tail ${dest}]
3353 } else {
3354 set name ${dest}
3355 }
3356 lappend link_options "additional_flags=-Wl,--out-implib,${name}.a"
3357 } elseif [is_remote target] {
3358 # By default, we do not set the soname. This causes the linker
3359 # on ELF systems to create a DT_NEEDED entry in the executable
3360 # refering to the full path name of the library. This is a
3361 # problem in remote testing if the library is in a different
3362 # directory there. To fix this, we set a soname of just the
3363 # base filename for the library, and add an appropriate -rpath
3364 # to the main executable (in gdb_compile).
3365 set destbase [file tail $dest]
3366 lappend link_options "additional_flags=-Wl,-soname,$destbase"
3367 }
3368 }
3369 if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
3370 return -1
3371 }
3372 if { [is_remote host]
3373 && ([istarget "*-*-mingw*"]
3374 || [istarget *-*-cygwin*]
3375 || [istarget *-*-pe*]) } {
3376 set dest_tail_name [file tail ${dest}]
3377 remote_upload host $dest_tail_name.a ${dest}.a
3378 remote_file host delete $dest_tail_name.a
3379 }
3380 }
3381 return ""
3382 }
3383
3384 # This is just like gdb_compile_shlib, above, except that it tries compiling
3385 # against several different thread libraries, to see which one this
3386 # system has.
3387 proc gdb_compile_shlib_pthreads {sources dest options} {
3388 set built_binfile 0
3389 set why_msg "unrecognized error"
3390 foreach lib {-lpthreads -lpthread -lthread ""} {
3391 # This kind of wipes out whatever libs the caller may have
3392 # set. Or maybe theirs will override ours. How infelicitous.
3393 set options_with_lib [concat $options [list libs=$lib quiet]]
3394 set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
3395 switch -regexp -- $ccout {
3396 ".*no posix threads support.*" {
3397 set why_msg "missing threads include file"
3398 break
3399 }
3400 ".*cannot open -lpthread.*" {
3401 set why_msg "missing runtime threads library"
3402 }
3403 ".*Can't find library for -lpthread.*" {
3404 set why_msg "missing runtime threads library"
3405 }
3406 {^$} {
3407 pass "successfully compiled posix threads test case"
3408 set built_binfile 1
3409 break
3410 }
3411 }
3412 }
3413 if {!$built_binfile} {
3414 unsupported "Couldn't compile $sources: ${why_msg}"
3415 return -1
3416 }
3417 }
3418
3419 # This is just like gdb_compile_pthreads, above, except that we always add the
3420 # objc library for compiling Objective-C programs
3421 proc gdb_compile_objc {source dest type options} {
3422 set built_binfile 0
3423 set why_msg "unrecognized error"
3424 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
3425 # This kind of wipes out whatever libs the caller may have
3426 # set. Or maybe theirs will override ours. How infelicitous.
3427 if { $lib == "solaris" } {
3428 set lib "-lpthread -lposix4"
3429 }
3430 if { $lib != "-lobjc" } {
3431 set lib "-lobjc $lib"
3432 }
3433 set options_with_lib [concat $options [list libs=$lib quiet]]
3434 set ccout [gdb_compile $source $dest $type $options_with_lib]
3435 switch -regexp -- $ccout {
3436 ".*no posix threads support.*" {
3437 set why_msg "missing threads include file"
3438 break
3439 }
3440 ".*cannot open -lpthread.*" {
3441 set why_msg "missing runtime threads library"
3442 }
3443 ".*Can't find library for -lpthread.*" {
3444 set why_msg "missing runtime threads library"
3445 }
3446 {^$} {
3447 pass "successfully compiled objc with posix threads test case"
3448 set built_binfile 1
3449 break
3450 }
3451 }
3452 }
3453 if {!$built_binfile} {
3454 unsupported "Couldn't compile [file tail $source]: ${why_msg}"
3455 return -1
3456 }
3457 }
3458
3459 proc send_gdb { string } {
3460 global suppress_flag
3461 if { $suppress_flag } {
3462 return "suppressed"
3463 }
3464 return [remote_send host "$string"]
3465 }
3466
3467 # Send STRING to the inferior's terminal.
3468
3469 proc send_inferior { string } {
3470 global inferior_spawn_id
3471
3472 if {[catch "send -i $inferior_spawn_id -- \$string" errorInfo]} {
3473 return "$errorInfo"
3474 } else {
3475 return ""
3476 }
3477 }
3478
3479 #
3480 #
3481
3482 proc gdb_expect { args } {
3483 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
3484 set atimeout [lindex $args 0]
3485 set expcode [list [lindex $args 1]]
3486 } else {
3487 set expcode $args
3488 }
3489
3490 # A timeout argument takes precedence, otherwise of all the timeouts
3491 # select the largest.
3492 if [info exists atimeout] {
3493 set tmt $atimeout
3494 } else {
3495 set tmt [get_largest_timeout]
3496 }
3497
3498 global suppress_flag
3499 global remote_suppress_flag
3500 if [info exists remote_suppress_flag] {
3501 set old_val $remote_suppress_flag
3502 }
3503 if [info exists suppress_flag] {
3504 if { $suppress_flag } {
3505 set remote_suppress_flag 1
3506 }
3507 }
3508 set code [catch \
3509 {uplevel remote_expect host $tmt $expcode} string]
3510 if [info exists old_val] {
3511 set remote_suppress_flag $old_val
3512 } else {
3513 if [info exists remote_suppress_flag] {
3514 unset remote_suppress_flag
3515 }
3516 }
3517
3518 if {$code == 1} {
3519 global errorInfo errorCode
3520
3521 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
3522 } else {
3523 return -code $code $string
3524 }
3525 }
3526
3527 # gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
3528 #
3529 # Check for long sequence of output by parts.
3530 # TEST: is the test message to be printed with the test success/fail.
3531 # SENTINEL: Is the terminal pattern indicating that output has finished.
3532 # LIST: is the sequence of outputs to match.
3533 # If the sentinel is recognized early, it is considered an error.
3534 #
3535 # Returns:
3536 # 1 if the test failed,
3537 # 0 if the test passes,
3538 # -1 if there was an internal error.
3539
3540 proc gdb_expect_list {test sentinel list} {
3541 global gdb_prompt
3542 global suppress_flag
3543 set index 0
3544 set ok 1
3545 if { $suppress_flag } {
3546 set ok 0
3547 unresolved "${test}"
3548 }
3549 while { ${index} < [llength ${list}] } {
3550 set pattern [lindex ${list} ${index}]
3551 set index [expr ${index} + 1]
3552 verbose -log "gdb_expect_list pattern: /$pattern/" 2
3553 if { ${index} == [llength ${list}] } {
3554 if { ${ok} } {
3555 gdb_expect {
3556 -re "${pattern}${sentinel}" {
3557 # pass "${test}, pattern ${index} + sentinel"
3558 }
3559 -re "${sentinel}" {
3560 fail "${test} (pattern ${index} + sentinel)"
3561 set ok 0
3562 }
3563 -re ".*A problem internal to GDB has been detected" {
3564 fail "${test} (GDB internal error)"
3565 set ok 0
3566 gdb_internal_error_resync
3567 }
3568 timeout {
3569 fail "${test} (pattern ${index} + sentinel) (timeout)"
3570 set ok 0
3571 }
3572 }
3573 } else {
3574 # unresolved "${test}, pattern ${index} + sentinel"
3575 }
3576 } else {
3577 if { ${ok} } {
3578 gdb_expect {
3579 -re "${pattern}" {
3580 # pass "${test}, pattern ${index}"
3581 }
3582 -re "${sentinel}" {
3583 fail "${test} (pattern ${index})"
3584 set ok 0
3585 }
3586 -re ".*A problem internal to GDB has been detected" {
3587 fail "${test} (GDB internal error)"
3588 set ok 0
3589 gdb_internal_error_resync
3590 }
3591 timeout {
3592 fail "${test} (pattern ${index}) (timeout)"
3593 set ok 0
3594 }
3595 }
3596 } else {
3597 # unresolved "${test}, pattern ${index}"
3598 }
3599 }
3600 }
3601 if { ${ok} } {
3602 pass "${test}"
3603 return 0
3604 } else {
3605 return 1
3606 }
3607 }
3608
3609 #
3610 #
3611 proc gdb_suppress_entire_file { reason } {
3612 global suppress_flag
3613
3614 warning "$reason\n"
3615 set suppress_flag -1
3616 }
3617
3618 #
3619 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
3620 # gdb_expect to fail immediately (until the next call to
3621 # gdb_stop_suppressing_tests).
3622 #
3623 proc gdb_suppress_tests { args } {
3624 global suppress_flag
3625
3626 return; # fnf - disable pending review of results where
3627 # testsuite ran better without this
3628 incr suppress_flag
3629
3630 if { $suppress_flag == 1 } {
3631 if { [llength $args] > 0 } {
3632 warning "[lindex $args 0]\n"
3633 } else {
3634 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n"
3635 }
3636 }
3637 }
3638
3639 #
3640 # Clear suppress_flag.
3641 #
3642 proc gdb_stop_suppressing_tests { } {
3643 global suppress_flag
3644
3645 if [info exists suppress_flag] {
3646 if { $suppress_flag > 0 } {
3647 set suppress_flag 0
3648 clone_output "Tests restarted.\n"
3649 }
3650 } else {
3651 set suppress_flag 0
3652 }
3653 }
3654
3655 proc gdb_clear_suppressed { } {
3656 global suppress_flag
3657
3658 set suppress_flag 0
3659 }
3660
3661 # Spawn the gdb process.
3662 #
3663 # This doesn't expect any output or do any other initialization,
3664 # leaving those to the caller.
3665 #
3666 # Overridable function -- you can override this function in your
3667 # baseboard file.
3668
3669 proc gdb_spawn { } {
3670 default_gdb_spawn
3671 }
3672
3673 # Spawn GDB with CMDLINE_FLAGS appended to the GDBFLAGS global.
3674
3675 proc gdb_spawn_with_cmdline_opts { cmdline_flags } {
3676 global GDBFLAGS
3677
3678 set saved_gdbflags $GDBFLAGS
3679
3680 if {$GDBFLAGS != ""} {
3681 append GDBFLAGS " "
3682 }
3683 append GDBFLAGS $cmdline_flags
3684
3685 set res [gdb_spawn]
3686
3687 set GDBFLAGS $saved_gdbflags
3688
3689 return $res
3690 }
3691
3692 # Start gdb running, wait for prompt, and disable the pagers.
3693
3694 # Overridable function -- you can override this function in your
3695 # baseboard file.
3696
3697 proc gdb_start { } {
3698 default_gdb_start
3699 }
3700
3701 proc gdb_exit { } {
3702 catch default_gdb_exit
3703 }
3704
3705 # Return true if we can spawn a program on the target and attach to
3706 # it.
3707
3708 proc can_spawn_for_attach { } {
3709 # We use TCL's exec to get the inferior's pid.
3710 if [is_remote target] then {
3711 return 0
3712 }
3713
3714 # The "attach" command doesn't make sense when the target is
3715 # stub-like, where GDB finds the program already started on
3716 # initial connection.
3717 if {[target_info exists use_gdb_stub]} {
3718 return 0
3719 }
3720
3721 # Assume yes.
3722 return 1
3723 }
3724
3725 # Start a set of programs running and then wait for a bit, to be sure
3726 # that they can be attached to. Return a list of the processes' PIDs.
3727 # It's a test error to call this when [can_spawn_for_attach] is false.
3728
3729 proc spawn_wait_for_attach { executable_list } {
3730 set pid_list {}
3731
3732 if ![can_spawn_for_attach] {
3733 # The caller should have checked can_spawn_for_attach itself
3734 # before getting here.
3735 error "can't spawn for attach with this target/board"
3736 }
3737
3738 foreach {executable} $executable_list {
3739 lappend pid_list [eval exec $executable &]
3740 }
3741
3742 sleep 2
3743
3744 if { [istarget "*-*-cygwin*"] } {
3745 for {set i 0} {$i < [llength $pid_list]} {incr i} {
3746 # testpid is the Cygwin PID, GDB uses the Windows PID,
3747 # which might be different due to the way fork/exec works.
3748 set testpid [lindex $pid_list $i]
3749 set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
3750 set pid_list [lreplace $pid_list $i $i $testpid]
3751 }
3752 }
3753
3754 return $pid_list
3755 }
3756
3757 #
3758 # gdb_load_cmd -- load a file into the debugger.
3759 # ARGS - additional args to load command.
3760 # return a -1 if anything goes wrong.
3761 #
3762 proc gdb_load_cmd { args } {
3763 global gdb_prompt
3764
3765 if [target_info exists gdb_load_timeout] {
3766 set loadtimeout [target_info gdb_load_timeout]
3767 } else {
3768 set loadtimeout 1600
3769 }
3770 send_gdb "load $args\n"
3771 verbose "Timeout is now $loadtimeout seconds" 2
3772 gdb_expect $loadtimeout {
3773 -re "Loading section\[^\r\]*\r\n" {
3774 exp_continue
3775 }
3776 -re "Start address\[\r\]*\r\n" {
3777 exp_continue
3778 }
3779 -re "Transfer rate\[\r\]*\r\n" {
3780 exp_continue
3781 }
3782 -re "Memory access error\[^\r\]*\r\n" {
3783 perror "Failed to load program"
3784 return -1
3785 }
3786 -re "$gdb_prompt $" {
3787 return 0
3788 }
3789 -re "(.*)\r\n$gdb_prompt " {
3790 perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
3791 return -1
3792 }
3793 timeout {
3794 perror "Timed out trying to load $args."
3795 return -1
3796 }
3797 }
3798 return -1
3799 }
3800
3801 # Invoke "gcore". CORE is the name of the core file to write. TEST
3802 # is the name of the test case. This will return 1 if the core file
3803 # was created, 0 otherwise. If this fails to make a core file because
3804 # this configuration of gdb does not support making core files, it
3805 # will call "unsupported", not "fail". However, if this fails to make
3806 # a core file for some other reason, then it will call "fail".
3807
3808 proc gdb_gcore_cmd {core test} {
3809 global gdb_prompt
3810
3811 set result 0
3812 gdb_test_multiple "gcore $core" $test {
3813 -re "Saved corefile .*\[\r\n\]+$gdb_prompt $" {
3814 pass $test
3815 set result 1
3816 }
3817 -re "(?:Can't create a corefile|Target does not support core file generation\\.)\[\r\n\]+$gdb_prompt $" {
3818 unsupported $test
3819 }
3820 }
3821
3822 return $result
3823 }
3824
3825 # Load core file CORE. TEST is the name of the test case.
3826 # This will record a pass/fail for loading the core file.
3827 # Returns:
3828 # 1 - core file is successfully loaded
3829 # 0 - core file loaded but has a non fatal error
3830 # -1 - core file failed to load
3831
3832 proc gdb_core_cmd { core test } {
3833 global gdb_prompt
3834
3835 gdb_test_multiple "core $core" "$test" {
3836 -re "\\\[Thread debugging using \[^ \r\n\]* enabled\\\]\r\n" {
3837 exp_continue
3838 }
3839 -re " is not a core dump:.*\r\n$gdb_prompt $" {
3840 fail "$test (bad file format)"
3841 return -1
3842 }
3843 -re ": No such file or directory.*\r\n$gdb_prompt $" {
3844 fail "$test (file not found)"
3845 return -1
3846 }
3847 -re "Couldn't find .* registers in core file.*\r\n$gdb_prompt $" {
3848 fail "$test (incomplete note section)"
3849 return 0
3850 }
3851 -re "Core was generated by .*\r\n$gdb_prompt $" {
3852 pass "$test"
3853 return 1
3854 }
3855 -re ".*$gdb_prompt $" {
3856 fail "$test"
3857 return -1
3858 }
3859 timeout {
3860 fail "$test (timeout)"
3861 return -1
3862 }
3863 }
3864 fail "unsupported output from 'core' command"
3865 return -1
3866 }
3867
3868 # Return the filename to download to the target and load on the target
3869 # for this shared library. Normally just LIBNAME, unless shared libraries
3870 # for this target have separate link and load images.
3871
3872 proc shlib_target_file { libname } {
3873 return $libname
3874 }
3875
3876 # Return the filename GDB will load symbols from when debugging this
3877 # shared library. Normally just LIBNAME, unless shared libraries for
3878 # this target have separate link and load images.
3879
3880 proc shlib_symbol_file { libname } {
3881 return $libname
3882 }
3883
3884 # Return the filename to download to the target and load for this
3885 # executable. Normally just BINFILE unless it is renamed to something
3886 # else for this target.
3887
3888 proc exec_target_file { binfile } {
3889 return $binfile
3890 }
3891
3892 # Return the filename GDB will load symbols from when debugging this
3893 # executable. Normally just BINFILE unless executables for this target
3894 # have separate files for symbols.
3895
3896 proc exec_symbol_file { binfile } {
3897 return $binfile
3898 }
3899
3900 # Rename the executable file. Normally this is just BINFILE1 being renamed
3901 # to BINFILE2, but some targets require multiple binary files.
3902 proc gdb_rename_execfile { binfile1 binfile2 } {
3903 file rename -force [exec_target_file ${binfile1}] \
3904 [exec_target_file ${binfile2}]
3905 if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
3906 file rename -force [exec_symbol_file ${binfile1}] \
3907 [exec_symbol_file ${binfile2}]
3908 }
3909 }
3910
3911 # "Touch" the executable file to update the date. Normally this is just
3912 # BINFILE, but some targets require multiple files.
3913 proc gdb_touch_execfile { binfile } {
3914 set time [clock seconds]
3915 file mtime [exec_target_file ${binfile}] $time
3916 if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
3917 file mtime [exec_symbol_file ${binfile}] $time
3918 }
3919 }
3920
3921 # Like remote_download but provides a gdb-specific behavior. If DEST
3922 # is "host", and the host is not remote, and TOFILE is not specified,
3923 # then the [file tail] of FROMFILE is passed through
3924 # standard_output_file to compute the destination.
3925
3926 proc gdb_remote_download {dest fromfile {tofile {}}} {
3927 if {$dest == "host" && ![is_remote host] && $tofile == ""} {
3928 set tofile [standard_output_file [file tail $fromfile]]
3929 }
3930
3931 if { $tofile == "" } {
3932 return [remote_download $dest $fromfile]
3933 } else {
3934 return [remote_download $dest $fromfile $tofile]
3935 }
3936 }
3937
3938 # gdb_download
3939 #
3940 # Copy a file to the remote target and return its target filename.
3941 # Schedule the file to be deleted at the end of this test.
3942
3943 proc gdb_download { filename } {
3944 global cleanfiles
3945
3946 set destname [remote_download target $filename]
3947 lappend cleanfiles $destname
3948 return $destname
3949 }
3950
3951 # gdb_load_shlibs LIB...
3952 #
3953 # Copy the listed libraries to the target.
3954
3955 proc gdb_load_shlibs { args } {
3956 if {![is_remote target]} {
3957 return
3958 }
3959
3960 foreach file $args {
3961 gdb_download [shlib_target_file $file]
3962 }
3963
3964 # Even if the target supplies full paths for shared libraries,
3965 # they may not be paths for this system.
3966 gdb_test "set solib-search-path [file dirname [lindex $args 0]]" "" ""
3967 }
3968
3969 #
3970 # gdb_load -- load a file into the debugger. Specifying no file
3971 # defaults to the executable currently being debugged.
3972 # The return value is 0 for success, -1 for failure.
3973 # Many files in config/*.exp override this procedure.
3974 #
3975 proc gdb_load { arg } {
3976 if { $arg != "" } {
3977 return [gdb_file_cmd $arg]
3978 }
3979 return 0
3980 }
3981
3982 # gdb_reload -- load a file into the target. Called before "running",
3983 # either the first time or after already starting the program once,
3984 # for remote targets. Most files that override gdb_load should now
3985 # override this instead.
3986
3987 proc gdb_reload { } {
3988 # For the benefit of existing configurations, default to gdb_load.
3989 # Specifying no file defaults to the executable currently being
3990 # debugged.
3991 return [gdb_load ""]
3992 }
3993
3994 proc gdb_continue { function } {
3995 global decimal
3996
3997 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"]
3998 }
3999
4000 proc default_gdb_init { test_file_name } {
4001 global gdb_wrapper_initialized
4002 global gdb_wrapper_target
4003 global gdb_test_file_name
4004 global cleanfiles
4005 global pf_prefix
4006
4007 set cleanfiles {}
4008
4009 gdb_clear_suppressed
4010
4011 set gdb_test_file_name [file rootname [file tail $test_file_name]]
4012
4013 # Make sure that the wrapper is rebuilt
4014 # with the appropriate multilib option.
4015 if { $gdb_wrapper_target != [current_target_name] } {
4016 set gdb_wrapper_initialized 0
4017 }
4018
4019 # Unlike most tests, we have a small number of tests that generate
4020 # a very large amount of output. We therefore increase the expect
4021 # buffer size to be able to contain the entire test output. This
4022 # is especially needed by gdb.base/info-macros.exp.
4023 match_max -d 65536
4024 # Also set this value for the currently running GDB.
4025 match_max [match_max -d]
4026
4027 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
4028 set pf_prefix "[file tail [file dirname $test_file_name]]/[file tail $test_file_name]:"
4029
4030 global gdb_prompt
4031 if [target_info exists gdb_prompt] {
4032 set gdb_prompt [target_info gdb_prompt]
4033 } else {
4034 set gdb_prompt "\\(gdb\\)"
4035 }
4036 global use_gdb_stub
4037 if [info exists use_gdb_stub] {
4038 unset use_gdb_stub
4039 }
4040 }
4041
4042 # Turn BASENAME into a full file name in the standard output
4043 # directory. It is ok if BASENAME is the empty string; in this case
4044 # the directory is returned.
4045
4046 proc standard_output_file {basename} {
4047 global objdir subdir gdb_test_file_name GDB_PARALLEL
4048
4049 if {[info exists GDB_PARALLEL]} {
4050 set dir [file join $objdir outputs $subdir $gdb_test_file_name]
4051 file mkdir $dir
4052 return [file join $dir $basename]
4053 } else {
4054 return [file join $objdir $subdir $basename]
4055 }
4056 }
4057
4058 # Return the name of a file in our standard temporary directory.
4059
4060 proc standard_temp_file {basename} {
4061 global objdir GDB_PARALLEL
4062
4063 if {[info exists GDB_PARALLEL]} {
4064 return [file join $objdir temp $basename]
4065 } else {
4066 return $basename
4067 }
4068 }
4069
4070 # Set 'testfile', 'srcfile', and 'binfile'.
4071 #
4072 # ARGS is a list of source file specifications.
4073 # Without any arguments, the .exp file's base name is used to
4074 # compute the source file name. The ".c" extension is added in this case.
4075 # If ARGS is not empty, each entry is a source file specification.
4076 # If the specification starts with a ".", it is treated as a suffix
4077 # to append to the .exp file's base name.
4078 # If the specification is the empty string, it is treated as if it
4079 # were ".c".
4080 # Otherwise it is a file name.
4081 # The first file in the list is used to set the 'srcfile' global.
4082 # Each subsequent name is used to set 'srcfile2', 'srcfile3', etc.
4083 #
4084 # Most tests should call this without arguments.
4085 #
4086 # If a completely different binary file name is needed, then it
4087 # should be handled in the .exp file with a suitable comment.
4088
4089 proc standard_testfile {args} {
4090 global gdb_test_file_name
4091 global subdir
4092 global gdb_test_file_last_vars
4093
4094 # Outputs.
4095 global testfile binfile
4096
4097 set testfile $gdb_test_file_name
4098 set binfile [standard_output_file ${testfile}]
4099
4100 if {[llength $args] == 0} {
4101 set args .c
4102 }
4103
4104 # Unset our previous output variables.
4105 # This can help catch hidden bugs.
4106 if {[info exists gdb_test_file_last_vars]} {
4107 foreach varname $gdb_test_file_last_vars {
4108 global $varname
4109 catch {unset $varname}
4110 }
4111 }
4112 # 'executable' is often set by tests.
4113 set gdb_test_file_last_vars {executable}
4114
4115 set suffix ""
4116 foreach arg $args {
4117 set varname srcfile$suffix
4118 global $varname
4119
4120 # Handle an extension.
4121 if {$arg == ""} {
4122 set arg $testfile.c
4123 } elseif {[string range $arg 0 0] == "."} {
4124 set arg $testfile$arg
4125 }
4126
4127 set $varname $arg
4128 lappend gdb_test_file_last_vars $varname
4129
4130 if {$suffix == ""} {
4131 set suffix 2
4132 } else {
4133 incr suffix
4134 }
4135 }
4136 }
4137
4138 # The default timeout used when testing GDB commands. We want to use
4139 # the same timeout as the default dejagnu timeout, unless the user has
4140 # already provided a specific value (probably through a site.exp file).
4141 global gdb_test_timeout
4142 if ![info exists gdb_test_timeout] {
4143 set gdb_test_timeout $timeout
4144 }
4145
4146 # A list of global variables that GDB testcases should not use.
4147 # We try to prevent their use by monitoring write accesses and raising
4148 # an error when that happens.
4149 set banned_variables { bug_id prms_id }
4150
4151 # A list of procedures that GDB testcases should not use.
4152 # We try to prevent their use by monitoring invocations and raising
4153 # an error when that happens.
4154 set banned_procedures { strace }
4155
4156 # gdb_init is called by runtest at start, but also by several
4157 # tests directly; gdb_finish is only called from within runtest after
4158 # each test source execution.
4159 # Placing several traces by repetitive calls to gdb_init leads
4160 # to problems, as only one trace is removed in gdb_finish.
4161 # To overcome this possible problem, we add a variable that records
4162 # if the banned variables and procedures are already traced.
4163 set banned_traced 0
4164
4165 proc gdb_init { test_file_name } {
4166 # Reset the timeout value to the default. This way, any testcase
4167 # that changes the timeout value without resetting it cannot affect
4168 # the timeout used in subsequent testcases.
4169 global gdb_test_timeout
4170 global timeout
4171 set timeout $gdb_test_timeout
4172
4173 if { [regexp ".*gdb\.reverse\/.*" $test_file_name]
4174 && [target_info exists gdb_reverse_timeout] } {
4175 set timeout [target_info gdb_reverse_timeout]
4176 }
4177
4178 # If GDB_INOTIFY is given, check for writes to '.'. This is a
4179 # debugging tool to help confirm that the test suite is
4180 # parallel-safe. You need "inotifywait" from the
4181 # inotify-tools package to use this.
4182 global GDB_INOTIFY inotify_pid
4183 if {[info exists GDB_INOTIFY] && ![info exists inotify_pid]} {
4184 global outdir tool inotify_log_file
4185
4186 set exclusions {outputs temp gdb[.](log|sum) cache}
4187 set exclusion_re ([join $exclusions |])
4188
4189 set inotify_log_file [standard_temp_file inotify.out]
4190 set inotify_pid [exec inotifywait -r -m -e move,create,delete . \
4191 --exclude $exclusion_re \
4192 |& tee -a $outdir/$tool.log $inotify_log_file &]
4193
4194 # Wait for the watches; hopefully this is long enough.
4195 sleep 2
4196
4197 # Clear the log so that we don't emit a warning the first time
4198 # we check it.
4199 set fd [open $inotify_log_file w]
4200 close $fd
4201 }
4202
4203 # Block writes to all banned variables, and invocation of all
4204 # banned procedures...
4205 global banned_variables
4206 global banned_procedures
4207 global banned_traced
4208 if (!$banned_traced) {
4209 foreach banned_var $banned_variables {
4210 global "$banned_var"
4211 trace add variable "$banned_var" write error
4212 }
4213 foreach banned_proc $banned_procedures {
4214 global "$banned_proc"
4215 trace add execution "$banned_proc" enter error
4216 }
4217 set banned_traced 1
4218 }
4219
4220 # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
4221 # messages as expected.
4222 setenv LC_ALL C
4223 setenv LC_CTYPE C
4224 setenv LANG C
4225
4226 # Don't let a .inputrc file or an existing setting of INPUTRC mess up
4227 # the test results. Even if /dev/null doesn't exist on the particular
4228 # platform, the readline library will use the default setting just by
4229 # failing to open the file. OTOH, opening /dev/null successfully will
4230 # also result in the default settings being used since nothing will be
4231 # read from this file.
4232 setenv INPUTRC "/dev/null"
4233
4234 # The gdb.base/readline.exp arrow key test relies on the standard VT100
4235 # bindings, so make sure that an appropriate terminal is selected.
4236 # The same bug doesn't show up if we use ^P / ^N instead.
4237 setenv TERM "vt100"
4238
4239 # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
4240 # grep. Clear GREP_OPTIONS to make the behavior predictable,
4241 # especially having color output turned on can cause tests to fail.
4242 setenv GREP_OPTIONS ""
4243
4244 # Clear $gdbserver_reconnect_p.
4245 global gdbserver_reconnect_p
4246 set gdbserver_reconnect_p 1
4247 unset gdbserver_reconnect_p
4248
4249 return [default_gdb_init $test_file_name]
4250 }
4251
4252 proc gdb_finish { } {
4253 global gdbserver_reconnect_p
4254 global gdb_prompt
4255 global cleanfiles
4256
4257 # Exit first, so that the files are no longer in use.
4258 gdb_exit
4259
4260 if { [llength $cleanfiles] > 0 } {
4261 eval remote_file target delete $cleanfiles
4262 set cleanfiles {}
4263 }
4264
4265 # Unblock write access to the banned variables. Dejagnu typically
4266 # resets some of them between testcases.
4267 global banned_variables
4268 global banned_procedures
4269 global banned_traced
4270 if ($banned_traced) {
4271 foreach banned_var $banned_variables {
4272 global "$banned_var"
4273 trace remove variable "$banned_var" write error
4274 }
4275 foreach banned_proc $banned_procedures {
4276 global "$banned_proc"
4277 trace remove execution "$banned_proc" enter error
4278 }
4279 set banned_traced 0
4280 }
4281 }
4282
4283 global debug_format
4284 set debug_format "unknown"
4285
4286 # Run the gdb command "info source" and extract the debugging format
4287 # information from the output and save it in debug_format.
4288
4289 proc get_debug_format { } {
4290 global gdb_prompt
4291 global verbose
4292 global expect_out
4293 global debug_format
4294
4295 set debug_format "unknown"
4296 send_gdb "info source\n"
4297 gdb_expect 10 {
4298 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
4299 set debug_format $expect_out(1,string)
4300 verbose "debug format is $debug_format"
4301 return 1
4302 }
4303 -re "No current source file.\r\n$gdb_prompt $" {
4304 perror "get_debug_format used when no current source file"
4305 return 0
4306 }
4307 -re "$gdb_prompt $" {
4308 warning "couldn't check debug format (no valid response)."
4309 return 1
4310 }
4311 timeout {
4312 warning "couldn't check debug format (timeout)."
4313 return 1
4314 }
4315 }
4316 }
4317
4318 # Return true if FORMAT matches the debug format the current test was
4319 # compiled with. FORMAT is a shell-style globbing pattern; it can use
4320 # `*', `[...]', and so on.
4321 #
4322 # This function depends on variables set by `get_debug_format', above.
4323
4324 proc test_debug_format {format} {
4325 global debug_format
4326
4327 return [expr [string match $format $debug_format] != 0]
4328 }
4329
4330 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
4331 # COFF, stabs, etc). If that format matches the format that the
4332 # current test was compiled with, then the next test is expected to
4333 # fail for any target. Returns 1 if the next test or set of tests is
4334 # expected to fail, 0 otherwise (or if it is unknown). Must have
4335 # previously called get_debug_format.
4336 proc setup_xfail_format { format } {
4337 set ret [test_debug_format $format]
4338
4339 if {$ret} then {
4340 setup_xfail "*-*-*"
4341 }
4342 return $ret
4343 }
4344
4345 # gdb_get_line_number TEXT [FILE]
4346 #
4347 # Search the source file FILE, and return the line number of the
4348 # first line containing TEXT. If no match is found, an error is thrown.
4349 #
4350 # TEXT is a string literal, not a regular expression.
4351 #
4352 # The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
4353 # specified, and does not start with "/", then it is assumed to be in
4354 # "$srcdir/$subdir". This is awkward, and can be fixed in the future,
4355 # by changing the callers and the interface at the same time.
4356 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
4357 # gdb.base/ena-dis-br.exp.
4358 #
4359 # Use this function to keep your test scripts independent of the
4360 # exact line numbering of the source file. Don't write:
4361 #
4362 # send_gdb "break 20"
4363 #
4364 # This means that if anyone ever edits your test's source file,
4365 # your test could break. Instead, put a comment like this on the
4366 # source file line you want to break at:
4367 #
4368 # /* breakpoint spot: frotz.exp: test name */
4369 #
4370 # and then write, in your test script (which we assume is named
4371 # frotz.exp):
4372 #
4373 # send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
4374 #
4375 # (Yes, Tcl knows how to handle the nested quotes and brackets.
4376 # Try this:
4377 # $ tclsh
4378 # % puts "foo [lindex "bar baz" 1]"
4379 # foo baz
4380 # %
4381 # Tcl is quite clever, for a little stringy language.)
4382 #
4383 # ===
4384 #
4385 # The previous implementation of this procedure used the gdb search command.
4386 # This version is different:
4387 #
4388 # . It works with MI, and it also works when gdb is not running.
4389 #
4390 # . It operates on the build machine, not the host machine.
4391 #
4392 # . For now, this implementation fakes a current directory of
4393 # $srcdir/$subdir to be compatible with the old implementation.
4394 # This will go away eventually and some callers will need to
4395 # be changed.
4396 #
4397 # . The TEXT argument is literal text and matches literally,
4398 # not a regular expression as it was before.
4399 #
4400 # . State changes in gdb, such as changing the current file
4401 # and setting $_, no longer happen.
4402 #
4403 # After a bit of time we can forget about the differences from the
4404 # old implementation.
4405 #
4406 # --chastain 2004-08-05
4407
4408 proc gdb_get_line_number { text { file "" } } {
4409 global srcdir
4410 global subdir
4411 global srcfile
4412
4413 if { "$file" == "" } then {
4414 set file "$srcfile"
4415 }
4416 if { ! [regexp "^/" "$file"] } then {
4417 set file "$srcdir/$subdir/$file"
4418 }
4419
4420 if { [ catch { set fd [open "$file"] } message ] } then {
4421 error "$message"
4422 }
4423
4424 set found -1
4425 for { set line 1 } { 1 } { incr line } {
4426 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
4427 error "$message"
4428 }
4429 if { $nchar < 0 } then {
4430 break
4431 }
4432 if { [string first "$text" "$body"] >= 0 } then {
4433 set found $line
4434 break
4435 }
4436 }
4437
4438 if { [ catch { close "$fd" } message ] } then {
4439 error "$message"
4440 }
4441
4442 if {$found == -1} {
4443 error "undefined tag \"$text\""
4444 }
4445
4446 return $found
4447 }
4448
4449 # Continue the program until it ends.
4450 #
4451 # MSSG is the error message that gets printed. If not given, a
4452 # default is used.
4453 # COMMAND is the command to invoke. If not given, "continue" is
4454 # used.
4455 # ALLOW_EXTRA is a flag indicating whether the test should expect
4456 # extra output between the "Continuing." line and the program
4457 # exiting. By default it is zero; if nonzero, any extra output
4458 # is accepted.
4459
4460 proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
4461 global inferior_exited_re use_gdb_stub
4462
4463 if {$mssg == ""} {
4464 set text "continue until exit"
4465 } else {
4466 set text "continue until exit at $mssg"
4467 }
4468 if {$allow_extra} {
4469 set extra ".*"
4470 } else {
4471 set extra ""
4472 }
4473
4474 # By default, we don't rely on exit() behavior of remote stubs --
4475 # it's common for exit() to be implemented as a simple infinite
4476 # loop, or a forced crash/reset. For native targets, by default, we
4477 # assume process exit is reported as such. If a non-reliable target
4478 # is used, we set a breakpoint at exit, and continue to that.
4479 if { [target_info exists exit_is_reliable] } {
4480 set exit_is_reliable [target_info exit_is_reliable]
4481 } else {
4482 set exit_is_reliable [expr ! $use_gdb_stub]
4483 }
4484
4485 if { ! $exit_is_reliable } {
4486 if {![gdb_breakpoint "exit"]} {
4487 return 0
4488 }
4489 gdb_test $command "Continuing..*Breakpoint .*exit.*" \
4490 $text
4491 } else {
4492 # Continue until we exit. Should not stop again.
4493 # Don't bother to check the output of the program, that may be
4494 # extremely tough for some remote systems.
4495 gdb_test $command \
4496 "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
4497 $text
4498 }
4499 }
4500
4501 proc rerun_to_main {} {
4502 global gdb_prompt use_gdb_stub
4503
4504 if $use_gdb_stub {
4505 gdb_run_cmd
4506 gdb_expect {
4507 -re ".*Breakpoint .*main .*$gdb_prompt $"\
4508 {pass "rerun to main" ; return 0}
4509 -re "$gdb_prompt $"\
4510 {fail "rerun to main" ; return 0}
4511 timeout {fail "(timeout) rerun to main" ; return 0}
4512 }
4513 } else {
4514 send_gdb "run\n"
4515 gdb_expect {
4516 -re "The program .* has been started already.*y or n. $" {
4517 send_gdb "y\n"
4518 exp_continue
4519 }
4520 -re "Starting program.*$gdb_prompt $"\
4521 {pass "rerun to main" ; return 0}
4522 -re "$gdb_prompt $"\
4523 {fail "rerun to main" ; return 0}
4524 timeout {fail "(timeout) rerun to main" ; return 0}
4525 }
4526 }
4527 }
4528
4529 # Print a message and return true if a test should be skipped
4530 # due to lack of floating point suport.
4531
4532 proc gdb_skip_float_test { msg } {
4533 if [target_info exists gdb,skip_float_tests] {
4534 verbose "Skipping test '$msg': no float tests."
4535 return 1
4536 }
4537 return 0
4538 }
4539
4540 # Print a message and return true if a test should be skipped
4541 # due to lack of stdio support.
4542
4543 proc gdb_skip_stdio_test { msg } {
4544 if [target_info exists gdb,noinferiorio] {
4545 verbose "Skipping test '$msg': no inferior i/o."
4546 return 1
4547 }
4548 return 0
4549 }
4550
4551 proc gdb_skip_bogus_test { msg } {
4552 return 0
4553 }
4554
4555 # Return true if a test should be skipped due to lack of XML support
4556 # in the host GDB.
4557 # NOTE: This must be called while gdb is *not* running.
4558
4559 gdb_caching_proc gdb_skip_xml_test {
4560 global gdb_prompt
4561 global srcdir
4562
4563 set xml_file [gdb_remote_download host "${srcdir}/gdb.xml/trivial.xml"]
4564
4565 gdb_start
4566 set xml_missing 0
4567 gdb_test_multiple "set tdesc filename $xml_file" "" {
4568 -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
4569 set xml_missing 1
4570 }
4571 -re ".*$gdb_prompt $" { }
4572 }
4573 gdb_exit
4574 return $xml_missing
4575 }
4576
4577 # Return true if argv[0] is available.
4578
4579 gdb_caching_proc gdb_has_argv0 {
4580 set result 0
4581
4582 # Set up, compile, and execute a test program to check whether
4583 # argv[0] is available.
4584 set src [standard_temp_file has_argv0[pid].c]
4585 set exe [standard_temp_file has_argv0[pid].x]
4586
4587 gdb_produce_source $src {
4588 int main (int argc, char **argv) {
4589 return 0;
4590 }
4591 }
4592
4593 gdb_compile $src $exe executable {debug}
4594
4595 # Helper proc.
4596 proc gdb_has_argv0_1 { exe } {
4597 global srcdir subdir
4598 global gdb_prompt hex
4599
4600 gdb_exit
4601 gdb_start
4602 gdb_reinitialize_dir $srcdir/$subdir
4603 gdb_load "$exe"
4604
4605 # Set breakpoint on main.
4606 gdb_test_multiple "break main" "break main" {
4607 -re "Breakpoint.*${gdb_prompt} $" {
4608 }
4609 -re "${gdb_prompt} $" {
4610 return 0
4611 }
4612 }
4613
4614 # Run to main.
4615 gdb_run_cmd
4616 gdb_test_multiple "" "run to main" {
4617 -re "Breakpoint.*${gdb_prompt} $" {
4618 }
4619 -re "${gdb_prompt} $" {
4620 return 0
4621 }
4622 }
4623
4624 # Check whether argc is 1.
4625 gdb_test_multiple "p argc" "p argc" {
4626 -re " = 1\r\n${gdb_prompt} $" {
4627
4628 gdb_test_multiple "p argv\[0\]" "p argv\[0\]" {
4629 -re " = $hex \".*[file tail $exe]\"\r\n${gdb_prompt} $" {
4630 return 1
4631 }
4632 -re "${gdb_prompt} $" {
4633 return 0
4634 }
4635 }
4636 }
4637 -re "${gdb_prompt} $" {
4638 return 0
4639 }
4640 }
4641 return 0
4642 }
4643
4644 set result [gdb_has_argv0_1 $exe]
4645
4646 gdb_exit
4647 file delete $src
4648 file delete $exe
4649
4650 if { !$result
4651 && ([istarget *-*-linux*]
4652 || [istarget *-*-freebsd*] || [istarget *-*-kfreebsd*]
4653 || [istarget *-*-netbsd*] || [istarget *-*-knetbsd*]
4654 || [istarget *-*-openbsd*]
4655 || [istarget *-*-darwin*]
4656 || [istarget *-*-solaris*]
4657 || [istarget *-*-aix*]
4658 || [istarget *-*-gnu*]
4659 || [istarget *-*-cygwin*] || [istarget *-*-mingw32*]
4660 || [istarget *-*-*djgpp*] || [istarget *-*-go32*]
4661 || [istarget *-wince-pe] || [istarget *-*-mingw32ce*]
4662 || [istarget *-*-symbianelf*]
4663 || [istarget *-*-osf*]
4664 || [istarget *-*-hpux*]
4665 || [istarget *-*-dicos*]
4666 || [istarget *-*-nto*]
4667 || [istarget *-*-*vms*]
4668 || [istarget *-*-lynx*178]) } {
4669 fail "argv\[0\] should be available on this target"
4670 }
4671
4672 return $result
4673 }
4674
4675 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
4676 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
4677 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
4678 # the name of a debuginfo only file. This file will be stored in the same
4679 # subdirectory.
4680
4681 # Functions for separate debug info testing
4682
4683 # starting with an executable:
4684 # foo --> original executable
4685
4686 # at the end of the process we have:
4687 # foo.stripped --> foo w/o debug info
4688 # foo.debug --> foo's debug info
4689 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
4690
4691 # Fetch the build id from the file.
4692 # Returns "" if there is none.
4693
4694 proc get_build_id { filename } {
4695 if { ([istarget "*-*-mingw*"]
4696 || [istarget *-*-cygwin*]) } {
4697 set objdump_program [gdb_find_objdump]
4698 set result [catch {set data [exec $objdump_program -p $filename | grep signature | cut "-d " -f4]} output]
4699 verbose "result is $result"
4700 verbose "output is $output"
4701 if {$result == 1} {
4702 return ""
4703 }
4704 return $data
4705 } else {
4706 set tmp [standard_output_file "${filename}-tmp"]
4707 set objcopy_program [gdb_find_objcopy]
4708 set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $filename $tmp" output]
4709 verbose "result is $result"
4710 verbose "output is $output"
4711 if {$result == 1} {
4712 return ""
4713 }
4714 set fi [open $tmp]
4715 fconfigure $fi -translation binary
4716 # Skip the NOTE header.
4717 read $fi 16
4718 set data [read $fi]
4719 close $fi
4720 file delete $tmp
4721 if ![string compare $data ""] then {
4722 return ""
4723 }
4724 # Convert it to hex.
4725 binary scan $data H* data
4726 return $data
4727 }
4728 }
4729
4730 # Return the build-id hex string (usually 160 bits as 40 hex characters)
4731 # converted to the form: .build-id/ab/cdef1234...89.debug
4732 # Return "" if no build-id found.
4733 proc build_id_debug_filename_get { filename } {
4734 set data [get_build_id $filename]
4735 if { $data == "" } {
4736 return ""
4737 }
4738 regsub {^..} $data {\0/} data
4739 return ".build-id/${data}.debug"
4740 }
4741
4742 # Create stripped files for DEST, replacing it. If ARGS is passed, it is a
4743 # list of optional flags. The only currently supported flag is no-main,
4744 # which removes the symbol entry for main from the separate debug file.
4745 #
4746 # Function returns zero on success. Function will return non-zero failure code
4747 # on some targets not supporting separate debug info (such as i386-msdos).
4748
4749 proc gdb_gnu_strip_debug { dest args } {
4750
4751 # Use the first separate debug info file location searched by GDB so the
4752 # run cannot be broken by some stale file searched with higher precedence.
4753 set debug_file "${dest}.debug"
4754
4755 set strip_to_file_program [transform strip]
4756 set objcopy_program [gdb_find_objcopy]
4757
4758 set debug_link [file tail $debug_file]
4759 set stripped_file "${dest}.stripped"
4760
4761 # Get rid of the debug info, and store result in stripped_file
4762 # something like gdb/testsuite/gdb.base/blah.stripped.
4763 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
4764 verbose "result is $result"
4765 verbose "output is $output"
4766 if {$result == 1} {
4767 return 1
4768 }
4769
4770 # Workaround PR binutils/10802:
4771 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
4772 set perm [file attributes ${dest} -permissions]
4773 file attributes ${stripped_file} -permissions $perm
4774
4775 # Get rid of everything but the debug info, and store result in debug_file
4776 # This will be in the .debug subdirectory, see above.
4777 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
4778 verbose "result is $result"
4779 verbose "output is $output"
4780 if {$result == 1} {
4781 return 1
4782 }
4783
4784 # If no-main is passed, strip the symbol for main from the separate
4785 # file. This is to simulate the behavior of elfutils's eu-strip, which
4786 # leaves the symtab in the original file only. There's no way to get
4787 # objcopy or strip to remove the symbol table without also removing the
4788 # debugging sections, so this is as close as we can get.
4789 if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
4790 set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
4791 verbose "result is $result"
4792 verbose "output is $output"
4793 if {$result == 1} {
4794 return 1
4795 }
4796 file delete "${debug_file}"
4797 file rename "${debug_file}-tmp" "${debug_file}"
4798 }
4799
4800 # Link the two previous output files together, adding the .gnu_debuglink
4801 # section to the stripped_file, containing a pointer to the debug_file,
4802 # save the new file in dest.
4803 # This will be the regular executable filename, in the usual location.
4804 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
4805 verbose "result is $result"
4806 verbose "output is $output"
4807 if {$result == 1} {
4808 return 1
4809 }
4810
4811 # Workaround PR binutils/10802:
4812 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
4813 set perm [file attributes ${stripped_file} -permissions]
4814 file attributes ${dest} -permissions $perm
4815
4816 return 0
4817 }
4818
4819 # Test the output of GDB_COMMAND matches the pattern obtained
4820 # by concatenating all elements of EXPECTED_LINES. This makes
4821 # it possible to split otherwise very long string into pieces.
4822 # If third argument is not empty, it's used as the name of the
4823 # test to be printed on pass/fail.
4824 proc help_test_raw { gdb_command expected_lines args } {
4825 set message $gdb_command
4826 if [llength $args]>0 then {
4827 set message [lindex $args 0]
4828 }
4829 set expected_output [join $expected_lines ""]
4830 gdb_test "${gdb_command}" "${expected_output}" $message
4831 }
4832
4833 # Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
4834 # are regular expressions that should match the beginning of output,
4835 # before the list of commands in that class. The presence of
4836 # command list and standard epilogue will be tested automatically.
4837 # Notice that the '[' and ']' characters don't need to be escaped for strings
4838 # wrapped in {} braces.
4839 proc test_class_help { command_class expected_initial_lines args } {
4840 set l_stock_body {
4841 "List of commands\:.*[\r\n]+"
4842 "Type \"help\" followed by command name for full documentation\.[\r\n]+"
4843 "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n]+"
4844 "Command name abbreviations are allowed if unambiguous\."
4845 }
4846 set l_entire_body [concat $expected_initial_lines $l_stock_body]
4847
4848 eval [list help_test_raw "help ${command_class}" $l_entire_body] $args
4849 }
4850
4851 # COMMAND_LIST should have either one element -- command to test, or
4852 # two elements -- abbreviated command to test, and full command the first
4853 # element is abbreviation of.
4854 # The command must be a prefix command. EXPECTED_INITIAL_LINES
4855 # are regular expressions that should match the beginning of output,
4856 # before the list of subcommands. The presence of
4857 # subcommand list and standard epilogue will be tested automatically.
4858 proc test_prefix_command_help { command_list expected_initial_lines args } {
4859 set command [lindex $command_list 0]
4860 if {[llength $command_list]>1} {
4861 set full_command [lindex $command_list 1]
4862 } else {
4863 set full_command $command
4864 }
4865 # Use 'list' and not just {} because we want variables to
4866 # be expanded in this list.
4867 set l_stock_body [list\
4868 "List of $full_command subcommands\:.*\[\r\n\]+"\
4869 "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"\
4870 "Type \"apropos word\" to search for commands related to \"word\"\.\[\r\n\]+"\
4871 "Command name abbreviations are allowed if unambiguous\."]
4872 set l_entire_body [concat $expected_initial_lines $l_stock_body]
4873 if {[llength $args]>0} {
4874 help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
4875 } else {
4876 help_test_raw "help ${command}" $l_entire_body
4877 }
4878 }
4879
4880 # Build executable named EXECUTABLE from specifications that allow
4881 # different options to be passed to different sub-compilations.
4882 # TESTNAME is the name of the test; this is passed to 'untested' if
4883 # something fails.
4884 # OPTIONS is passed to the final link, using gdb_compile. If OPTIONS
4885 # contains the option "pthreads", then gdb_compile_pthreads is used.
4886 # ARGS is a flat list of source specifications, of the form:
4887 # { SOURCE1 OPTIONS1 [ SOURCE2 OPTIONS2 ]... }
4888 # Each SOURCE is compiled to an object file using its OPTIONS,
4889 # using gdb_compile.
4890 # Returns 0 on success, -1 on failure.
4891 proc build_executable_from_specs {testname executable options args} {
4892 global subdir
4893 global srcdir
4894
4895 set binfile [standard_output_file $executable]
4896
4897 set info_options ""
4898 if { [lsearch -exact $options "c++"] >= 0 } {
4899 set info_options "c++"
4900 }
4901 if [get_compiler_info ${info_options}] {
4902 return -1
4903 }
4904
4905 set func gdb_compile
4906 set func_index [lsearch -regexp $options {^(pthreads|shlib|shlib_pthreads)$}]
4907 if {$func_index != -1} {
4908 set func "${func}_[lindex $options $func_index]"
4909 }
4910
4911 # gdb_compile_shlib and gdb_compile_shlib_pthreads do not use the 3rd
4912 # parameter. They also requires $sources while gdb_compile and
4913 # gdb_compile_pthreads require $objects. Moreover they ignore any options.
4914 if [string match gdb_compile_shlib* $func] {
4915 set sources_path {}
4916 foreach {s local_options} $args {
4917 if { [regexp "^/" "$s"] } then {
4918 lappend sources_path "$s"
4919 } else {
4920 lappend sources_path "$srcdir/$subdir/$s"
4921 }
4922 }
4923 set ret [$func $sources_path "${binfile}" $options]
4924 } else {
4925 set objects {}
4926 set i 0
4927 foreach {s local_options} $args {
4928 if { ! [regexp "^/" "$s"] } then {
4929 set s "$srcdir/$subdir/$s"
4930 }
4931 if { [gdb_compile "${s}" "${binfile}${i}.o" object $local_options] != "" } {
4932 untested $testname
4933 return -1
4934 }
4935 lappend objects "${binfile}${i}.o"
4936 incr i
4937 }
4938 set ret [$func $objects "${binfile}" executable $options]
4939 }
4940 if { $ret != "" } {
4941 untested $testname
4942 return -1
4943 }
4944
4945 return 0
4946 }
4947
4948 # Build executable named EXECUTABLE, from SOURCES. If SOURCES are not
4949 # provided, uses $EXECUTABLE.c. The TESTNAME paramer is the name of test
4950 # to pass to untested, if something is wrong. OPTIONS are passed
4951 # to gdb_compile directly.
4952 proc build_executable { testname executable {sources ""} {options {debug}} } {
4953 if {[llength $sources]==0} {
4954 set sources ${executable}.c
4955 }
4956
4957 set arglist [list $testname $executable $options]
4958 foreach source $sources {
4959 lappend arglist $source $options
4960 }
4961
4962 return [eval build_executable_from_specs $arglist]
4963 }
4964
4965 # Starts fresh GDB binary and loads an optional executable into GDB.
4966 # Usage: clean_restart [executable]
4967 # EXECUTABLE is the basename of the binary.
4968
4969 proc clean_restart { args } {
4970 global srcdir
4971 global subdir
4972
4973 if { [llength $args] > 1 } {
4974 error "bad number of args: [llength $args]"
4975 }
4976
4977 gdb_exit
4978 gdb_start
4979 gdb_reinitialize_dir $srcdir/$subdir
4980
4981 if { [llength $args] >= 1 } {
4982 set executable [lindex $args 0]
4983 set binfile [standard_output_file ${executable}]
4984 gdb_load ${binfile}
4985 }
4986 }
4987
4988 # Prepares for testing by calling build_executable_full, then
4989 # clean_restart.
4990 # TESTNAME is the name of the test.
4991 # Each element in ARGS is a list of the form
4992 # { EXECUTABLE OPTIONS SOURCE_SPEC... }
4993 # These are passed to build_executable_from_specs, which see.
4994 # The last EXECUTABLE is passed to clean_restart.
4995 # Returns 0 on success, non-zero on failure.
4996 proc prepare_for_testing_full {testname args} {
4997 foreach spec $args {
4998 if {[eval build_executable_from_specs [list $testname] $spec] == -1} {
4999 return -1
5000 }
5001 set executable [lindex $spec 0]
5002 }
5003 clean_restart $executable
5004 return 0
5005 }
5006
5007 # Prepares for testing, by calling build_executable, and then clean_restart.
5008 # Please refer to build_executable for parameter description.
5009 proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
5010
5011 if {[build_executable $testname $executable $sources $options] == -1} {
5012 return -1
5013 }
5014 clean_restart $executable
5015
5016 return 0
5017 }
5018
5019 proc get_valueof { fmt exp default } {
5020 global gdb_prompt
5021
5022 set test "get valueof \"${exp}\""
5023 set val ${default}
5024 gdb_test_multiple "print${fmt} ${exp}" "$test" {
5025 -re "\\$\[0-9\]* = (.*)\[\r\n\]*$gdb_prompt $" {
5026 set val $expect_out(1,string)
5027 pass "$test ($val)"
5028 }
5029 timeout {
5030 fail "$test (timeout)"
5031 }
5032 }
5033 return ${val}
5034 }
5035
5036 proc get_integer_valueof { exp default } {
5037 global gdb_prompt
5038
5039 set test "get integer valueof \"${exp}\""
5040 set val ${default}
5041 gdb_test_multiple "print /d ${exp}" "$test" {
5042 -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
5043 set val $expect_out(1,string)
5044 pass "$test ($val)"
5045 }
5046 timeout {
5047 fail "$test (timeout)"
5048 }
5049 }
5050 return ${val}
5051 }
5052
5053 proc get_hexadecimal_valueof { exp default } {
5054 global gdb_prompt
5055 send_gdb "print /x ${exp}\n"
5056 set test "get hexadecimal valueof \"${exp}\""
5057 gdb_expect {
5058 -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
5059 set val $expect_out(1,string)
5060 pass "$test"
5061 }
5062 timeout {
5063 set val ${default}
5064 fail "$test (timeout)"
5065 }
5066 }
5067 return ${val}
5068 }
5069
5070 proc get_sizeof { type default } {
5071 return [get_integer_valueof "sizeof (${type})" $default]
5072 }
5073
5074 proc get_target_charset { } {
5075 global gdb_prompt
5076
5077 gdb_test_multiple "show target-charset" "" {
5078 -re "The target character set is \"auto; currently (\[^\"\]*)\".*$gdb_prompt $" {
5079 return $expect_out(1,string)
5080 }
5081 -re "The target character set is \"(\[^\"\]*)\".*$gdb_prompt $" {
5082 return $expect_out(1,string)
5083 }
5084 }
5085
5086 # Pick a reasonable default.
5087 warning "Unable to read target-charset."
5088 return "UTF-8"
5089 }
5090
5091 # Get the current value for remotetimeout and return it.
5092 proc get_remotetimeout { } {
5093 global gdb_prompt
5094 global decimal
5095
5096 gdb_test_multiple "show remotetimeout" "" {
5097 -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
5098 return $expect_out(1,string)
5099 }
5100 }
5101
5102 # Pick the default that gdb uses
5103 warning "Unable to read remotetimeout"
5104 return 300
5105 }
5106
5107 # Set the remotetimeout to the specified timeout. Nothing is returned.
5108 proc set_remotetimeout { timeout } {
5109 global gdb_prompt
5110
5111 gdb_test_multiple "set remotetimeout $timeout" "" {
5112 -re "$gdb_prompt $" {
5113 verbose "Set remotetimeout to $timeout\n"
5114 }
5115 }
5116 }
5117
5118 # ROOT and FULL are file names. Returns the relative path from ROOT
5119 # to FULL. Note that FULL must be in a subdirectory of ROOT.
5120 # For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this
5121 # will return "ls".
5122
5123 proc relative_filename {root full} {
5124 set root_split [file split $root]
5125 set full_split [file split $full]
5126
5127 set len [llength $root_split]
5128
5129 if {[eval file join $root_split]
5130 != [eval file join [lrange $full_split 0 [expr {$len - 1}]]]} {
5131 error "$full not a subdir of $root"
5132 }
5133
5134 return [eval file join [lrange $full_split $len end]]
5135 }
5136
5137 # Log gdb command line and script if requested.
5138 if {[info exists TRANSCRIPT]} {
5139 rename send_gdb real_send_gdb
5140 rename remote_spawn real_remote_spawn
5141 rename remote_close real_remote_close
5142
5143 global gdb_transcript
5144 set gdb_transcript ""
5145
5146 global gdb_trans_count
5147 set gdb_trans_count 1
5148
5149 proc remote_spawn {args} {
5150 global gdb_transcript gdb_trans_count outdir
5151
5152 if {$gdb_transcript != ""} {
5153 close $gdb_transcript
5154 }
5155 set gdb_transcript [open [file join $outdir transcript.$gdb_trans_count] w]
5156 puts $gdb_transcript [lindex $args 1]
5157 incr gdb_trans_count
5158
5159 return [uplevel real_remote_spawn $args]
5160 }
5161
5162 proc remote_close {args} {
5163 global gdb_transcript
5164
5165 if {$gdb_transcript != ""} {
5166 close $gdb_transcript
5167 set gdb_transcript ""
5168 }
5169
5170 return [uplevel real_remote_close $args]
5171 }
5172
5173 proc send_gdb {args} {
5174 global gdb_transcript
5175
5176 if {$gdb_transcript != ""} {
5177 puts -nonewline $gdb_transcript [lindex $args 0]
5178 }
5179
5180 return [uplevel real_send_gdb $args]
5181 }
5182 }
5183
5184 # If GDB_PARALLEL exists, then set up the parallel-mode directories.
5185 if {[info exists GDB_PARALLEL]} {
5186 if {[is_remote host]} {
5187 unset GDB_PARALLEL
5188 } else {
5189 file mkdir outputs temp cache
5190 }
5191 }
5192
5193 proc core_find {binfile {deletefiles {}} {arg ""}} {
5194 global objdir subdir
5195
5196 set destcore "$binfile.core"
5197 file delete $destcore
5198
5199 # Create a core file named "$destcore" rather than just "core", to
5200 # avoid problems with sys admin types that like to regularly prune all
5201 # files named "core" from the system.
5202 #
5203 # Arbitrarily try setting the core size limit to "unlimited" since
5204 # this does not hurt on systems where the command does not work and
5205 # allows us to generate a core on systems where it does.
5206 #
5207 # Some systems append "core" to the name of the program; others append
5208 # the name of the program to "core"; still others (like Linux, as of
5209 # May 2003) create cores named "core.PID". In the latter case, we
5210 # could have many core files lying around, and it may be difficult to
5211 # tell which one is ours, so let's run the program in a subdirectory.
5212 set found 0
5213 set coredir [standard_output_file coredir.[getpid]]
5214 file mkdir $coredir
5215 catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
5216 # remote_exec host "${binfile}"
5217 foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
5218 if [remote_file build exists $i] {
5219 remote_exec build "mv $i $destcore"
5220 set found 1
5221 }
5222 }
5223 # Check for "core.PID".
5224 if { $found == 0 } {
5225 set names [glob -nocomplain -directory $coredir core.*]
5226 if {[llength $names] == 1} {
5227 set corefile [file join $coredir [lindex $names 0]]
5228 remote_exec build "mv $corefile $destcore"
5229 set found 1
5230 }
5231 }
5232 if { $found == 0 } {
5233 # The braindamaged HPUX shell quits after the ulimit -c above
5234 # without executing ${binfile}. So we try again without the
5235 # ulimit here if we didn't find a core file above.
5236 # Oh, I should mention that any "braindamaged" non-Unix system has
5237 # the same problem. I like the cd bit too, it's really neat'n stuff.
5238 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
5239 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
5240 if [remote_file build exists $i] {
5241 remote_exec build "mv $i $destcore"
5242 set found 1
5243 }
5244 }
5245 }
5246
5247 # Try to clean up after ourselves.
5248 foreach deletefile $deletefiles {
5249 remote_file build delete [file join $coredir $deletefile]
5250 }
5251 remote_exec build "rmdir $coredir"
5252
5253 if { $found == 0 } {
5254 warning "can't generate a core file - core tests suppressed - check ulimit -c"
5255 return ""
5256 }
5257 return $destcore
5258 }
5259
5260 # gdb_target_symbol_prefix_flags returns a string that can be added
5261 # to gdb_compile options to define SYMBOL_PREFIX macro value
5262 # symbol_prefix_flags returns a string that can be added
5263 # for targets that use underscore as symbol prefix.
5264 # TODO: find out automatically if the target needs this.
5265
5266 proc gdb_target_symbol_prefix_flags {} {
5267 if { [istarget "i?86-*-cygwin*"] || [istarget "i?86-*-mingw*"]
5268 || [istarget "*-*-msdosdjgpp*"] || [istarget "*-*-go32*"] } {
5269 return "additional_flags=-DSYMBOL_PREFIX=\"_\""
5270 } else {
5271 return ""
5272 }
5273 }
5274
5275 # A wrapper for 'remote_exec host' that passes or fails a test.
5276 # Returns 0 if all went well, nonzero on failure.
5277 # TEST is the name of the test, other arguments are as for remote_exec.
5278
5279 proc run_on_host { test program args } {
5280 verbose -log "run_on_host: $program $args"
5281 # remote_exec doesn't work properly if the output is set but the
5282 # input is the empty string -- so replace an empty input with
5283 # /dev/null.
5284 if {[llength $args] > 1 && [lindex $args 1] == ""} {
5285 set args [lreplace $args 1 1 "/dev/null"]
5286 }
5287 set result [eval remote_exec host [list $program] $args]
5288 verbose "result is $result"
5289 set status [lindex $result 0]
5290 set output [lindex $result 1]
5291 if {$status == 0} {
5292 pass $test
5293 return 0
5294 } else {
5295 verbose -log "run_on_host failed: $output"
5296 fail $test
5297 return -1
5298 }
5299 }
5300
5301 # Return non-zero if "board_info debug_flags" mentions Fission.
5302 # http://gcc.gnu.org/wiki/DebugFission
5303 # Fission doesn't support everything yet.
5304 # This supports working around bug 15954.
5305
5306 proc using_fission { } {
5307 set debug_flags [board_info [target_info name] debug_flags]
5308 return [regexp -- "-gsplit-dwarf" $debug_flags]
5309 }
5310
5311 # Search the caller's ARGS list and set variables according to the list of
5312 # valid options described by ARGSET.
5313 #
5314 # The first member of each one- or two-element list in ARGSET defines the
5315 # name of a variable that will be added to the caller's scope.
5316 #
5317 # If only one element is given to describe an option, it the value is
5318 # 0 if the option is not present in (the caller's) ARGS or 1 if
5319 # it is.
5320 #
5321 # If two elements are given, the second element is the default value of
5322 # the variable. This is then overwritten if the option exists in ARGS.
5323 #
5324 # Any parse_args elements in (the caller's) ARGS will be removed, leaving
5325 # any optional components.
5326
5327 # Example:
5328 # proc myproc {foo args} {
5329 # parse_args {{bar} {baz "abc"} {qux}}
5330 # # ...
5331 # }
5332 # myproc ABC -bar -baz DEF peanut butter
5333 # will define the following variables in myproc:
5334 # foo (=ABC), bar (=1), baz (=DEF), and qux (=0)
5335 # args will be the list {peanut butter}
5336
5337 proc parse_args { argset } {
5338 upvar args args
5339
5340 foreach argument $argset {
5341 if {[llength $argument] == 1} {
5342 # No default specified, so we assume that we should set
5343 # the value to 1 if the arg is present and 0 if it's not.
5344 # It is assumed that no value is given with the argument.
5345 set result [lsearch -exact $args "-$argument"]
5346 if {$result != -1} then {
5347 uplevel 1 [list set $argument 1]
5348 set args [lreplace $args $result $result]
5349 } else {
5350 uplevel 1 [list set $argument 0]
5351 }
5352 } elseif {[llength $argument] == 2} {
5353 # There are two items in the argument. The second is a
5354 # default value to use if the item is not present.
5355 # Otherwise, the variable is set to whatever is provided
5356 # after the item in the args.
5357 set arg [lindex $argument 0]
5358 set result [lsearch -exact $args "-[lindex $arg 0]"]
5359 if {$result != -1} then {
5360 uplevel 1 [list set $arg [lindex $args [expr $result+1]]]
5361 set args [lreplace $args $result [expr $result+1]]
5362 } else {
5363 uplevel 1 [list set $arg [lindex $argument 1]]
5364 }
5365 } else {
5366 error "Badly formatted argument \"$argument\" in argument set"
5367 }
5368 }
5369
5370 # The remaining args should be checked to see that they match the
5371 # number of items expected to be passed into the procedure...
5372 }
5373
5374 # Capture the output of COMMAND in a string ignoring PREFIX; return that string.
5375 proc capture_command_output { command prefix } {
5376 global gdb_prompt
5377 global expect_out
5378
5379 set output_string ""
5380 gdb_test_multiple "$command" "capture_command_output for $command" {
5381 -re "${command}\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
5382 set output_string $expect_out(1,string)
5383 }
5384 }
5385 return $output_string
5386 }
5387
5388 # A convenience function that joins all the arguments together, with a
5389 # regexp that matches exactly one end of line in between each argument.
5390 # This function is ideal to write the expected output of a GDB command
5391 # that generates more than a couple of lines, as this allows us to write
5392 # each line as a separate string, which is easier to read by a human
5393 # being.
5394
5395 proc multi_line { args } {
5396 return [join $args "\r\n"]
5397 }
5398
5399 # Always load compatibility stuff.
5400 load_lib future.exp