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