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