90e864467310d15c45ebe84320c6ab7169cca44e
[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 the target supports hardware single stepping.
2154
2155 proc can_hardware_single_step {} {
2156
2157 if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
2158 || [istarget "tic6x-*-*"] || [istarget "sparc*-*-linux*"]
2159 || [istarget "nios2-*-*"] } {
2160 return 0
2161 }
2162
2163 return 1
2164 }
2165
2166 # Return 1 if target hardware or OS supports single stepping to signal
2167 # handler, otherwise, return 0.
2168
2169 proc can_single_step_to_signal_handler {} {
2170 # Targets don't have hardware single step. On these targets, when
2171 # a signal is delivered during software single step, gdb is unable
2172 # to determine the next instruction addresses, because start of signal
2173 # handler is one of them.
2174 return [can_hardware_single_step]
2175 }
2176
2177 # Return 1 if target supports process record, otherwise return 0.
2178
2179 proc supports_process_record {} {
2180
2181 if [target_info exists gdb,use_precord] {
2182 return [target_info gdb,use_precord]
2183 }
2184
2185 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2186 || [istarget "i\[34567\]86-*-linux*"]
2187 || [istarget "aarch64*-*-linux*"]
2188 || [istarget "powerpc*-*-linux*"]
2189 || [istarget "s390*-*-linux*"] } {
2190 return 1
2191 }
2192
2193 return 0
2194 }
2195
2196 # Return 1 if target supports reverse debugging, otherwise return 0.
2197
2198 proc supports_reverse {} {
2199
2200 if [target_info exists gdb,can_reverse] {
2201 return [target_info gdb,can_reverse]
2202 }
2203
2204 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2205 || [istarget "i\[34567\]86-*-linux*"]
2206 || [istarget "aarch64*-*-linux*"]
2207 || [istarget "powerpc*-*-linux*"]
2208 || [istarget "s390*-*-linux*"] } {
2209 return 1
2210 }
2211
2212 return 0
2213 }
2214
2215 # Return 1 if readline library is used.
2216
2217 proc readline_is_used { } {
2218 global gdb_prompt
2219
2220 gdb_test_multiple "show editing" "" {
2221 -re ".*Editing of command lines as they are typed is on\..*$gdb_prompt $" {
2222 return 1
2223 }
2224 -re ".*$gdb_prompt $" {
2225 return 0
2226 }
2227 }
2228 }
2229
2230 # Return 1 if target is ELF.
2231 gdb_caching_proc is_elf_target {
2232 set me "is_elf_target"
2233
2234 set src [standard_temp_file is_elf_target[pid].c]
2235 set obj [standard_temp_file is_elf_target[pid].o]
2236
2237 gdb_produce_source $src {
2238 int foo () {return 0;}
2239 }
2240
2241 verbose "$me: compiling testfile $src" 2
2242 set lines [gdb_compile $src $obj object {quiet}]
2243
2244 file delete $src
2245
2246 if ![string match "" $lines] then {
2247 verbose "$me: testfile compilation failed, returning 0" 2
2248 return 0
2249 }
2250
2251 set fp_obj [open $obj "r"]
2252 fconfigure $fp_obj -translation binary
2253 set data [read $fp_obj]
2254 close $fp_obj
2255
2256 file delete $obj
2257
2258 set ELFMAG "\u007FELF"
2259
2260 if {[string compare -length 4 $data $ELFMAG] != 0} {
2261 verbose "$me: returning 0" 2
2262 return 0
2263 }
2264
2265 verbose "$me: returning 1" 2
2266 return 1
2267 }
2268
2269 # Return 1 if the memory at address zero is readable.
2270
2271 gdb_caching_proc is_address_zero_readable {
2272 global gdb_prompt
2273
2274 set ret 0
2275 gdb_test_multiple "x 0" "" {
2276 -re "Cannot access memory at address 0x0.*$gdb_prompt $" {
2277 set ret 0
2278 }
2279 -re ".*$gdb_prompt $" {
2280 set ret 1
2281 }
2282 }
2283
2284 return $ret
2285 }
2286
2287 # Produce source file NAME and write SOURCES into it.
2288
2289 proc gdb_produce_source { name sources } {
2290 set index 0
2291 set f [open $name "w"]
2292
2293 puts $f $sources
2294 close $f
2295 }
2296
2297 # Return 1 if target is ILP32.
2298 # This cannot be decided simply from looking at the target string,
2299 # as it might depend on externally passed compiler options like -m64.
2300 gdb_caching_proc is_ilp32_target {
2301 set me "is_ilp32_target"
2302
2303 set src [standard_temp_file ilp32[pid].c]
2304 set obj [standard_temp_file ilp32[pid].o]
2305
2306 gdb_produce_source $src {
2307 int dummy[sizeof (int) == 4
2308 && sizeof (void *) == 4
2309 && sizeof (long) == 4 ? 1 : -1];
2310 }
2311
2312 verbose "$me: compiling testfile $src" 2
2313 set lines [gdb_compile $src $obj object {quiet}]
2314 file delete $src
2315 file delete $obj
2316
2317 if ![string match "" $lines] then {
2318 verbose "$me: testfile compilation failed, returning 0" 2
2319 return 0
2320 }
2321
2322 verbose "$me: returning 1" 2
2323 return 1
2324 }
2325
2326 # Return 1 if target is LP64.
2327 # This cannot be decided simply from looking at the target string,
2328 # as it might depend on externally passed compiler options like -m64.
2329 gdb_caching_proc is_lp64_target {
2330 set me "is_lp64_target"
2331
2332 set src [standard_temp_file lp64[pid].c]
2333 set obj [standard_temp_file lp64[pid].o]
2334
2335 gdb_produce_source $src {
2336 int dummy[sizeof (int) == 4
2337 && sizeof (void *) == 8
2338 && sizeof (long) == 8 ? 1 : -1];
2339 }
2340
2341 verbose "$me: compiling testfile $src" 2
2342 set lines [gdb_compile $src $obj object {quiet}]
2343 file delete $src
2344 file delete $obj
2345
2346 if ![string match "" $lines] then {
2347 verbose "$me: testfile compilation failed, returning 0" 2
2348 return 0
2349 }
2350
2351 verbose "$me: returning 1" 2
2352 return 1
2353 }
2354
2355 # Return 1 if target has 64 bit addresses.
2356 # This cannot be decided simply from looking at the target string,
2357 # as it might depend on externally passed compiler options like -m64.
2358 gdb_caching_proc is_64_target {
2359 set me "is_64_target"
2360
2361 set src [standard_temp_file is64[pid].c]
2362 set obj [standard_temp_file is64[pid].o]
2363
2364 gdb_produce_source $src {
2365 int function(void) { return 3; }
2366 int dummy[sizeof (&function) == 8 ? 1 : -1];
2367 }
2368
2369 verbose "$me: compiling testfile $src" 2
2370 set lines [gdb_compile $src $obj object {quiet}]
2371 file delete $src
2372 file delete $obj
2373
2374 if ![string match "" $lines] then {
2375 verbose "$me: testfile compilation failed, returning 0" 2
2376 return 0
2377 }
2378
2379 verbose "$me: returning 1" 2
2380 return 1
2381 }
2382
2383 # Return 1 if target has x86_64 registers - either amd64 or x32.
2384 # x32 target identifies as x86_64-*-linux*, therefore it cannot be determined
2385 # just from the target string.
2386 gdb_caching_proc is_amd64_regs_target {
2387 if {![istarget "x86_64-*-*"] && ![istarget "i?86-*"]} {
2388 return 0
2389 }
2390
2391 set me "is_amd64_regs_target"
2392
2393 set src [standard_temp_file reg64[pid].s]
2394 set obj [standard_temp_file reg64[pid].o]
2395
2396 set list {}
2397 foreach reg \
2398 {rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15} {
2399 lappend list "\tincq %$reg"
2400 }
2401 gdb_produce_source $src [join $list \n]
2402
2403 verbose "$me: compiling testfile $src" 2
2404 set lines [gdb_compile $src $obj object {quiet}]
2405 file delete $src
2406 file delete $obj
2407
2408 if ![string match "" $lines] then {
2409 verbose "$me: testfile compilation failed, returning 0" 2
2410 return 0
2411 }
2412
2413 verbose "$me: returning 1" 2
2414 return 1
2415 }
2416
2417 # Return 1 if this target is an x86 or x86-64 with -m32.
2418 proc is_x86_like_target {} {
2419 if {![istarget "x86_64-*-*"] && ![istarget i?86-*]} {
2420 return 0
2421 }
2422 return [expr [is_ilp32_target] && ![is_amd64_regs_target]]
2423 }
2424
2425 # Return 1 if this target is an arm or aarch32 on aarch64.
2426
2427 gdb_caching_proc is_aarch32_target {
2428 if { [istarget "arm*-*-*"] } {
2429 return 1
2430 }
2431
2432 if { ![istarget "aarch64*-*-*"] } {
2433 return 0
2434 }
2435
2436 set me "is_aarch32_target"
2437
2438 set src [standard_temp_file aarch32[pid].s]
2439 set obj [standard_temp_file aarch32[pid].o]
2440
2441 set list {}
2442 foreach reg \
2443 {r0 r1 r2 r3} {
2444 lappend list "\tmov $reg, $reg"
2445 }
2446 gdb_produce_source $src [join $list \n]
2447
2448 verbose "$me: compiling testfile $src" 2
2449 set lines [gdb_compile $src $obj object {quiet}]
2450 file delete $src
2451 file delete $obj
2452
2453 if ![string match "" $lines] then {
2454 verbose "$me: testfile compilation failed, returning 0" 2
2455 return 0
2456 }
2457
2458 verbose "$me: returning 1" 2
2459 return 1
2460 }
2461
2462 # Return 1 if this target is an aarch64, either lp64 or ilp32.
2463
2464 proc is_aarch64_target {} {
2465 if { ![istarget "aarch64*-*-*"] } {
2466 return 0
2467 }
2468
2469 return [expr ![is_aarch32_target]]
2470 }
2471
2472 # Return 1 if displaced stepping is supported on target, otherwise, return 0.
2473 proc support_displaced_stepping {} {
2474
2475 if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"]
2476 || [istarget "arm*-*-linux*"] || [istarget "powerpc-*-linux*"]
2477 || [istarget "powerpc64-*-linux*"] || [istarget "s390*-*-*"]
2478 || [istarget "aarch64*-*-linux*"] } {
2479 return 1
2480 }
2481
2482 return 0
2483 }
2484
2485 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2486 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2487
2488 gdb_caching_proc skip_altivec_tests {
2489 global srcdir subdir gdb_prompt inferior_exited_re
2490
2491 set me "skip_altivec_tests"
2492
2493 # Some simulators are known to not support VMX instructions.
2494 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2495 verbose "$me: target known to not support VMX, returning 1" 2
2496 return 1
2497 }
2498
2499 # Make sure we have a compiler that understands altivec.
2500 set compile_flags {debug nowarnings}
2501 if [get_compiler_info] {
2502 warning "Could not get compiler info"
2503 return 1
2504 }
2505 if [test_compiler_info gcc*] {
2506 set compile_flags "$compile_flags additional_flags=-maltivec"
2507 } elseif [test_compiler_info xlc*] {
2508 set compile_flags "$compile_flags additional_flags=-qaltivec"
2509 } else {
2510 verbose "Could not compile with altivec support, returning 1" 2
2511 return 1
2512 }
2513
2514 # Set up, compile, and execute a test program containing VMX instructions.
2515 # Include the current process ID in the file names to prevent conflicts
2516 # with invocations for multiple testsuites.
2517 set src [standard_temp_file vmx[pid].c]
2518 set exe [standard_temp_file vmx[pid].x]
2519
2520 gdb_produce_source $src {
2521 int main() {
2522 #ifdef __MACH__
2523 asm volatile ("vor v0,v0,v0");
2524 #else
2525 asm volatile ("vor 0,0,0");
2526 #endif
2527 return 0;
2528 }
2529 }
2530
2531 verbose "$me: compiling testfile $src" 2
2532 set lines [gdb_compile $src $exe executable $compile_flags]
2533 file delete $src
2534
2535 if ![string match "" $lines] then {
2536 verbose "$me: testfile compilation failed, returning 1" 2
2537 return 1
2538 }
2539
2540 # No error message, compilation succeeded so now run it via gdb.
2541
2542 gdb_exit
2543 gdb_start
2544 gdb_reinitialize_dir $srcdir/$subdir
2545 gdb_load "$exe"
2546 gdb_run_cmd
2547 gdb_expect {
2548 -re ".*Illegal instruction.*${gdb_prompt} $" {
2549 verbose -log "\n$me altivec hardware not detected"
2550 set skip_vmx_tests 1
2551 }
2552 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2553 verbose -log "\n$me: altivec hardware detected"
2554 set skip_vmx_tests 0
2555 }
2556 default {
2557 warning "\n$me: default case taken"
2558 set skip_vmx_tests 1
2559 }
2560 }
2561 gdb_exit
2562 remote_file build delete $exe
2563
2564 verbose "$me: returning $skip_vmx_tests" 2
2565 return $skip_vmx_tests
2566 }
2567
2568 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2569 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2570
2571 gdb_caching_proc skip_vsx_tests {
2572 global srcdir subdir gdb_prompt inferior_exited_re
2573
2574 set me "skip_vsx_tests"
2575
2576 # Some simulators are known to not support Altivec instructions, so
2577 # they won't support VSX instructions as well.
2578 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2579 verbose "$me: target known to not support VSX, returning 1" 2
2580 return 1
2581 }
2582
2583 # Make sure we have a compiler that understands altivec.
2584 set compile_flags {debug nowarnings quiet}
2585 if [get_compiler_info] {
2586 warning "Could not get compiler info"
2587 return 1
2588 }
2589 if [test_compiler_info gcc*] {
2590 set compile_flags "$compile_flags additional_flags=-mvsx"
2591 } elseif [test_compiler_info xlc*] {
2592 set compile_flags "$compile_flags additional_flags=-qasm=gcc"
2593 } else {
2594 verbose "Could not compile with vsx support, returning 1" 2
2595 return 1
2596 }
2597
2598 set src [standard_temp_file vsx[pid].c]
2599 set exe [standard_temp_file vsx[pid].x]
2600
2601 gdb_produce_source $src {
2602 int main() {
2603 double a[2] = { 1.0, 2.0 };
2604 #ifdef __MACH__
2605 asm volatile ("lxvd2x v0,v0,%[addr]" : : [addr] "r" (a));
2606 #else
2607 asm volatile ("lxvd2x 0,0,%[addr]" : : [addr] "r" (a));
2608 #endif
2609 return 0;
2610 }
2611 }
2612
2613 verbose "$me: compiling testfile $src" 2
2614 set lines [gdb_compile $src $exe executable $compile_flags]
2615 file delete $src
2616
2617 if ![string match "" $lines] then {
2618 verbose "$me: testfile compilation failed, returning 1" 2
2619 return 1
2620 }
2621
2622 # No error message, compilation succeeded so now run it via gdb.
2623
2624 gdb_exit
2625 gdb_start
2626 gdb_reinitialize_dir $srcdir/$subdir
2627 gdb_load "$exe"
2628 gdb_run_cmd
2629 gdb_expect {
2630 -re ".*Illegal instruction.*${gdb_prompt} $" {
2631 verbose -log "\n$me VSX hardware not detected"
2632 set skip_vsx_tests 1
2633 }
2634 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2635 verbose -log "\n$me: VSX hardware detected"
2636 set skip_vsx_tests 0
2637 }
2638 default {
2639 warning "\n$me: default case taken"
2640 set skip_vsx_tests 1
2641 }
2642 }
2643 gdb_exit
2644 remote_file build delete $exe
2645
2646 verbose "$me: returning $skip_vsx_tests" 2
2647 return $skip_vsx_tests
2648 }
2649
2650 # Run a test on the target to see if it supports TSX hardware. Return 0 if so,
2651 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2652
2653 gdb_caching_proc skip_tsx_tests {
2654 global srcdir subdir gdb_prompt inferior_exited_re
2655
2656 set me "skip_tsx_tests"
2657
2658 set src [standard_temp_file tsx[pid].c]
2659 set exe [standard_temp_file tsx[pid].x]
2660
2661 gdb_produce_source $src {
2662 int main() {
2663 asm volatile ("xbegin .L0");
2664 asm volatile ("xend");
2665 asm volatile (".L0: nop");
2666 return 0;
2667 }
2668 }
2669
2670 verbose "$me: compiling testfile $src" 2
2671 set lines [gdb_compile $src $exe executable {nowarnings quiet}]
2672 file delete $src
2673
2674 if ![string match "" $lines] then {
2675 verbose "$me: testfile compilation failed." 2
2676 return 1
2677 }
2678
2679 # No error message, compilation succeeded so now run it via gdb.
2680
2681 gdb_exit
2682 gdb_start
2683 gdb_reinitialize_dir $srcdir/$subdir
2684 gdb_load "$exe"
2685 gdb_run_cmd
2686 gdb_expect {
2687 -re ".*Illegal instruction.*${gdb_prompt} $" {
2688 verbose -log "$me: TSX hardware not detected."
2689 set skip_tsx_tests 1
2690 }
2691 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2692 verbose -log "$me: TSX hardware detected."
2693 set skip_tsx_tests 0
2694 }
2695 default {
2696 warning "\n$me: default case taken."
2697 set skip_tsx_tests 1
2698 }
2699 }
2700 gdb_exit
2701 remote_file build delete $exe
2702
2703 verbose "$me: returning $skip_tsx_tests" 2
2704 return $skip_tsx_tests
2705 }
2706
2707 # Run a test on the target to see if it supports btrace hardware. Return 0 if so,
2708 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2709
2710 gdb_caching_proc skip_btrace_tests {
2711 global srcdir subdir gdb_prompt inferior_exited_re
2712
2713 set me "skip_btrace_tests"
2714 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2715 verbose "$me: target does not support btrace, returning 1" 2
2716 return 1
2717 }
2718
2719 # Set up, compile, and execute a test program.
2720 # Include the current process ID in the file names to prevent conflicts
2721 # with invocations for multiple testsuites.
2722 set src [standard_temp_file btrace[pid].c]
2723 set exe [standard_temp_file btrace[pid].x]
2724
2725 gdb_produce_source $src {
2726 int main(void) { return 0; }
2727 }
2728
2729 verbose "$me: compiling testfile $src" 2
2730 set compile_flags {debug nowarnings quiet}
2731 set lines [gdb_compile $src $exe executable $compile_flags]
2732
2733 if ![string match "" $lines] then {
2734 verbose "$me: testfile compilation failed, returning 1" 2
2735 file delete $src
2736 return 1
2737 }
2738
2739 # No error message, compilation succeeded so now run it via gdb.
2740
2741 gdb_exit
2742 gdb_start
2743 gdb_reinitialize_dir $srcdir/$subdir
2744 gdb_load $exe
2745 if ![runto_main] {
2746 file delete $src
2747 return 1
2748 }
2749 file delete $src
2750 # In case of an unexpected output, we return 2 as a fail value.
2751 set skip_btrace_tests 2
2752 gdb_test_multiple "record btrace" "check btrace support" {
2753 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
2754 set skip_btrace_tests 1
2755 }
2756 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
2757 set skip_btrace_tests 1
2758 }
2759 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
2760 set skip_btrace_tests 1
2761 }
2762 -re "^record btrace\r\n$gdb_prompt $" {
2763 set skip_btrace_tests 0
2764 }
2765 }
2766 gdb_exit
2767 remote_file build delete $exe
2768
2769 verbose "$me: returning $skip_btrace_tests" 2
2770 return $skip_btrace_tests
2771 }
2772
2773 # Run a test on the target to see if it supports btrace pt hardware.
2774 # Return 0 if so, 1 if it does not. Based on 'check_vmx_hw_available'
2775 # from the GCC testsuite.
2776
2777 gdb_caching_proc skip_btrace_pt_tests {
2778 global srcdir subdir gdb_prompt inferior_exited_re
2779
2780 set me "skip_btrace_tests"
2781 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2782 verbose "$me: target does not support btrace, returning 1" 2
2783 return 1
2784 }
2785
2786 # Set up, compile, and execute a test program.
2787 # Include the current process ID in the file names to prevent conflicts
2788 # with invocations for multiple testsuites.
2789 set src [standard_temp_file btrace[pid].c]
2790 set exe [standard_temp_file btrace[pid].x]
2791
2792 gdb_produce_source $src {
2793 int main(void) { return 0; }
2794 }
2795
2796 verbose "$me: compiling testfile $src" 2
2797 set compile_flags {debug nowarnings quiet}
2798 set lines [gdb_compile $src $exe executable $compile_flags]
2799
2800 if ![string match "" $lines] then {
2801 verbose "$me: testfile compilation failed, returning 1" 2
2802 file delete $src
2803 return 1
2804 }
2805
2806 # No error message, compilation succeeded so now run it via gdb.
2807
2808 gdb_exit
2809 gdb_start
2810 gdb_reinitialize_dir $srcdir/$subdir
2811 gdb_load $exe
2812 if ![runto_main] {
2813 file delete $src
2814 return 1
2815 }
2816 file delete $src
2817 # In case of an unexpected output, we return 2 as a fail value.
2818 set skip_btrace_tests 2
2819 gdb_test_multiple "record btrace pt" "check btrace support" {
2820 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
2821 set skip_btrace_tests 1
2822 }
2823 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
2824 set skip_btrace_tests 1
2825 }
2826 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
2827 set skip_btrace_tests 1
2828 }
2829 -re "GDB does not support.*\r\n$gdb_prompt $" {
2830 set skip_btrace_tests 1
2831 }
2832 -re "^record btrace pt\r\n$gdb_prompt $" {
2833 set skip_btrace_tests 0
2834 }
2835 }
2836 gdb_exit
2837 remote_file build delete $exe
2838
2839 verbose "$me: returning $skip_btrace_tests" 2
2840 return $skip_btrace_tests
2841 }
2842
2843 # Skip all the tests in the file if you are not on an hppa running
2844 # hpux target.
2845
2846 proc skip_hp_tests {} {
2847 eval set skip_hp [ expr ![isnative] || ![istarget "hppa*-*-hpux*"] ]
2848 verbose "Skip hp tests is $skip_hp"
2849 return $skip_hp
2850 }
2851
2852 # Return whether we should skip tests for showing inlined functions in
2853 # backtraces. Requires get_compiler_info and get_debug_format.
2854
2855 proc skip_inline_frame_tests {} {
2856 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2857 if { ! [test_debug_format "DWARF 2"] } {
2858 return 1
2859 }
2860
2861 # GCC before 4.1 does not emit DW_AT_call_file / DW_AT_call_line.
2862 if { ([test_compiler_info "gcc-2-*"]
2863 || [test_compiler_info "gcc-3-*"]
2864 || [test_compiler_info "gcc-4-0-*"]) } {
2865 return 1
2866 }
2867
2868 return 0
2869 }
2870
2871 # Return whether we should skip tests for showing variables from
2872 # inlined functions. Requires get_compiler_info and get_debug_format.
2873
2874 proc skip_inline_var_tests {} {
2875 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2876 if { ! [test_debug_format "DWARF 2"] } {
2877 return 1
2878 }
2879
2880 return 0
2881 }
2882
2883 # Return a 1 if we should skip tests that require hardware breakpoints
2884
2885 proc skip_hw_breakpoint_tests {} {
2886 # Skip tests if requested by the board (note that no_hardware_watchpoints
2887 # disables both watchpoints and breakpoints)
2888 if { [target_info exists gdb,no_hardware_watchpoints]} {
2889 return 1
2890 }
2891
2892 # These targets support hardware breakpoints natively
2893 if { [istarget "i?86-*-*"]
2894 || [istarget "x86_64-*-*"]
2895 || [istarget "ia64-*-*"]
2896 || [istarget "arm*-*-*"]
2897 || [istarget "aarch64*-*-*"]} {
2898 return 0
2899 }
2900
2901 return 1
2902 }
2903
2904 # Return a 1 if we should skip tests that require hardware watchpoints
2905
2906 proc skip_hw_watchpoint_tests {} {
2907 # Skip tests if requested by the board
2908 if { [target_info exists gdb,no_hardware_watchpoints]} {
2909 return 1
2910 }
2911
2912 # These targets support hardware watchpoints natively
2913 if { [istarget "i?86-*-*"]
2914 || [istarget "x86_64-*-*"]
2915 || [istarget "ia64-*-*"]
2916 || [istarget "arm*-*-*"]
2917 || [istarget "aarch64*-*-*"]
2918 || [istarget "powerpc*-*-linux*"]
2919 || [istarget "s390*-*-*"] } {
2920 return 0
2921 }
2922
2923 return 1
2924 }
2925
2926 # Return a 1 if we should skip tests that require *multiple* hardware
2927 # watchpoints to be active at the same time
2928
2929 proc skip_hw_watchpoint_multi_tests {} {
2930 if { [skip_hw_watchpoint_tests] } {
2931 return 1
2932 }
2933
2934 # These targets support just a single hardware watchpoint
2935 if { [istarget "arm*-*-*"]
2936 || [istarget "powerpc*-*-linux*"] } {
2937 return 1
2938 }
2939
2940 return 0
2941 }
2942
2943 # Return a 1 if we should skip tests that require read/access watchpoints
2944
2945 proc skip_hw_watchpoint_access_tests {} {
2946 if { [skip_hw_watchpoint_tests] } {
2947 return 1
2948 }
2949
2950 # These targets support just write watchpoints
2951 if { [istarget "s390*-*-*"] } {
2952 return 1
2953 }
2954
2955 return 0
2956 }
2957
2958 # Return 1 if we should skip tests that require the runtime unwinder
2959 # hook. This must be invoked while gdb is running, after shared
2960 # libraries have been loaded. This is needed because otherwise a
2961 # shared libgcc won't be visible.
2962
2963 proc skip_unwinder_tests {} {
2964 global gdb_prompt
2965
2966 set ok 0
2967 gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook" {
2968 -re "= .*no debug info.*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
2969 }
2970 -re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
2971 set ok 1
2972 }
2973 -re "No symbol .* in current context.\r\n$gdb_prompt $" {
2974 }
2975 }
2976 if {!$ok} {
2977 gdb_test_multiple "info probe" "check for stap probe in unwinder" {
2978 -re ".*libgcc.*unwind.*\r\n$gdb_prompt $" {
2979 set ok 1
2980 }
2981 -re "\r\n$gdb_prompt $" {
2982 }
2983 }
2984 }
2985 return $ok
2986 }
2987
2988 # Return 0 if we should skip tests that require the libstdc++ stap
2989 # probes. This must be invoked while gdb is running, after shared
2990 # libraries have been loaded.
2991
2992 proc skip_libstdcxx_probe_tests {} {
2993 global gdb_prompt
2994
2995 set ok 0
2996 gdb_test_multiple "info probe" "check for stap probe in libstdc++" {
2997 -re ".*libstdcxx.*catch.*\r\n$gdb_prompt $" {
2998 set ok 1
2999 }
3000 -re "\r\n$gdb_prompt $" {
3001 }
3002 }
3003 return $ok
3004 }
3005
3006 # Return 1 if we should skip tests of the "compile" feature.
3007 # This must be invoked after the inferior has been started.
3008
3009 proc skip_compile_feature_tests {} {
3010 global gdb_prompt
3011
3012 set result 0
3013 gdb_test_multiple "compile code -- ;" "check for working compile command" {
3014 "Could not load libcc1.*\r\n$gdb_prompt $" {
3015 set result 1
3016 }
3017 -re "Command not supported on this host\\..*\r\n$gdb_prompt $" {
3018 set result 1
3019 }
3020 -re "\r\n$gdb_prompt $" {
3021 }
3022 }
3023 return $result
3024 }
3025
3026 # Check whether we're testing with the remote or extended-remote
3027 # targets.
3028
3029 proc gdb_is_target_remote {} {
3030 global gdb_prompt
3031
3032 set test "probe for target remote"
3033 gdb_test_multiple "maint print target-stack" $test {
3034 -re ".*emote serial target in gdb-specific protocol.*$gdb_prompt $" {
3035 pass $test
3036 return 1
3037 }
3038 -re "$gdb_prompt $" {
3039 pass $test
3040 }
3041 }
3042 return 0
3043 }
3044
3045 # Return 1 if the current remote target is an instance of our GDBserver, 0
3046 # otherwise. Return -1 if there was an error and we can't tell.
3047
3048 gdb_caching_proc target_is_gdbserver {
3049 global gdb_prompt
3050
3051 set is_gdbserver -1
3052 set test "Probing for GDBserver"
3053
3054 gdb_test_multiple "monitor help" $test {
3055 -re "The following monitor commands are supported.*Quit GDBserver.*$gdb_prompt $" {
3056 set is_gdbserver 1
3057 }
3058 -re "$gdb_prompt $" {
3059 set is_gdbserver 0
3060 }
3061 }
3062
3063 if { $is_gdbserver == -1 } {
3064 verbose -log "Unable to tell whether we are using GDBserver or not."
3065 }
3066
3067 return $is_gdbserver
3068 }
3069
3070 # N.B. compiler_info is intended to be local to this file.
3071 # Call test_compiler_info with no arguments to fetch its value.
3072 # Yes, this is counterintuitive when there's get_compiler_info,
3073 # but that's the current API.
3074 if [info exists compiler_info] {
3075 unset compiler_info
3076 }
3077
3078 set gcc_compiled 0
3079 set hp_cc_compiler 0
3080 set hp_aCC_compiler 0
3081
3082 # Figure out what compiler I am using.
3083 # The result is cached so only the first invocation runs the compiler.
3084 #
3085 # ARG can be empty or "C++". If empty, "C" is assumed.
3086 #
3087 # There are several ways to do this, with various problems.
3088 #
3089 # [ gdb_compile -E $ifile -o $binfile.ci ]
3090 # source $binfile.ci
3091 #
3092 # Single Unix Spec v3 says that "-E -o ..." together are not
3093 # specified. And in fact, the native compiler on hp-ux 11 (among
3094 # others) does not work with "-E -o ...". Most targets used to do
3095 # this, and it mostly worked, because it works with gcc.
3096 #
3097 # [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
3098 # source $binfile.ci
3099 #
3100 # This avoids the problem with -E and -o together. This almost works
3101 # if the build machine is the same as the host machine, which is
3102 # usually true of the targets which are not gcc. But this code does
3103 # not figure which compiler to call, and it always ends up using the C
3104 # compiler. Not good for setting hp_aCC_compiler. Target
3105 # hppa*-*-hpux* used to do this.
3106 #
3107 # [ gdb_compile -E $ifile > $binfile.ci ]
3108 # source $binfile.ci
3109 #
3110 # dejagnu target_compile says that it supports output redirection,
3111 # but the code is completely different from the normal path and I
3112 # don't want to sweep the mines from that path. So I didn't even try
3113 # this.
3114 #
3115 # set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
3116 # eval $cppout
3117 #
3118 # I actually do this for all targets now. gdb_compile runs the right
3119 # compiler, and TCL captures the output, and I eval the output.
3120 #
3121 # Unfortunately, expect logs the output of the command as it goes by,
3122 # and dejagnu helpfully prints a second copy of it right afterwards.
3123 # So I turn off expect logging for a moment.
3124 #
3125 # [ gdb_compile $ifile $ciexe_file executable $args ]
3126 # [ remote_exec $ciexe_file ]
3127 # [ source $ci_file.out ]
3128 #
3129 # I could give up on -E and just do this.
3130 # I didn't get desperate enough to try this.
3131 #
3132 # -- chastain 2004-01-06
3133
3134 proc get_compiler_info {{arg ""}} {
3135 # For compiler.c and compiler.cc
3136 global srcdir
3137
3138 # I am going to play with the log to keep noise out.
3139 global outdir
3140 global tool
3141
3142 # These come from compiler.c or compiler.cc
3143 global compiler_info
3144
3145 # Legacy global data symbols.
3146 global gcc_compiled
3147 global hp_cc_compiler
3148 global hp_aCC_compiler
3149
3150 if [info exists compiler_info] {
3151 # Already computed.
3152 return 0
3153 }
3154
3155 # Choose which file to preprocess.
3156 set ifile "${srcdir}/lib/compiler.c"
3157 if { $arg == "c++" } {
3158 set ifile "${srcdir}/lib/compiler.cc"
3159 }
3160
3161 # Run $ifile through the right preprocessor.
3162 # Toggle gdb.log to keep the compiler output out of the log.
3163 set saved_log [log_file -info]
3164 log_file
3165 if [is_remote host] {
3166 # We have to use -E and -o together, despite the comments
3167 # above, because of how DejaGnu handles remote host testing.
3168 set ppout "$outdir/compiler.i"
3169 gdb_compile "${ifile}" "$ppout" preprocess [list "$arg" quiet]
3170 set file [open $ppout r]
3171 set cppout [read $file]
3172 close $file
3173 } else {
3174 set cppout [ gdb_compile "${ifile}" "" preprocess [list "$arg" quiet] ]
3175 }
3176 eval log_file $saved_log
3177
3178 # Eval the output.
3179 set unknown 0
3180 foreach cppline [ split "$cppout" "\n" ] {
3181 if { [ regexp "^#" "$cppline" ] } {
3182 # line marker
3183 } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
3184 # blank line
3185 } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
3186 # eval this line
3187 verbose "get_compiler_info: $cppline" 2
3188 eval "$cppline"
3189 } else {
3190 # unknown line
3191 verbose -log "get_compiler_info: $cppline"
3192 set unknown 1
3193 }
3194 }
3195
3196 # Set to unknown if for some reason compiler_info didn't get defined.
3197 if ![info exists compiler_info] {
3198 verbose -log "get_compiler_info: compiler_info not provided"
3199 set compiler_info "unknown"
3200 }
3201 # Also set to unknown compiler if any diagnostics happened.
3202 if { $unknown } {
3203 verbose -log "get_compiler_info: got unexpected diagnostics"
3204 set compiler_info "unknown"
3205 }
3206
3207 # Set the legacy symbols.
3208 set gcc_compiled 0
3209 set hp_cc_compiler 0
3210 set hp_aCC_compiler 0
3211 if { [regexp "^gcc-1-" "$compiler_info" ] } { set gcc_compiled 1 }
3212 if { [regexp "^gcc-2-" "$compiler_info" ] } { set gcc_compiled 2 }
3213 if { [regexp "^gcc-3-" "$compiler_info" ] } { set gcc_compiled 3 }
3214 if { [regexp "^gcc-4-" "$compiler_info" ] } { set gcc_compiled 4 }
3215 if { [regexp "^gcc-5-" "$compiler_info" ] } { set gcc_compiled 5 }
3216 if { [regexp "^hpcc-" "$compiler_info" ] } { set hp_cc_compiler 1 }
3217 if { [regexp "^hpacc-" "$compiler_info" ] } { set hp_aCC_compiler 1 }
3218
3219 # Log what happened.
3220 verbose -log "get_compiler_info: $compiler_info"
3221
3222 # Most compilers will evaluate comparisons and other boolean
3223 # operations to 0 or 1.
3224 uplevel \#0 { set true 1 }
3225 uplevel \#0 { set false 0 }
3226
3227 # Use of aCC results in boolean results being displayed as
3228 # "true" or "false"
3229 if { $hp_aCC_compiler } {
3230 uplevel \#0 { set true true }
3231 uplevel \#0 { set false false }
3232 }
3233
3234 return 0
3235 }
3236
3237 # Return the compiler_info string if no arg is provided.
3238 # Otherwise the argument is a glob-style expression to match against
3239 # compiler_info.
3240
3241 proc test_compiler_info { {compiler ""} } {
3242 global compiler_info
3243 get_compiler_info
3244
3245 # If no arg, return the compiler_info string.
3246 if [string match "" $compiler] {
3247 return $compiler_info
3248 }
3249
3250 return [string match $compiler $compiler_info]
3251 }
3252
3253 proc current_target_name { } {
3254 global target_info
3255 if [info exists target_info(target,name)] {
3256 set answer $target_info(target,name)
3257 } else {
3258 set answer ""
3259 }
3260 return $answer
3261 }
3262
3263 set gdb_wrapper_initialized 0
3264 set gdb_wrapper_target ""
3265
3266 proc gdb_wrapper_init { args } {
3267 global gdb_wrapper_initialized
3268 global gdb_wrapper_file
3269 global gdb_wrapper_flags
3270 global gdb_wrapper_target
3271
3272 if { $gdb_wrapper_initialized == 1 } { return; }
3273
3274 if {[target_info exists needs_status_wrapper] && \
3275 [target_info needs_status_wrapper] != "0"} {
3276 set result [build_wrapper "testglue.o"]
3277 if { $result != "" } {
3278 set gdb_wrapper_file [lindex $result 0]
3279 set gdb_wrapper_flags [lindex $result 1]
3280 } else {
3281 warning "Status wrapper failed to build."
3282 }
3283 }
3284 set gdb_wrapper_initialized 1
3285 set gdb_wrapper_target [current_target_name]
3286 }
3287
3288 # Some targets need to always link a special object in. Save its path here.
3289 global gdb_saved_set_unbuffered_mode_obj
3290 set gdb_saved_set_unbuffered_mode_obj ""
3291
3292 proc gdb_compile {source dest type options} {
3293 global GDB_TESTCASE_OPTIONS
3294 global gdb_wrapper_file
3295 global gdb_wrapper_flags
3296 global gdb_wrapper_initialized
3297 global srcdir
3298 global objdir
3299 global gdb_saved_set_unbuffered_mode_obj
3300
3301 set outdir [file dirname $dest]
3302
3303 # Add platform-specific options if a shared library was specified using
3304 # "shlib=librarypath" in OPTIONS.
3305 set new_options ""
3306 set shlib_found 0
3307 set shlib_load 0
3308 foreach opt $options {
3309 if [regexp {^shlib=(.*)} $opt dummy_var shlib_name] {
3310 if [test_compiler_info "xlc-*"] {
3311 # IBM xlc compiler doesn't accept shared library named other
3312 # than .so: use "-Wl," to bypass this
3313 lappend source "-Wl,$shlib_name"
3314 } elseif { ([istarget "*-*-mingw*"]
3315 || [istarget *-*-cygwin*]
3316 || [istarget *-*-pe*])} {
3317 lappend source "${shlib_name}.a"
3318 } else {
3319 lappend source $shlib_name
3320 }
3321 if { $shlib_found == 0 } {
3322 set shlib_found 1
3323 if { ([istarget "*-*-mingw*"]
3324 || [istarget *-*-cygwin*]) } {
3325 lappend new_options "additional_flags=-Wl,--enable-auto-import"
3326 }
3327 if { [test_compiler_info "gcc-*"] || [test_compiler_info "clang-*"] } {
3328 # Undo debian's change in the default.
3329 # Put it at the front to not override any user-provided
3330 # value, and to make sure it appears in front of all the
3331 # shlibs!
3332 lappend new_options "early_flags=-Wl,--no-as-needed"
3333 }
3334 }
3335 } elseif { $opt == "shlib_load" } {
3336 set shlib_load 1
3337 } else {
3338 lappend new_options $opt
3339 }
3340 }
3341
3342 # We typically link to shared libraries using an absolute path, and
3343 # that's how they are found at runtime. If we are going to
3344 # dynamically load one by basename, we must specify rpath. If we
3345 # are using a remote host, DejaGNU will link to the shared library
3346 # using a relative path, so again we must specify an rpath.
3347 if { $shlib_load || ($shlib_found && [is_remote target]) } {
3348 if { ([istarget "*-*-mingw*"]
3349 || [istarget *-*-cygwin*]
3350 || [istarget *-*-pe*]
3351 || [istarget hppa*-*-hpux*])} {
3352 # Do not need anything.
3353 } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
3354 lappend new_options "ldflags=-Wl,-rpath,${outdir}"
3355 } elseif { [istarget arm*-*-symbianelf*] } {
3356 if { $shlib_load } {
3357 lappend new_options "libs=-ldl"
3358 }
3359 } else {
3360 if { $shlib_load } {
3361 lappend new_options "libs=-ldl"
3362 }
3363 lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
3364 }
3365 }
3366 set options $new_options
3367
3368 if [info exists GDB_TESTCASE_OPTIONS] {
3369 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS"
3370 }
3371 verbose "options are $options"
3372 verbose "source is $source $dest $type $options"
3373
3374 if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
3375
3376 if {[target_info exists needs_status_wrapper] && \
3377 [target_info needs_status_wrapper] != "0" && \
3378 [info exists gdb_wrapper_file]} {
3379 lappend options "libs=${gdb_wrapper_file}"
3380 lappend options "ldflags=${gdb_wrapper_flags}"
3381 }
3382
3383 # Replace the "nowarnings" option with the appropriate additional_flags
3384 # to disable compiler warnings.
3385 set nowarnings [lsearch -exact $options nowarnings]
3386 if {$nowarnings != -1} {
3387 if [target_info exists gdb,nowarnings_flag] {
3388 set flag "additional_flags=[target_info gdb,nowarnings_flag]"
3389 } else {
3390 set flag "additional_flags=-w"
3391 }
3392 set options [lreplace $options $nowarnings $nowarnings $flag]
3393 }
3394
3395 if { $type == "executable" } {
3396 if { ([istarget "*-*-mingw*"]
3397 || [istarget "*-*-*djgpp"]
3398 || [istarget "*-*-cygwin*"])} {
3399 # Force output to unbuffered mode, by linking in an object file
3400 # with a global contructor that calls setvbuf.
3401 #
3402 # Compile the special object seperatelly for two reasons:
3403 # 1) Insulate it from $options.
3404 # 2) Avoid compiling it for every gdb_compile invocation,
3405 # which is time consuming, especially if we're remote
3406 # host testing.
3407 #
3408 if { $gdb_saved_set_unbuffered_mode_obj == "" } {
3409 verbose "compiling gdb_saved_set_unbuffered_obj"
3410 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
3411 set unbuf_obj ${objdir}/set_unbuffered_mode.o
3412
3413 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
3414 if { $result != "" } {
3415 return $result
3416 }
3417 if {[is_remote host]} {
3418 set gdb_saved_set_unbuffered_mode_obj set_unbuffered_mode_saved.o
3419 } else {
3420 set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
3421 }
3422 # Link a copy of the output object, because the
3423 # original may be automatically deleted.
3424 remote_download host $unbuf_obj $gdb_saved_set_unbuffered_mode_obj
3425 } else {
3426 verbose "gdb_saved_set_unbuffered_obj already compiled"
3427 }
3428
3429 # Rely on the internal knowledge that the global ctors are ran in
3430 # reverse link order. In that case, we can use ldflags to
3431 # avoid copying the object file to the host multiple
3432 # times.
3433 # This object can only be added if standard libraries are
3434 # used. Thus, we need to disable it if -nostdlib option is used
3435 if {[lsearch -regexp $options "-nostdlib"] < 0 } {
3436 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
3437 }
3438 }
3439 }
3440
3441 set result [target_compile $source $dest $type $options]
3442
3443 # Prune uninteresting compiler (and linker) output.
3444 regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
3445
3446 regsub "\[\r\n\]*$" "$result" "" result
3447 regsub "^\[\r\n\]*" "$result" "" result
3448
3449 if {[lsearch $options quiet] < 0} {
3450 # We shall update this on a per language basis, to avoid
3451 # changing the entire testsuite in one go.
3452 if {[lsearch $options f77] >= 0} {
3453 gdb_compile_test $source $result
3454 } elseif { $result != "" } {
3455 clone_output "gdb compile failed, $result"
3456 }
3457 }
3458 return $result
3459 }
3460
3461
3462 # This is just like gdb_compile, above, except that it tries compiling
3463 # against several different thread libraries, to see which one this
3464 # system has.
3465 proc gdb_compile_pthreads {source dest type options} {
3466 set built_binfile 0
3467 set why_msg "unrecognized error"
3468 foreach lib {-lpthreads -lpthread -lthread ""} {
3469 # This kind of wipes out whatever libs the caller may have
3470 # set. Or maybe theirs will override ours. How infelicitous.
3471 set options_with_lib [concat $options [list libs=$lib quiet]]
3472 set ccout [gdb_compile $source $dest $type $options_with_lib]
3473 switch -regexp -- $ccout {
3474 ".*no posix threads support.*" {
3475 set why_msg "missing threads include file"
3476 break
3477 }
3478 ".*cannot open -lpthread.*" {
3479 set why_msg "missing runtime threads library"
3480 }
3481 ".*Can't find library for -lpthread.*" {
3482 set why_msg "missing runtime threads library"
3483 }
3484 {^$} {
3485 pass "successfully compiled posix threads test case"
3486 set built_binfile 1
3487 break
3488 }
3489 }
3490 }
3491 if {!$built_binfile} {
3492 unsupported "Couldn't compile [file tail $source]: ${why_msg}"
3493 return -1
3494 }
3495 }
3496
3497 # Build a shared library from SOURCES.
3498
3499 proc gdb_compile_shlib {sources dest options} {
3500 set obj_options $options
3501
3502 set info_options ""
3503 if { [lsearch -exact $options "c++"] >= 0 } {
3504 set info_options "c++"
3505 }
3506 if [get_compiler_info ${info_options}] {
3507 return -1
3508 }
3509
3510 switch -glob [test_compiler_info] {
3511 "xlc-*" {
3512 lappend obj_options "additional_flags=-qpic"
3513 }
3514 "clang-*" {
3515 if { !([istarget "*-*-cygwin*"]
3516 || [istarget "*-*-mingw*"]) } {
3517 lappend obj_options "additional_flags=-fpic"
3518 }
3519 }
3520 "gcc-*" {
3521 if { !([istarget "powerpc*-*-aix*"]
3522 || [istarget "rs6000*-*-aix*"]
3523 || [istarget "*-*-cygwin*"]
3524 || [istarget "*-*-mingw*"]
3525 || [istarget "*-*-pe*"]) } {
3526 lappend obj_options "additional_flags=-fpic"
3527 }
3528 }
3529 default {
3530 switch -glob [istarget] {
3531 "hppa*-hp-hpux*" {
3532 lappend obj_options "additional_flags=+z"
3533 }
3534 default {
3535 # don't know what the compiler is...
3536 }
3537 }
3538 }
3539 }
3540
3541 set outdir [file dirname $dest]
3542 set objects ""
3543 foreach source $sources {
3544 set sourcebase [file tail $source]
3545 if {[gdb_compile $source "${outdir}/${sourcebase}.o" object $obj_options] != ""} {
3546 return -1
3547 }
3548 lappend objects ${outdir}/${sourcebase}.o
3549 }
3550
3551 if [istarget "hppa*-*-hpux*"] {
3552 remote_exec build "ld -b ${objects} -o ${dest}"
3553 } else {
3554 set link_options $options
3555 if [test_compiler_info "xlc-*"] {
3556 lappend link_options "additional_flags=-qmkshrobj"
3557 } else {
3558 lappend link_options "additional_flags=-shared"
3559
3560 if { ([istarget "*-*-mingw*"]
3561 || [istarget *-*-cygwin*]
3562 || [istarget *-*-pe*]) } {
3563 if { [is_remote host] } {
3564 set name [file tail ${dest}]
3565 } else {
3566 set name ${dest}
3567 }
3568 lappend link_options "additional_flags=-Wl,--out-implib,${name}.a"
3569 } elseif [is_remote target] {
3570 # By default, we do not set the soname. This causes the linker
3571 # on ELF systems to create a DT_NEEDED entry in the executable
3572 # refering to the full path name of the library. This is a
3573 # problem in remote testing if the library is in a different
3574 # directory there. To fix this, we set a soname of just the
3575 # base filename for the library, and add an appropriate -rpath
3576 # to the main executable (in gdb_compile).
3577 set destbase [file tail $dest]
3578 lappend link_options "additional_flags=-Wl,-soname,$destbase"
3579 }
3580 }
3581 if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
3582 return -1
3583 }
3584 if { [is_remote host]
3585 && ([istarget "*-*-mingw*"]
3586 || [istarget *-*-cygwin*]
3587 || [istarget *-*-pe*]) } {
3588 set dest_tail_name [file tail ${dest}]
3589 remote_upload host $dest_tail_name.a ${dest}.a
3590 remote_file host delete $dest_tail_name.a
3591 }
3592 }
3593 return ""
3594 }
3595
3596 # This is just like gdb_compile_shlib, above, except that it tries compiling
3597 # against several different thread libraries, to see which one this
3598 # system has.
3599 proc gdb_compile_shlib_pthreads {sources dest options} {
3600 set built_binfile 0
3601 set why_msg "unrecognized error"
3602 foreach lib {-lpthreads -lpthread -lthread ""} {
3603 # This kind of wipes out whatever libs the caller may have
3604 # set. Or maybe theirs will override ours. How infelicitous.
3605 set options_with_lib [concat $options [list libs=$lib quiet]]
3606 set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
3607 switch -regexp -- $ccout {
3608 ".*no posix threads support.*" {
3609 set why_msg "missing threads include file"
3610 break
3611 }
3612 ".*cannot open -lpthread.*" {
3613 set why_msg "missing runtime threads library"
3614 }
3615 ".*Can't find library for -lpthread.*" {
3616 set why_msg "missing runtime threads library"
3617 }
3618 {^$} {
3619 pass "successfully compiled posix threads test case"
3620 set built_binfile 1
3621 break
3622 }
3623 }
3624 }
3625 if {!$built_binfile} {
3626 unsupported "Couldn't compile $sources: ${why_msg}"
3627 return -1
3628 }
3629 }
3630
3631 # This is just like gdb_compile_pthreads, above, except that we always add the
3632 # objc library for compiling Objective-C programs
3633 proc gdb_compile_objc {source dest type options} {
3634 set built_binfile 0
3635 set why_msg "unrecognized error"
3636 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
3637 # This kind of wipes out whatever libs the caller may have
3638 # set. Or maybe theirs will override ours. How infelicitous.
3639 if { $lib == "solaris" } {
3640 set lib "-lpthread -lposix4"
3641 }
3642 if { $lib != "-lobjc" } {
3643 set lib "-lobjc $lib"
3644 }
3645 set options_with_lib [concat $options [list libs=$lib quiet]]
3646 set ccout [gdb_compile $source $dest $type $options_with_lib]
3647 switch -regexp -- $ccout {
3648 ".*no posix threads support.*" {
3649 set why_msg "missing threads include file"
3650 break
3651 }
3652 ".*cannot open -lpthread.*" {
3653 set why_msg "missing runtime threads library"
3654 }
3655 ".*Can't find library for -lpthread.*" {
3656 set why_msg "missing runtime threads library"
3657 }
3658 {^$} {
3659 pass "successfully compiled objc with posix threads test case"
3660 set built_binfile 1
3661 break
3662 }
3663 }
3664 }
3665 if {!$built_binfile} {
3666 unsupported "Couldn't compile [file tail $source]: ${why_msg}"
3667 return -1
3668 }
3669 }
3670
3671 proc send_gdb { string } {
3672 global suppress_flag
3673 if { $suppress_flag } {
3674 return "suppressed"
3675 }
3676 return [remote_send host "$string"]
3677 }
3678
3679 # Send STRING to the inferior's terminal.
3680
3681 proc send_inferior { string } {
3682 global inferior_spawn_id
3683
3684 if {[catch "send -i $inferior_spawn_id -- \$string" errorInfo]} {
3685 return "$errorInfo"
3686 } else {
3687 return ""
3688 }
3689 }
3690
3691 #
3692 #
3693
3694 proc gdb_expect { args } {
3695 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
3696 set atimeout [lindex $args 0]
3697 set expcode [list [lindex $args 1]]
3698 } else {
3699 set expcode $args
3700 }
3701
3702 # A timeout argument takes precedence, otherwise of all the timeouts
3703 # select the largest.
3704 if [info exists atimeout] {
3705 set tmt $atimeout
3706 } else {
3707 set tmt [get_largest_timeout]
3708 }
3709
3710 global suppress_flag
3711 global remote_suppress_flag
3712 if [info exists remote_suppress_flag] {
3713 set old_val $remote_suppress_flag
3714 }
3715 if [info exists suppress_flag] {
3716 if { $suppress_flag } {
3717 set remote_suppress_flag 1
3718 }
3719 }
3720 set code [catch \
3721 {uplevel remote_expect host $tmt $expcode} string]
3722 if [info exists old_val] {
3723 set remote_suppress_flag $old_val
3724 } else {
3725 if [info exists remote_suppress_flag] {
3726 unset remote_suppress_flag
3727 }
3728 }
3729
3730 if {$code == 1} {
3731 global errorInfo errorCode
3732
3733 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
3734 } else {
3735 return -code $code $string
3736 }
3737 }
3738
3739 # gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
3740 #
3741 # Check for long sequence of output by parts.
3742 # TEST: is the test message to be printed with the test success/fail.
3743 # SENTINEL: Is the terminal pattern indicating that output has finished.
3744 # LIST: is the sequence of outputs to match.
3745 # If the sentinel is recognized early, it is considered an error.
3746 #
3747 # Returns:
3748 # 1 if the test failed,
3749 # 0 if the test passes,
3750 # -1 if there was an internal error.
3751
3752 proc gdb_expect_list {test sentinel list} {
3753 global gdb_prompt
3754 global suppress_flag
3755 set index 0
3756 set ok 1
3757 if { $suppress_flag } {
3758 set ok 0
3759 unresolved "${test}"
3760 }
3761 while { ${index} < [llength ${list}] } {
3762 set pattern [lindex ${list} ${index}]
3763 set index [expr ${index} + 1]
3764 verbose -log "gdb_expect_list pattern: /$pattern/" 2
3765 if { ${index} == [llength ${list}] } {
3766 if { ${ok} } {
3767 gdb_expect {
3768 -re "${pattern}${sentinel}" {
3769 # pass "${test}, pattern ${index} + sentinel"
3770 }
3771 -re "${sentinel}" {
3772 fail "${test} (pattern ${index} + sentinel)"
3773 set ok 0
3774 }
3775 -re ".*A problem internal to GDB has been detected" {
3776 fail "${test} (GDB internal error)"
3777 set ok 0
3778 gdb_internal_error_resync
3779 }
3780 timeout {
3781 fail "${test} (pattern ${index} + sentinel) (timeout)"
3782 set ok 0
3783 }
3784 }
3785 } else {
3786 # unresolved "${test}, pattern ${index} + sentinel"
3787 }
3788 } else {
3789 if { ${ok} } {
3790 gdb_expect {
3791 -re "${pattern}" {
3792 # pass "${test}, pattern ${index}"
3793 }
3794 -re "${sentinel}" {
3795 fail "${test} (pattern ${index})"
3796 set ok 0
3797 }
3798 -re ".*A problem internal to GDB has been detected" {
3799 fail "${test} (GDB internal error)"
3800 set ok 0
3801 gdb_internal_error_resync
3802 }
3803 timeout {
3804 fail "${test} (pattern ${index}) (timeout)"
3805 set ok 0
3806 }
3807 }
3808 } else {
3809 # unresolved "${test}, pattern ${index}"
3810 }
3811 }
3812 }
3813 if { ${ok} } {
3814 pass "${test}"
3815 return 0
3816 } else {
3817 return 1
3818 }
3819 }
3820
3821 #
3822 #
3823 proc gdb_suppress_entire_file { reason } {
3824 global suppress_flag
3825
3826 warning "$reason\n"
3827 set suppress_flag -1
3828 }
3829
3830 #
3831 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
3832 # gdb_expect to fail immediately (until the next call to
3833 # gdb_stop_suppressing_tests).
3834 #
3835 proc gdb_suppress_tests { args } {
3836 global suppress_flag
3837
3838 return; # fnf - disable pending review of results where
3839 # testsuite ran better without this
3840 incr suppress_flag
3841
3842 if { $suppress_flag == 1 } {
3843 if { [llength $args] > 0 } {
3844 warning "[lindex $args 0]\n"
3845 } else {
3846 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n"
3847 }
3848 }
3849 }
3850
3851 #
3852 # Clear suppress_flag.
3853 #
3854 proc gdb_stop_suppressing_tests { } {
3855 global suppress_flag
3856
3857 if [info exists suppress_flag] {
3858 if { $suppress_flag > 0 } {
3859 set suppress_flag 0
3860 clone_output "Tests restarted.\n"
3861 }
3862 } else {
3863 set suppress_flag 0
3864 }
3865 }
3866
3867 proc gdb_clear_suppressed { } {
3868 global suppress_flag
3869
3870 set suppress_flag 0
3871 }
3872
3873 # Spawn the gdb process.
3874 #
3875 # This doesn't expect any output or do any other initialization,
3876 # leaving those to the caller.
3877 #
3878 # Overridable function -- you can override this function in your
3879 # baseboard file.
3880
3881 proc gdb_spawn { } {
3882 default_gdb_spawn
3883 }
3884
3885 # Spawn GDB with CMDLINE_FLAGS appended to the GDBFLAGS global.
3886
3887 proc gdb_spawn_with_cmdline_opts { cmdline_flags } {
3888 global GDBFLAGS
3889
3890 set saved_gdbflags $GDBFLAGS
3891
3892 if {$GDBFLAGS != ""} {
3893 append GDBFLAGS " "
3894 }
3895 append GDBFLAGS $cmdline_flags
3896
3897 set res [gdb_spawn]
3898
3899 set GDBFLAGS $saved_gdbflags
3900
3901 return $res
3902 }
3903
3904 # Start gdb running, wait for prompt, and disable the pagers.
3905
3906 # Overridable function -- you can override this function in your
3907 # baseboard file.
3908
3909 proc gdb_start { } {
3910 default_gdb_start
3911 }
3912
3913 proc gdb_exit { } {
3914 catch default_gdb_exit
3915 }
3916
3917 # Return true if we can spawn a program on the target and attach to
3918 # it.
3919
3920 proc can_spawn_for_attach { } {
3921 # We use exp_pid to get the inferior's pid, assuming that gives
3922 # back the pid of the program. On remote boards, that would give
3923 # us instead the PID of e.g., the ssh client, etc.
3924 if [is_remote target] then {
3925 return 0
3926 }
3927
3928 # The "attach" command doesn't make sense when the target is
3929 # stub-like, where GDB finds the program already started on
3930 # initial connection.
3931 if {[target_info exists use_gdb_stub]} {
3932 return 0
3933 }
3934
3935 # Assume yes.
3936 return 1
3937 }
3938
3939 # Kill a progress previously started with spawn_wait_for_attach, and
3940 # reap its wait status. PROC_SPAWN_ID is the spawn id associated with
3941 # the process.
3942
3943 proc kill_wait_spawned_process { proc_spawn_id } {
3944 set pid [exp_pid -i $proc_spawn_id]
3945
3946 verbose -log "killing ${pid}"
3947 remote_exec build "kill -9 ${pid}"
3948
3949 verbose -log "closing ${proc_spawn_id}"
3950 catch "close -i $proc_spawn_id"
3951 verbose -log "waiting for ${proc_spawn_id}"
3952
3953 # If somehow GDB ends up still attached to the process here, a
3954 # blocking wait hangs until gdb is killed (or until gdb / the
3955 # ptracer reaps the exit status too, but that won't happen because
3956 # something went wrong.) Passing -nowait makes expect tell Tcl to
3957 # wait for the PID in the background. That's fine because we
3958 # don't care about the exit status. */
3959 wait -nowait -i $proc_spawn_id
3960 }
3961
3962 # Returns the process id corresponding to the given spawn id.
3963
3964 proc spawn_id_get_pid { spawn_id } {
3965 set testpid [exp_pid -i $spawn_id]
3966
3967 if { [istarget "*-*-cygwin*"] } {
3968 # testpid is the Cygwin PID, GDB uses the Windows PID, which
3969 # might be different due to the way fork/exec works.
3970 set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
3971 }
3972
3973 return $testpid
3974 }
3975
3976 # Start a set of programs running and then wait for a bit, to be sure
3977 # that they can be attached to. Return a list of processes spawn IDs,
3978 # one element for each process spawned. It's a test error to call
3979 # this when [can_spawn_for_attach] is false.
3980
3981 proc spawn_wait_for_attach { executable_list } {
3982 set spawn_id_list {}
3983
3984 if ![can_spawn_for_attach] {
3985 # The caller should have checked can_spawn_for_attach itself
3986 # before getting here.
3987 error "can't spawn for attach with this target/board"
3988 }
3989
3990 foreach {executable} $executable_list {
3991 # Note we use Expect's spawn, not Tcl's exec, because with
3992 # spawn we control when to wait for/reap the process. That
3993 # allows killing the process by PID without being subject to
3994 # pid-reuse races.
3995 lappend spawn_id_list [remote_spawn target $executable]
3996 }
3997
3998 sleep 2
3999
4000 return $spawn_id_list
4001 }
4002
4003 #
4004 # gdb_load_cmd -- load a file into the debugger.
4005 # ARGS - additional args to load command.
4006 # return a -1 if anything goes wrong.
4007 #
4008 proc gdb_load_cmd { args } {
4009 global gdb_prompt
4010
4011 if [target_info exists gdb_load_timeout] {
4012 set loadtimeout [target_info gdb_load_timeout]
4013 } else {
4014 set loadtimeout 1600
4015 }
4016 send_gdb "load $args\n"
4017 verbose "Timeout is now $loadtimeout seconds" 2
4018 gdb_expect $loadtimeout {
4019 -re "Loading section\[^\r\]*\r\n" {
4020 exp_continue
4021 }
4022 -re "Start address\[\r\]*\r\n" {
4023 exp_continue
4024 }
4025 -re "Transfer rate\[\r\]*\r\n" {
4026 exp_continue
4027 }
4028 -re "Memory access error\[^\r\]*\r\n" {
4029 perror "Failed to load program"
4030 return -1
4031 }
4032 -re "$gdb_prompt $" {
4033 return 0
4034 }
4035 -re "(.*)\r\n$gdb_prompt " {
4036 perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
4037 return -1
4038 }
4039 timeout {
4040 perror "Timed out trying to load $args."
4041 return -1
4042 }
4043 }
4044 return -1
4045 }
4046
4047 # Invoke "gcore". CORE is the name of the core file to write. TEST
4048 # is the name of the test case. This will return 1 if the core file
4049 # was created, 0 otherwise. If this fails to make a core file because
4050 # this configuration of gdb does not support making core files, it
4051 # will call "unsupported", not "fail". However, if this fails to make
4052 # a core file for some other reason, then it will call "fail".
4053
4054 proc gdb_gcore_cmd {core test} {
4055 global gdb_prompt
4056
4057 set result 0
4058 gdb_test_multiple "gcore $core" $test {
4059 -re "Saved corefile .*\[\r\n\]+$gdb_prompt $" {
4060 pass $test
4061 set result 1
4062 }
4063 -re "(?:Can't create a corefile|Target does not support core file generation\\.)\[\r\n\]+$gdb_prompt $" {
4064 unsupported $test
4065 }
4066 }
4067
4068 return $result
4069 }
4070
4071 # Load core file CORE. TEST is the name of the test case.
4072 # This will record a pass/fail for loading the core file.
4073 # Returns:
4074 # 1 - core file is successfully loaded
4075 # 0 - core file loaded but has a non fatal error
4076 # -1 - core file failed to load
4077
4078 proc gdb_core_cmd { core test } {
4079 global gdb_prompt
4080
4081 gdb_test_multiple "core $core" "$test" {
4082 -re "\\\[Thread debugging using \[^ \r\n\]* enabled\\\]\r\n" {
4083 exp_continue
4084 }
4085 -re " is not a core dump:.*\r\n$gdb_prompt $" {
4086 fail "$test (bad file format)"
4087 return -1
4088 }
4089 -re ": No such file or directory.*\r\n$gdb_prompt $" {
4090 fail "$test (file not found)"
4091 return -1
4092 }
4093 -re "Couldn't find .* registers in core file.*\r\n$gdb_prompt $" {
4094 fail "$test (incomplete note section)"
4095 return 0
4096 }
4097 -re "Core was generated by .*\r\n$gdb_prompt $" {
4098 pass "$test"
4099 return 1
4100 }
4101 -re ".*$gdb_prompt $" {
4102 fail "$test"
4103 return -1
4104 }
4105 timeout {
4106 fail "$test (timeout)"
4107 return -1
4108 }
4109 }
4110 fail "unsupported output from 'core' command"
4111 return -1
4112 }
4113
4114 # Return the filename to download to the target and load on the target
4115 # for this shared library. Normally just LIBNAME, unless shared libraries
4116 # for this target have separate link and load images.
4117
4118 proc shlib_target_file { libname } {
4119 return $libname
4120 }
4121
4122 # Return the filename GDB will load symbols from when debugging this
4123 # shared library. Normally just LIBNAME, unless shared libraries for
4124 # this target have separate link and load images.
4125
4126 proc shlib_symbol_file { libname } {
4127 return $libname
4128 }
4129
4130 # Return the filename to download to the target and load for this
4131 # executable. Normally just BINFILE unless it is renamed to something
4132 # else for this target.
4133
4134 proc exec_target_file { binfile } {
4135 return $binfile
4136 }
4137
4138 # Return the filename GDB will load symbols from when debugging this
4139 # executable. Normally just BINFILE unless executables for this target
4140 # have separate files for symbols.
4141
4142 proc exec_symbol_file { binfile } {
4143 return $binfile
4144 }
4145
4146 # Rename the executable file. Normally this is just BINFILE1 being renamed
4147 # to BINFILE2, but some targets require multiple binary files.
4148 proc gdb_rename_execfile { binfile1 binfile2 } {
4149 file rename -force [exec_target_file ${binfile1}] \
4150 [exec_target_file ${binfile2}]
4151 if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
4152 file rename -force [exec_symbol_file ${binfile1}] \
4153 [exec_symbol_file ${binfile2}]
4154 }
4155 }
4156
4157 # "Touch" the executable file to update the date. Normally this is just
4158 # BINFILE, but some targets require multiple files.
4159 proc gdb_touch_execfile { binfile } {
4160 set time [clock seconds]
4161 file mtime [exec_target_file ${binfile}] $time
4162 if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
4163 file mtime [exec_symbol_file ${binfile}] $time
4164 }
4165 }
4166
4167 # Like remote_download but provides a gdb-specific behavior. If DEST
4168 # is "host", and the host is not remote, and TOFILE is not specified,
4169 # then the [file tail] of FROMFILE is passed through
4170 # standard_output_file to compute the destination.
4171
4172 proc gdb_remote_download {dest fromfile {tofile {}}} {
4173 if {$dest == "host" && ![is_remote host] && $tofile == ""} {
4174 set tofile [standard_output_file [file tail $fromfile]]
4175 }
4176
4177 if { $tofile == "" } {
4178 return [remote_download $dest $fromfile]
4179 } else {
4180 return [remote_download $dest $fromfile $tofile]
4181 }
4182 }
4183
4184 # gdb_download
4185 #
4186 # Copy a file to the remote target and return its target filename.
4187 # Schedule the file to be deleted at the end of this test.
4188
4189 proc gdb_download { filename } {
4190 global cleanfiles
4191
4192 set destname [remote_download target $filename]
4193 lappend cleanfiles $destname
4194 return $destname
4195 }
4196
4197 # gdb_load_shlibs LIB...
4198 #
4199 # Copy the listed libraries to the target.
4200
4201 proc gdb_load_shlibs { args } {
4202 if {![is_remote target]} {
4203 return
4204 }
4205
4206 foreach file $args {
4207 gdb_download [shlib_target_file $file]
4208 }
4209
4210 # Even if the target supplies full paths for shared libraries,
4211 # they may not be paths for this system.
4212 gdb_test "set solib-search-path [file dirname [lindex $args 0]]" "" ""
4213 }
4214
4215 #
4216 # gdb_load -- load a file into the debugger. Specifying no file
4217 # defaults to the executable currently being debugged.
4218 # The return value is 0 for success, -1 for failure.
4219 # Many files in config/*.exp override this procedure.
4220 #
4221 proc gdb_load { arg } {
4222 if { $arg != "" } {
4223 return [gdb_file_cmd $arg]
4224 }
4225 return 0
4226 }
4227
4228 # gdb_reload -- load a file into the target. Called before "running",
4229 # either the first time or after already starting the program once,
4230 # for remote targets. Most files that override gdb_load should now
4231 # override this instead.
4232
4233 proc gdb_reload { } {
4234 # For the benefit of existing configurations, default to gdb_load.
4235 # Specifying no file defaults to the executable currently being
4236 # debugged.
4237 return [gdb_load ""]
4238 }
4239
4240 proc gdb_continue { function } {
4241 global decimal
4242
4243 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"]
4244 }
4245
4246 proc default_gdb_init { test_file_name } {
4247 global gdb_wrapper_initialized
4248 global gdb_wrapper_target
4249 global gdb_test_file_name
4250 global cleanfiles
4251 global pf_prefix
4252
4253 set cleanfiles {}
4254
4255 gdb_clear_suppressed
4256
4257 set gdb_test_file_name [file rootname [file tail $test_file_name]]
4258
4259 # Make sure that the wrapper is rebuilt
4260 # with the appropriate multilib option.
4261 if { $gdb_wrapper_target != [current_target_name] } {
4262 set gdb_wrapper_initialized 0
4263 }
4264
4265 # Unlike most tests, we have a small number of tests that generate
4266 # a very large amount of output. We therefore increase the expect
4267 # buffer size to be able to contain the entire test output. This
4268 # is especially needed by gdb.base/info-macros.exp.
4269 match_max -d 65536
4270 # Also set this value for the currently running GDB.
4271 match_max [match_max -d]
4272
4273 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
4274 set pf_prefix "[file tail [file dirname $test_file_name]]/[file tail $test_file_name]:"
4275
4276 global gdb_prompt
4277 if [target_info exists gdb_prompt] {
4278 set gdb_prompt [target_info gdb_prompt]
4279 } else {
4280 set gdb_prompt "\\(gdb\\)"
4281 }
4282 global use_gdb_stub
4283 if [info exists use_gdb_stub] {
4284 unset use_gdb_stub
4285 }
4286 }
4287
4288 # Return a path using GDB_PARALLEL.
4289 # ARGS is a list of path elements to append to "$objdir/$GDB_PARALLEL".
4290 # GDB_PARALLEL must be defined, the caller must check.
4291 #
4292 # The default value for GDB_PARALLEL is, canonically, ".".
4293 # The catch is that tests don't expect an additional "./" in file paths so
4294 # omit any directory for the default case.
4295 # GDB_PARALLEL is written as "yes" for the default case in Makefile.in to mark
4296 # its special handling.
4297
4298 proc make_gdb_parallel_path { args } {
4299 global GDB_PARALLEL objdir
4300 set joiner [list "file" "join" $objdir]
4301 if { $GDB_PARALLEL != "yes" } {
4302 lappend joiner $GDB_PARALLEL
4303 }
4304 set joiner [concat $joiner $args]
4305 return [eval $joiner]
4306 }
4307
4308 # Turn BASENAME into a full file name in the standard output
4309 # directory. It is ok if BASENAME is the empty string; in this case
4310 # the directory is returned.
4311
4312 proc standard_output_file {basename} {
4313 global objdir subdir gdb_test_file_name GDB_PARALLEL
4314
4315 if {[info exists GDB_PARALLEL]} {
4316 set dir [make_gdb_parallel_path outputs $subdir $gdb_test_file_name]
4317 file mkdir $dir
4318 return [file join $dir $basename]
4319 } else {
4320 return [file join $objdir $subdir $basename]
4321 }
4322 }
4323
4324 # Return the name of a file in our standard temporary directory.
4325
4326 proc standard_temp_file {basename} {
4327 global objdir GDB_PARALLEL
4328
4329 if {[info exists GDB_PARALLEL]} {
4330 return [make_gdb_parallel_path temp $basename]
4331 } else {
4332 return $basename
4333 }
4334 }
4335
4336 # Set 'testfile', 'srcfile', and 'binfile'.
4337 #
4338 # ARGS is a list of source file specifications.
4339 # Without any arguments, the .exp file's base name is used to
4340 # compute the source file name. The ".c" extension is added in this case.
4341 # If ARGS is not empty, each entry is a source file specification.
4342 # If the specification starts with a ".", it is treated as a suffix
4343 # to append to the .exp file's base name.
4344 # If the specification is the empty string, it is treated as if it
4345 # were ".c".
4346 # Otherwise it is a file name.
4347 # The first file in the list is used to set the 'srcfile' global.
4348 # Each subsequent name is used to set 'srcfile2', 'srcfile3', etc.
4349 #
4350 # Most tests should call this without arguments.
4351 #
4352 # If a completely different binary file name is needed, then it
4353 # should be handled in the .exp file with a suitable comment.
4354
4355 proc standard_testfile {args} {
4356 global gdb_test_file_name
4357 global subdir
4358 global gdb_test_file_last_vars
4359
4360 # Outputs.
4361 global testfile binfile
4362
4363 set testfile $gdb_test_file_name
4364 set binfile [standard_output_file ${testfile}]
4365
4366 if {[llength $args] == 0} {
4367 set args .c
4368 }
4369
4370 # Unset our previous output variables.
4371 # This can help catch hidden bugs.
4372 if {[info exists gdb_test_file_last_vars]} {
4373 foreach varname $gdb_test_file_last_vars {
4374 global $varname
4375 catch {unset $varname}
4376 }
4377 }
4378 # 'executable' is often set by tests.
4379 set gdb_test_file_last_vars {executable}
4380
4381 set suffix ""
4382 foreach arg $args {
4383 set varname srcfile$suffix
4384 global $varname
4385
4386 # Handle an extension.
4387 if {$arg == ""} {
4388 set arg $testfile.c
4389 } elseif {[string range $arg 0 0] == "."} {
4390 set arg $testfile$arg
4391 }
4392
4393 set $varname $arg
4394 lappend gdb_test_file_last_vars $varname
4395
4396 if {$suffix == ""} {
4397 set suffix 2
4398 } else {
4399 incr suffix
4400 }
4401 }
4402 }
4403
4404 # The default timeout used when testing GDB commands. We want to use
4405 # the same timeout as the default dejagnu timeout, unless the user has
4406 # already provided a specific value (probably through a site.exp file).
4407 global gdb_test_timeout
4408 if ![info exists gdb_test_timeout] {
4409 set gdb_test_timeout $timeout
4410 }
4411
4412 # A list of global variables that GDB testcases should not use.
4413 # We try to prevent their use by monitoring write accesses and raising
4414 # an error when that happens.
4415 set banned_variables { bug_id prms_id }
4416
4417 # A list of procedures that GDB testcases should not use.
4418 # We try to prevent their use by monitoring invocations and raising
4419 # an error when that happens.
4420 set banned_procedures { strace }
4421
4422 # gdb_init is called by runtest at start, but also by several
4423 # tests directly; gdb_finish is only called from within runtest after
4424 # each test source execution.
4425 # Placing several traces by repetitive calls to gdb_init leads
4426 # to problems, as only one trace is removed in gdb_finish.
4427 # To overcome this possible problem, we add a variable that records
4428 # if the banned variables and procedures are already traced.
4429 set banned_traced 0
4430
4431 proc gdb_init { test_file_name } {
4432 # Reset the timeout value to the default. This way, any testcase
4433 # that changes the timeout value without resetting it cannot affect
4434 # the timeout used in subsequent testcases.
4435 global gdb_test_timeout
4436 global timeout
4437 set timeout $gdb_test_timeout
4438
4439 if { [regexp ".*gdb\.reverse\/.*" $test_file_name]
4440 && [target_info exists gdb_reverse_timeout] } {
4441 set timeout [target_info gdb_reverse_timeout]
4442 }
4443
4444 # If GDB_INOTIFY is given, check for writes to '.'. This is a
4445 # debugging tool to help confirm that the test suite is
4446 # parallel-safe. You need "inotifywait" from the
4447 # inotify-tools package to use this.
4448 global GDB_INOTIFY inotify_pid
4449 if {[info exists GDB_INOTIFY] && ![info exists inotify_pid]} {
4450 global outdir tool inotify_log_file
4451
4452 set exclusions {outputs temp gdb[.](log|sum) cache}
4453 set exclusion_re ([join $exclusions |])
4454
4455 set inotify_log_file [standard_temp_file inotify.out]
4456 set inotify_pid [exec inotifywait -r -m -e move,create,delete . \
4457 --exclude $exclusion_re \
4458 |& tee -a $outdir/$tool.log $inotify_log_file &]
4459
4460 # Wait for the watches; hopefully this is long enough.
4461 sleep 2
4462
4463 # Clear the log so that we don't emit a warning the first time
4464 # we check it.
4465 set fd [open $inotify_log_file w]
4466 close $fd
4467 }
4468
4469 # Block writes to all banned variables, and invocation of all
4470 # banned procedures...
4471 global banned_variables
4472 global banned_procedures
4473 global banned_traced
4474 if (!$banned_traced) {
4475 foreach banned_var $banned_variables {
4476 global "$banned_var"
4477 trace add variable "$banned_var" write error
4478 }
4479 foreach banned_proc $banned_procedures {
4480 global "$banned_proc"
4481 trace add execution "$banned_proc" enter error
4482 }
4483 set banned_traced 1
4484 }
4485
4486 # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
4487 # messages as expected.
4488 setenv LC_ALL C
4489 setenv LC_CTYPE C
4490 setenv LANG C
4491
4492 # Don't let a .inputrc file or an existing setting of INPUTRC mess up
4493 # the test results. Even if /dev/null doesn't exist on the particular
4494 # platform, the readline library will use the default setting just by
4495 # failing to open the file. OTOH, opening /dev/null successfully will
4496 # also result in the default settings being used since nothing will be
4497 # read from this file.
4498 setenv INPUTRC "/dev/null"
4499
4500 # The gdb.base/readline.exp arrow key test relies on the standard VT100
4501 # bindings, so make sure that an appropriate terminal is selected.
4502 # The same bug doesn't show up if we use ^P / ^N instead.
4503 setenv TERM "vt100"
4504
4505 # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
4506 # grep. Clear GREP_OPTIONS to make the behavior predictable,
4507 # especially having color output turned on can cause tests to fail.
4508 setenv GREP_OPTIONS ""
4509
4510 # Clear $gdbserver_reconnect_p.
4511 global gdbserver_reconnect_p
4512 set gdbserver_reconnect_p 1
4513 unset gdbserver_reconnect_p
4514
4515 return [default_gdb_init $test_file_name]
4516 }
4517
4518 proc gdb_finish { } {
4519 global gdbserver_reconnect_p
4520 global gdb_prompt
4521 global cleanfiles
4522
4523 # Exit first, so that the files are no longer in use.
4524 gdb_exit
4525
4526 if { [llength $cleanfiles] > 0 } {
4527 eval remote_file target delete $cleanfiles
4528 set cleanfiles {}
4529 }
4530
4531 # Unblock write access to the banned variables. Dejagnu typically
4532 # resets some of them between testcases.
4533 global banned_variables
4534 global banned_procedures
4535 global banned_traced
4536 if ($banned_traced) {
4537 foreach banned_var $banned_variables {
4538 global "$banned_var"
4539 trace remove variable "$banned_var" write error
4540 }
4541 foreach banned_proc $banned_procedures {
4542 global "$banned_proc"
4543 trace remove execution "$banned_proc" enter error
4544 }
4545 set banned_traced 0
4546 }
4547 }
4548
4549 global debug_format
4550 set debug_format "unknown"
4551
4552 # Run the gdb command "info source" and extract the debugging format
4553 # information from the output and save it in debug_format.
4554
4555 proc get_debug_format { } {
4556 global gdb_prompt
4557 global verbose
4558 global expect_out
4559 global debug_format
4560
4561 set debug_format "unknown"
4562 send_gdb "info source\n"
4563 gdb_expect 10 {
4564 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
4565 set debug_format $expect_out(1,string)
4566 verbose "debug format is $debug_format"
4567 return 1
4568 }
4569 -re "No current source file.\r\n$gdb_prompt $" {
4570 perror "get_debug_format used when no current source file"
4571 return 0
4572 }
4573 -re "$gdb_prompt $" {
4574 warning "couldn't check debug format (no valid response)."
4575 return 1
4576 }
4577 timeout {
4578 warning "couldn't check debug format (timeout)."
4579 return 1
4580 }
4581 }
4582 }
4583
4584 # Return true if FORMAT matches the debug format the current test was
4585 # compiled with. FORMAT is a shell-style globbing pattern; it can use
4586 # `*', `[...]', and so on.
4587 #
4588 # This function depends on variables set by `get_debug_format', above.
4589
4590 proc test_debug_format {format} {
4591 global debug_format
4592
4593 return [expr [string match $format $debug_format] != 0]
4594 }
4595
4596 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
4597 # COFF, stabs, etc). If that format matches the format that the
4598 # current test was compiled with, then the next test is expected to
4599 # fail for any target. Returns 1 if the next test or set of tests is
4600 # expected to fail, 0 otherwise (or if it is unknown). Must have
4601 # previously called get_debug_format.
4602 proc setup_xfail_format { format } {
4603 set ret [test_debug_format $format]
4604
4605 if {$ret} then {
4606 setup_xfail "*-*-*"
4607 }
4608 return $ret
4609 }
4610
4611 # gdb_get_line_number TEXT [FILE]
4612 #
4613 # Search the source file FILE, and return the line number of the
4614 # first line containing TEXT. If no match is found, an error is thrown.
4615 #
4616 # TEXT is a string literal, not a regular expression.
4617 #
4618 # The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
4619 # specified, and does not start with "/", then it is assumed to be in
4620 # "$srcdir/$subdir". This is awkward, and can be fixed in the future,
4621 # by changing the callers and the interface at the same time.
4622 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
4623 # gdb.base/ena-dis-br.exp.
4624 #
4625 # Use this function to keep your test scripts independent of the
4626 # exact line numbering of the source file. Don't write:
4627 #
4628 # send_gdb "break 20"
4629 #
4630 # This means that if anyone ever edits your test's source file,
4631 # your test could break. Instead, put a comment like this on the
4632 # source file line you want to break at:
4633 #
4634 # /* breakpoint spot: frotz.exp: test name */
4635 #
4636 # and then write, in your test script (which we assume is named
4637 # frotz.exp):
4638 #
4639 # send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
4640 #
4641 # (Yes, Tcl knows how to handle the nested quotes and brackets.
4642 # Try this:
4643 # $ tclsh
4644 # % puts "foo [lindex "bar baz" 1]"
4645 # foo baz
4646 # %
4647 # Tcl is quite clever, for a little stringy language.)
4648 #
4649 # ===
4650 #
4651 # The previous implementation of this procedure used the gdb search command.
4652 # This version is different:
4653 #
4654 # . It works with MI, and it also works when gdb is not running.
4655 #
4656 # . It operates on the build machine, not the host machine.
4657 #
4658 # . For now, this implementation fakes a current directory of
4659 # $srcdir/$subdir to be compatible with the old implementation.
4660 # This will go away eventually and some callers will need to
4661 # be changed.
4662 #
4663 # . The TEXT argument is literal text and matches literally,
4664 # not a regular expression as it was before.
4665 #
4666 # . State changes in gdb, such as changing the current file
4667 # and setting $_, no longer happen.
4668 #
4669 # After a bit of time we can forget about the differences from the
4670 # old implementation.
4671 #
4672 # --chastain 2004-08-05
4673
4674 proc gdb_get_line_number { text { file "" } } {
4675 global srcdir
4676 global subdir
4677 global srcfile
4678
4679 if { "$file" == "" } then {
4680 set file "$srcfile"
4681 }
4682 if { ! [regexp "^/" "$file"] } then {
4683 set file "$srcdir/$subdir/$file"
4684 }
4685
4686 if { [ catch { set fd [open "$file"] } message ] } then {
4687 error "$message"
4688 }
4689
4690 set found -1
4691 for { set line 1 } { 1 } { incr line } {
4692 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
4693 error "$message"
4694 }
4695 if { $nchar < 0 } then {
4696 break
4697 }
4698 if { [string first "$text" "$body"] >= 0 } then {
4699 set found $line
4700 break
4701 }
4702 }
4703
4704 if { [ catch { close "$fd" } message ] } then {
4705 error "$message"
4706 }
4707
4708 if {$found == -1} {
4709 error "undefined tag \"$text\""
4710 }
4711
4712 return $found
4713 }
4714
4715 # Continue the program until it ends.
4716 #
4717 # MSSG is the error message that gets printed. If not given, a
4718 # default is used.
4719 # COMMAND is the command to invoke. If not given, "continue" is
4720 # used.
4721 # ALLOW_EXTRA is a flag indicating whether the test should expect
4722 # extra output between the "Continuing." line and the program
4723 # exiting. By default it is zero; if nonzero, any extra output
4724 # is accepted.
4725
4726 proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
4727 global inferior_exited_re use_gdb_stub
4728
4729 if {$mssg == ""} {
4730 set text "continue until exit"
4731 } else {
4732 set text "continue until exit at $mssg"
4733 }
4734 if {$allow_extra} {
4735 set extra ".*"
4736 } else {
4737 set extra ""
4738 }
4739
4740 # By default, we don't rely on exit() behavior of remote stubs --
4741 # it's common for exit() to be implemented as a simple infinite
4742 # loop, or a forced crash/reset. For native targets, by default, we
4743 # assume process exit is reported as such. If a non-reliable target
4744 # is used, we set a breakpoint at exit, and continue to that.
4745 if { [target_info exists exit_is_reliable] } {
4746 set exit_is_reliable [target_info exit_is_reliable]
4747 } else {
4748 set exit_is_reliable [expr ! $use_gdb_stub]
4749 }
4750
4751 if { ! $exit_is_reliable } {
4752 if {![gdb_breakpoint "exit"]} {
4753 return 0
4754 }
4755 gdb_test $command "Continuing..*Breakpoint .*exit.*" \
4756 $text
4757 } else {
4758 # Continue until we exit. Should not stop again.
4759 # Don't bother to check the output of the program, that may be
4760 # extremely tough for some remote systems.
4761 gdb_test $command \
4762 "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
4763 $text
4764 }
4765 }
4766
4767 proc rerun_to_main {} {
4768 global gdb_prompt use_gdb_stub
4769
4770 if $use_gdb_stub {
4771 gdb_run_cmd
4772 gdb_expect {
4773 -re ".*Breakpoint .*main .*$gdb_prompt $"\
4774 {pass "rerun to main" ; return 0}
4775 -re "$gdb_prompt $"\
4776 {fail "rerun to main" ; return 0}
4777 timeout {fail "(timeout) rerun to main" ; return 0}
4778 }
4779 } else {
4780 send_gdb "run\n"
4781 gdb_expect {
4782 -re "The program .* has been started already.*y or n. $" {
4783 send_gdb "y\n"
4784 exp_continue
4785 }
4786 -re "Starting program.*$gdb_prompt $"\
4787 {pass "rerun to main" ; return 0}
4788 -re "$gdb_prompt $"\
4789 {fail "rerun to main" ; return 0}
4790 timeout {fail "(timeout) rerun to main" ; return 0}
4791 }
4792 }
4793 }
4794
4795 # Print a message and return true if a test should be skipped
4796 # due to lack of floating point suport.
4797
4798 proc gdb_skip_float_test { msg } {
4799 if [target_info exists gdb,skip_float_tests] {
4800 verbose "Skipping test '$msg': no float tests."
4801 return 1
4802 }
4803 return 0
4804 }
4805
4806 # Print a message and return true if a test should be skipped
4807 # due to lack of stdio support.
4808
4809 proc gdb_skip_stdio_test { msg } {
4810 if [target_info exists gdb,noinferiorio] {
4811 verbose "Skipping test '$msg': no inferior i/o."
4812 return 1
4813 }
4814 return 0
4815 }
4816
4817 proc gdb_skip_bogus_test { msg } {
4818 return 0
4819 }
4820
4821 # Return true if a test should be skipped due to lack of XML support
4822 # in the host GDB.
4823 # NOTE: This must be called while gdb is *not* running.
4824
4825 gdb_caching_proc gdb_skip_xml_test {
4826 global gdb_prompt
4827 global srcdir
4828
4829 set xml_file [gdb_remote_download host "${srcdir}/gdb.xml/trivial.xml"]
4830
4831 gdb_start
4832 set xml_missing 0
4833 gdb_test_multiple "set tdesc filename $xml_file" "" {
4834 -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
4835 set xml_missing 1
4836 }
4837 -re ".*$gdb_prompt $" { }
4838 }
4839 gdb_exit
4840 return $xml_missing
4841 }
4842
4843 # Return true if argv[0] is available.
4844
4845 gdb_caching_proc gdb_has_argv0 {
4846 set result 0
4847
4848 # Set up, compile, and execute a test program to check whether
4849 # argv[0] is available.
4850 set src [standard_temp_file has_argv0[pid].c]
4851 set exe [standard_temp_file has_argv0[pid].x]
4852
4853 gdb_produce_source $src {
4854 int main (int argc, char **argv) {
4855 return 0;
4856 }
4857 }
4858
4859 gdb_compile $src $exe executable {debug}
4860
4861 # Helper proc.
4862 proc gdb_has_argv0_1 { exe } {
4863 global srcdir subdir
4864 global gdb_prompt hex
4865
4866 gdb_exit
4867 gdb_start
4868 gdb_reinitialize_dir $srcdir/$subdir
4869 gdb_load "$exe"
4870
4871 # Set breakpoint on main.
4872 gdb_test_multiple "break main" "break main" {
4873 -re "Breakpoint.*${gdb_prompt} $" {
4874 }
4875 -re "${gdb_prompt} $" {
4876 return 0
4877 }
4878 }
4879
4880 # Run to main.
4881 gdb_run_cmd
4882 gdb_test_multiple "" "run to main" {
4883 -re "Breakpoint.*${gdb_prompt} $" {
4884 }
4885 -re "${gdb_prompt} $" {
4886 return 0
4887 }
4888 }
4889
4890 # Check whether argc is 1.
4891 gdb_test_multiple "p argc" "p argc" {
4892 -re " = 1\r\n${gdb_prompt} $" {
4893
4894 gdb_test_multiple "p argv\[0\]" "p argv\[0\]" {
4895 -re " = $hex \".*[file tail $exe]\"\r\n${gdb_prompt} $" {
4896 return 1
4897 }
4898 -re "${gdb_prompt} $" {
4899 return 0
4900 }
4901 }
4902 }
4903 -re "${gdb_prompt} $" {
4904 return 0
4905 }
4906 }
4907 return 0
4908 }
4909
4910 set result [gdb_has_argv0_1 $exe]
4911
4912 gdb_exit
4913 file delete $src
4914 file delete $exe
4915
4916 if { !$result
4917 && ([istarget *-*-linux*]
4918 || [istarget *-*-freebsd*] || [istarget *-*-kfreebsd*]
4919 || [istarget *-*-netbsd*] || [istarget *-*-knetbsd*]
4920 || [istarget *-*-openbsd*]
4921 || [istarget *-*-darwin*]
4922 || [istarget *-*-solaris*]
4923 || [istarget *-*-aix*]
4924 || [istarget *-*-gnu*]
4925 || [istarget *-*-cygwin*] || [istarget *-*-mingw32*]
4926 || [istarget *-*-*djgpp*] || [istarget *-*-go32*]
4927 || [istarget *-wince-pe] || [istarget *-*-mingw32ce*]
4928 || [istarget *-*-symbianelf*]
4929 || [istarget *-*-osf*]
4930 || [istarget *-*-hpux*]
4931 || [istarget *-*-dicos*]
4932 || [istarget *-*-nto*]
4933 || [istarget *-*-*vms*]
4934 || [istarget *-*-lynx*178]) } {
4935 fail "argv\[0\] should be available on this target"
4936 }
4937
4938 return $result
4939 }
4940
4941 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
4942 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
4943 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
4944 # the name of a debuginfo only file. This file will be stored in the same
4945 # subdirectory.
4946
4947 # Functions for separate debug info testing
4948
4949 # starting with an executable:
4950 # foo --> original executable
4951
4952 # at the end of the process we have:
4953 # foo.stripped --> foo w/o debug info
4954 # foo.debug --> foo's debug info
4955 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
4956
4957 # Fetch the build id from the file.
4958 # Returns "" if there is none.
4959
4960 proc get_build_id { filename } {
4961 if { ([istarget "*-*-mingw*"]
4962 || [istarget *-*-cygwin*]) } {
4963 set objdump_program [gdb_find_objdump]
4964 set result [catch {set data [exec $objdump_program -p $filename | grep signature | cut "-d " -f4]} output]
4965 verbose "result is $result"
4966 verbose "output is $output"
4967 if {$result == 1} {
4968 return ""
4969 }
4970 return $data
4971 } else {
4972 set tmp [standard_output_file "${filename}-tmp"]
4973 set objcopy_program [gdb_find_objcopy]
4974 set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $filename $tmp" output]
4975 verbose "result is $result"
4976 verbose "output is $output"
4977 if {$result == 1} {
4978 return ""
4979 }
4980 set fi [open $tmp]
4981 fconfigure $fi -translation binary
4982 # Skip the NOTE header.
4983 read $fi 16
4984 set data [read $fi]
4985 close $fi
4986 file delete $tmp
4987 if ![string compare $data ""] then {
4988 return ""
4989 }
4990 # Convert it to hex.
4991 binary scan $data H* data
4992 return $data
4993 }
4994 }
4995
4996 # Return the build-id hex string (usually 160 bits as 40 hex characters)
4997 # converted to the form: .build-id/ab/cdef1234...89.debug
4998 # Return "" if no build-id found.
4999 proc build_id_debug_filename_get { filename } {
5000 set data [get_build_id $filename]
5001 if { $data == "" } {
5002 return ""
5003 }
5004 regsub {^..} $data {\0/} data
5005 return ".build-id/${data}.debug"
5006 }
5007
5008 # Create stripped files for DEST, replacing it. If ARGS is passed, it is a
5009 # list of optional flags. The only currently supported flag is no-main,
5010 # which removes the symbol entry for main from the separate debug file.
5011 #
5012 # Function returns zero on success. Function will return non-zero failure code
5013 # on some targets not supporting separate debug info (such as i386-msdos).
5014
5015 proc gdb_gnu_strip_debug { dest args } {
5016
5017 # Use the first separate debug info file location searched by GDB so the
5018 # run cannot be broken by some stale file searched with higher precedence.
5019 set debug_file "${dest}.debug"
5020
5021 set strip_to_file_program [transform strip]
5022 set objcopy_program [gdb_find_objcopy]
5023
5024 set debug_link [file tail $debug_file]
5025 set stripped_file "${dest}.stripped"
5026
5027 # Get rid of the debug info, and store result in stripped_file
5028 # something like gdb/testsuite/gdb.base/blah.stripped.
5029 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
5030 verbose "result is $result"
5031 verbose "output is $output"
5032 if {$result == 1} {
5033 return 1
5034 }
5035
5036 # Workaround PR binutils/10802:
5037 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5038 set perm [file attributes ${dest} -permissions]
5039 file attributes ${stripped_file} -permissions $perm
5040
5041 # Get rid of everything but the debug info, and store result in debug_file
5042 # This will be in the .debug subdirectory, see above.
5043 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
5044 verbose "result is $result"
5045 verbose "output is $output"
5046 if {$result == 1} {
5047 return 1
5048 }
5049
5050 # If no-main is passed, strip the symbol for main from the separate
5051 # file. This is to simulate the behavior of elfutils's eu-strip, which
5052 # leaves the symtab in the original file only. There's no way to get
5053 # objcopy or strip to remove the symbol table without also removing the
5054 # debugging sections, so this is as close as we can get.
5055 if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
5056 set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
5057 verbose "result is $result"
5058 verbose "output is $output"
5059 if {$result == 1} {
5060 return 1
5061 }
5062 file delete "${debug_file}"
5063 file rename "${debug_file}-tmp" "${debug_file}"
5064 }
5065
5066 # Link the two previous output files together, adding the .gnu_debuglink
5067 # section to the stripped_file, containing a pointer to the debug_file,
5068 # save the new file in dest.
5069 # This will be the regular executable filename, in the usual location.
5070 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
5071 verbose "result is $result"
5072 verbose "output is $output"
5073 if {$result == 1} {
5074 return 1
5075 }
5076
5077 # Workaround PR binutils/10802:
5078 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5079 set perm [file attributes ${stripped_file} -permissions]
5080 file attributes ${dest} -permissions $perm
5081
5082 return 0
5083 }
5084
5085 # Test the output of GDB_COMMAND matches the pattern obtained
5086 # by concatenating all elements of EXPECTED_LINES. This makes
5087 # it possible to split otherwise very long string into pieces.
5088 # If third argument is not empty, it's used as the name of the
5089 # test to be printed on pass/fail.
5090 proc help_test_raw { gdb_command expected_lines args } {
5091 set message $gdb_command
5092 if [llength $args]>0 then {
5093 set message [lindex $args 0]
5094 }
5095 set expected_output [join $expected_lines ""]
5096 gdb_test "${gdb_command}" "${expected_output}" $message
5097 }
5098
5099 # Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
5100 # are regular expressions that should match the beginning of output,
5101 # before the list of commands in that class. The presence of
5102 # command list and standard epilogue will be tested automatically.
5103 # Notice that the '[' and ']' characters don't need to be escaped for strings
5104 # wrapped in {} braces.
5105 proc test_class_help { command_class expected_initial_lines args } {
5106 set l_stock_body {
5107 "List of commands\:.*[\r\n]+"
5108 "Type \"help\" followed by command name for full documentation\.[\r\n]+"
5109 "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n]+"
5110 "Command name abbreviations are allowed if unambiguous\."
5111 }
5112 set l_entire_body [concat $expected_initial_lines $l_stock_body]
5113
5114 eval [list help_test_raw "help ${command_class}" $l_entire_body] $args
5115 }
5116
5117 # COMMAND_LIST should have either one element -- command to test, or
5118 # two elements -- abbreviated command to test, and full command the first
5119 # element is abbreviation of.
5120 # The command must be a prefix command. EXPECTED_INITIAL_LINES
5121 # are regular expressions that should match the beginning of output,
5122 # before the list of subcommands. The presence of
5123 # subcommand list and standard epilogue will be tested automatically.
5124 proc test_prefix_command_help { command_list expected_initial_lines args } {
5125 set command [lindex $command_list 0]
5126 if {[llength $command_list]>1} {
5127 set full_command [lindex $command_list 1]
5128 } else {
5129 set full_command $command
5130 }
5131 # Use 'list' and not just {} because we want variables to
5132 # be expanded in this list.
5133 set l_stock_body [list\
5134 "List of $full_command subcommands\:.*\[\r\n\]+"\
5135 "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"\
5136 "Type \"apropos word\" to search for commands related to \"word\"\.\[\r\n\]+"\
5137 "Command name abbreviations are allowed if unambiguous\."]
5138 set l_entire_body [concat $expected_initial_lines $l_stock_body]
5139 if {[llength $args]>0} {
5140 help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
5141 } else {
5142 help_test_raw "help ${command}" $l_entire_body
5143 }
5144 }
5145
5146 # Build executable named EXECUTABLE from specifications that allow
5147 # different options to be passed to different sub-compilations.
5148 # TESTNAME is the name of the test; this is passed to 'untested' if
5149 # something fails.
5150 # OPTIONS is passed to the final link, using gdb_compile. If OPTIONS
5151 # contains the option "pthreads", then gdb_compile_pthreads is used.
5152 # ARGS is a flat list of source specifications, of the form:
5153 # { SOURCE1 OPTIONS1 [ SOURCE2 OPTIONS2 ]... }
5154 # Each SOURCE is compiled to an object file using its OPTIONS,
5155 # using gdb_compile.
5156 # Returns 0 on success, -1 on failure.
5157 proc build_executable_from_specs {testname executable options args} {
5158 global subdir
5159 global srcdir
5160
5161 set binfile [standard_output_file $executable]
5162
5163 set info_options ""
5164 if { [lsearch -exact $options "c++"] >= 0 } {
5165 set info_options "c++"
5166 }
5167 if [get_compiler_info ${info_options}] {
5168 return -1
5169 }
5170
5171 set func gdb_compile
5172 set func_index [lsearch -regexp $options {^(pthreads|shlib|shlib_pthreads)$}]
5173 if {$func_index != -1} {
5174 set func "${func}_[lindex $options $func_index]"
5175 }
5176
5177 # gdb_compile_shlib and gdb_compile_shlib_pthreads do not use the 3rd
5178 # parameter. They also requires $sources while gdb_compile and
5179 # gdb_compile_pthreads require $objects. Moreover they ignore any options.
5180 if [string match gdb_compile_shlib* $func] {
5181 set sources_path {}
5182 foreach {s local_options} $args {
5183 if { [regexp "^/" "$s"] } then {
5184 lappend sources_path "$s"
5185 } else {
5186 lappend sources_path "$srcdir/$subdir/$s"
5187 }
5188 }
5189 set ret [$func $sources_path "${binfile}" $options]
5190 } else {
5191 set objects {}
5192 set i 0
5193 foreach {s local_options} $args {
5194 if { ! [regexp "^/" "$s"] } then {
5195 set s "$srcdir/$subdir/$s"
5196 }
5197 if { [gdb_compile "${s}" "${binfile}${i}.o" object $local_options] != "" } {
5198 untested $testname
5199 return -1
5200 }
5201 lappend objects "${binfile}${i}.o"
5202 incr i
5203 }
5204 set ret [$func $objects "${binfile}" executable $options]
5205 }
5206 if { $ret != "" } {
5207 untested $testname
5208 return -1
5209 }
5210
5211 return 0
5212 }
5213
5214 # Build executable named EXECUTABLE, from SOURCES. If SOURCES are not
5215 # provided, uses $EXECUTABLE.c. The TESTNAME paramer is the name of test
5216 # to pass to untested, if something is wrong. OPTIONS are passed
5217 # to gdb_compile directly.
5218 proc build_executable { testname executable {sources ""} {options {debug}} } {
5219 if {[llength $sources]==0} {
5220 set sources ${executable}.c
5221 }
5222
5223 set arglist [list $testname $executable $options]
5224 foreach source $sources {
5225 lappend arglist $source $options
5226 }
5227
5228 return [eval build_executable_from_specs $arglist]
5229 }
5230
5231 # Starts fresh GDB binary and loads an optional executable into GDB.
5232 # Usage: clean_restart [executable]
5233 # EXECUTABLE is the basename of the binary.
5234
5235 proc clean_restart { args } {
5236 global srcdir
5237 global subdir
5238
5239 if { [llength $args] > 1 } {
5240 error "bad number of args: [llength $args]"
5241 }
5242
5243 gdb_exit
5244 gdb_start
5245 gdb_reinitialize_dir $srcdir/$subdir
5246
5247 if { [llength $args] >= 1 } {
5248 set executable [lindex $args 0]
5249 set binfile [standard_output_file ${executable}]
5250 gdb_load ${binfile}
5251 }
5252 }
5253
5254 # Prepares for testing by calling build_executable_full, then
5255 # clean_restart.
5256 # TESTNAME is the name of the test.
5257 # Each element in ARGS is a list of the form
5258 # { EXECUTABLE OPTIONS SOURCE_SPEC... }
5259 # These are passed to build_executable_from_specs, which see.
5260 # The last EXECUTABLE is passed to clean_restart.
5261 # Returns 0 on success, non-zero on failure.
5262 proc prepare_for_testing_full {testname args} {
5263 foreach spec $args {
5264 if {[eval build_executable_from_specs [list $testname] $spec] == -1} {
5265 return -1
5266 }
5267 set executable [lindex $spec 0]
5268 }
5269 clean_restart $executable
5270 return 0
5271 }
5272
5273 # Prepares for testing, by calling build_executable, and then clean_restart.
5274 # Please refer to build_executable for parameter description.
5275 proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
5276
5277 if {[build_executable $testname $executable $sources $options] == -1} {
5278 return -1
5279 }
5280 clean_restart $executable
5281
5282 return 0
5283 }
5284
5285 proc get_valueof { fmt exp default } {
5286 global gdb_prompt
5287
5288 set test "get valueof \"${exp}\""
5289 set val ${default}
5290 gdb_test_multiple "print${fmt} ${exp}" "$test" {
5291 -re "\\$\[0-9\]* = (.*)\[\r\n\]*$gdb_prompt $" {
5292 set val $expect_out(1,string)
5293 pass "$test ($val)"
5294 }
5295 timeout {
5296 fail "$test (timeout)"
5297 }
5298 }
5299 return ${val}
5300 }
5301
5302 proc get_integer_valueof { exp default } {
5303 global gdb_prompt
5304
5305 set test "get integer valueof \"${exp}\""
5306 set val ${default}
5307 gdb_test_multiple "print /d ${exp}" "$test" {
5308 -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
5309 set val $expect_out(1,string)
5310 pass "$test ($val)"
5311 }
5312 timeout {
5313 fail "$test (timeout)"
5314 }
5315 }
5316 return ${val}
5317 }
5318
5319 proc get_hexadecimal_valueof { exp default } {
5320 global gdb_prompt
5321 send_gdb "print /x ${exp}\n"
5322 set test "get hexadecimal valueof \"${exp}\""
5323 gdb_expect {
5324 -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
5325 set val $expect_out(1,string)
5326 pass "$test"
5327 }
5328 timeout {
5329 set val ${default}
5330 fail "$test (timeout)"
5331 }
5332 }
5333 return ${val}
5334 }
5335
5336 proc get_sizeof { type default } {
5337 return [get_integer_valueof "sizeof (${type})" $default]
5338 }
5339
5340 proc get_target_charset { } {
5341 global gdb_prompt
5342
5343 gdb_test_multiple "show target-charset" "" {
5344 -re "The target character set is \"auto; currently (\[^\"\]*)\".*$gdb_prompt $" {
5345 return $expect_out(1,string)
5346 }
5347 -re "The target character set is \"(\[^\"\]*)\".*$gdb_prompt $" {
5348 return $expect_out(1,string)
5349 }
5350 }
5351
5352 # Pick a reasonable default.
5353 warning "Unable to read target-charset."
5354 return "UTF-8"
5355 }
5356
5357 # Get the current value for remotetimeout and return it.
5358 proc get_remotetimeout { } {
5359 global gdb_prompt
5360 global decimal
5361
5362 gdb_test_multiple "show remotetimeout" "" {
5363 -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
5364 return $expect_out(1,string)
5365 }
5366 }
5367
5368 # Pick the default that gdb uses
5369 warning "Unable to read remotetimeout"
5370 return 300
5371 }
5372
5373 # Set the remotetimeout to the specified timeout. Nothing is returned.
5374 proc set_remotetimeout { timeout } {
5375 global gdb_prompt
5376
5377 gdb_test_multiple "set remotetimeout $timeout" "" {
5378 -re "$gdb_prompt $" {
5379 verbose "Set remotetimeout to $timeout\n"
5380 }
5381 }
5382 }
5383
5384 # ROOT and FULL are file names. Returns the relative path from ROOT
5385 # to FULL. Note that FULL must be in a subdirectory of ROOT.
5386 # For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this
5387 # will return "ls".
5388
5389 proc relative_filename {root full} {
5390 set root_split [file split $root]
5391 set full_split [file split $full]
5392
5393 set len [llength $root_split]
5394
5395 if {[eval file join $root_split]
5396 != [eval file join [lrange $full_split 0 [expr {$len - 1}]]]} {
5397 error "$full not a subdir of $root"
5398 }
5399
5400 return [eval file join [lrange $full_split $len end]]
5401 }
5402
5403 # Log gdb command line and script if requested.
5404 if {[info exists TRANSCRIPT]} {
5405 rename send_gdb real_send_gdb
5406 rename remote_spawn real_remote_spawn
5407 rename remote_close real_remote_close
5408
5409 global gdb_transcript
5410 set gdb_transcript ""
5411
5412 global gdb_trans_count
5413 set gdb_trans_count 1
5414
5415 proc remote_spawn {args} {
5416 global gdb_transcript gdb_trans_count outdir
5417
5418 if {$gdb_transcript != ""} {
5419 close $gdb_transcript
5420 }
5421 set gdb_transcript [open [file join $outdir transcript.$gdb_trans_count] w]
5422 puts $gdb_transcript [lindex $args 1]
5423 incr gdb_trans_count
5424
5425 return [uplevel real_remote_spawn $args]
5426 }
5427
5428 proc remote_close {args} {
5429 global gdb_transcript
5430
5431 if {$gdb_transcript != ""} {
5432 close $gdb_transcript
5433 set gdb_transcript ""
5434 }
5435
5436 return [uplevel real_remote_close $args]
5437 }
5438
5439 proc send_gdb {args} {
5440 global gdb_transcript
5441
5442 if {$gdb_transcript != ""} {
5443 puts -nonewline $gdb_transcript [lindex $args 0]
5444 }
5445
5446 return [uplevel real_send_gdb $args]
5447 }
5448 }
5449
5450 # If GDB_PARALLEL exists, then set up the parallel-mode directories.
5451 if {[info exists GDB_PARALLEL]} {
5452 if {[is_remote host]} {
5453 unset GDB_PARALLEL
5454 } else {
5455 file mkdir \
5456 [make_gdb_parallel_path outputs] \
5457 [make_gdb_parallel_path temp] \
5458 [make_gdb_parallel_path cache]
5459 }
5460 }
5461
5462 proc core_find {binfile {deletefiles {}} {arg ""}} {
5463 global objdir subdir
5464
5465 set destcore "$binfile.core"
5466 file delete $destcore
5467
5468 # Create a core file named "$destcore" rather than just "core", to
5469 # avoid problems with sys admin types that like to regularly prune all
5470 # files named "core" from the system.
5471 #
5472 # Arbitrarily try setting the core size limit to "unlimited" since
5473 # this does not hurt on systems where the command does not work and
5474 # allows us to generate a core on systems where it does.
5475 #
5476 # Some systems append "core" to the name of the program; others append
5477 # the name of the program to "core"; still others (like Linux, as of
5478 # May 2003) create cores named "core.PID". In the latter case, we
5479 # could have many core files lying around, and it may be difficult to
5480 # tell which one is ours, so let's run the program in a subdirectory.
5481 set found 0
5482 set coredir [standard_output_file coredir.[getpid]]
5483 file mkdir $coredir
5484 catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
5485 # remote_exec host "${binfile}"
5486 foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
5487 if [remote_file build exists $i] {
5488 remote_exec build "mv $i $destcore"
5489 set found 1
5490 }
5491 }
5492 # Check for "core.PID".
5493 if { $found == 0 } {
5494 set names [glob -nocomplain -directory $coredir core.*]
5495 if {[llength $names] == 1} {
5496 set corefile [file join $coredir [lindex $names 0]]
5497 remote_exec build "mv $corefile $destcore"
5498 set found 1
5499 }
5500 }
5501 if { $found == 0 } {
5502 # The braindamaged HPUX shell quits after the ulimit -c above
5503 # without executing ${binfile}. So we try again without the
5504 # ulimit here if we didn't find a core file above.
5505 # Oh, I should mention that any "braindamaged" non-Unix system has
5506 # the same problem. I like the cd bit too, it's really neat'n stuff.
5507 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
5508 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
5509 if [remote_file build exists $i] {
5510 remote_exec build "mv $i $destcore"
5511 set found 1
5512 }
5513 }
5514 }
5515
5516 # Try to clean up after ourselves.
5517 foreach deletefile $deletefiles {
5518 remote_file build delete [file join $coredir $deletefile]
5519 }
5520 remote_exec build "rmdir $coredir"
5521
5522 if { $found == 0 } {
5523 warning "can't generate a core file - core tests suppressed - check ulimit -c"
5524 return ""
5525 }
5526 return $destcore
5527 }
5528
5529 # gdb_target_symbol_prefix compiles a test program and then examines
5530 # the output from objdump to determine the prefix (such as underscore)
5531 # for linker symbol prefixes.
5532
5533 gdb_caching_proc gdb_target_symbol_prefix {
5534 # Set up and compile a simple test program...
5535 set src [standard_temp_file main[pid].c]
5536 set exe [standard_temp_file main[pid].x]
5537
5538 gdb_produce_source $src {
5539 int main() {
5540 return 0;
5541 }
5542 }
5543
5544 verbose "compiling testfile $src" 2
5545 set compile_flags {debug nowarnings quiet}
5546 set lines [gdb_compile $src $exe executable $compile_flags]
5547
5548 set prefix ""
5549
5550 if ![string match "" $lines] then {
5551 verbose "gdb_target_symbol_prefix: testfile compilation failed, returning null prefix" 2
5552 } else {
5553 set objdump_program [gdb_find_objdump]
5554 set result [catch "exec $objdump_program --syms $exe" output]
5555
5556 if { $result == 0 \
5557 && ![regexp -lineanchor \
5558 { ([^ a-zA-Z0-9]*)main$} $output dummy prefix] } {
5559 verbose "gdb_target_symbol_prefix: Could not find main in objdump output; returning null prefix" 2
5560 }
5561 }
5562
5563 file delete $src
5564 file delete $exe
5565
5566 return $prefix
5567 }
5568
5569 # gdb_target_symbol returns the provided symbol with the correct prefix
5570 # prepended. (See gdb_target_symbol_prefix, above.)
5571
5572 proc gdb_target_symbol { symbol } {
5573 set prefix [gdb_target_symbol_prefix]
5574 return "${prefix}${symbol}"
5575 }
5576
5577 # gdb_target_symbol_prefix_flags_asm returns a string that can be
5578 # added to gdb_compile options to define the C-preprocessor macro
5579 # SYMBOL_PREFIX with a value that can be prepended to symbols
5580 # for targets which require a prefix, such as underscore.
5581 #
5582 # This version (_asm) defines the prefix without double quotes
5583 # surrounding the prefix. It is used to define the macro
5584 # SYMBOL_PREFIX for assembly language files. Another version, below,
5585 # is used for symbols in inline assembler in C/C++ files.
5586 #
5587 # The lack of quotes in this version (_asm) makes it possible to
5588 # define supporting macros in the .S file. (The version which
5589 # uses quotes for the prefix won't work for such files since it's
5590 # impossible to define a quote-stripping macro in C.)
5591 #
5592 # It's possible to use this version (_asm) for C/C++ source files too,
5593 # but a string is usually required in such files; providing a version
5594 # (no _asm) which encloses the prefix with double quotes makes it
5595 # somewhat easier to define the supporting macros in the test case.
5596
5597 proc gdb_target_symbol_prefix_flags_asm {} {
5598 set prefix [gdb_target_symbol_prefix]
5599 if {$prefix ne ""} {
5600 return "additional_flags=-DSYMBOL_PREFIX=$prefix"
5601 } else {
5602 return "";
5603 }
5604 }
5605
5606 # gdb_target_symbol_prefix_flags returns the same string as
5607 # gdb_target_symbol_prefix_flags_asm, above, but with the prefix
5608 # enclosed in double quotes if there is a prefix.
5609 #
5610 # See the comment for gdb_target_symbol_prefix_flags_asm for an
5611 # extended discussion.
5612
5613 proc gdb_target_symbol_prefix_flags {} {
5614 set prefix [gdb_target_symbol_prefix]
5615 if {$prefix ne ""} {
5616 return "additional_flags=-DSYMBOL_PREFIX=\"$prefix\""
5617 } else {
5618 return "";
5619 }
5620 }
5621
5622 # A wrapper for 'remote_exec host' that passes or fails a test.
5623 # Returns 0 if all went well, nonzero on failure.
5624 # TEST is the name of the test, other arguments are as for remote_exec.
5625
5626 proc run_on_host { test program args } {
5627 verbose -log "run_on_host: $program $args"
5628 # remote_exec doesn't work properly if the output is set but the
5629 # input is the empty string -- so replace an empty input with
5630 # /dev/null.
5631 if {[llength $args] > 1 && [lindex $args 1] == ""} {
5632 set args [lreplace $args 1 1 "/dev/null"]
5633 }
5634 set result [eval remote_exec host [list $program] $args]
5635 verbose "result is $result"
5636 set status [lindex $result 0]
5637 set output [lindex $result 1]
5638 if {$status == 0} {
5639 pass $test
5640 return 0
5641 } else {
5642 verbose -log "run_on_host failed: $output"
5643 fail $test
5644 return -1
5645 }
5646 }
5647
5648 # Return non-zero if "board_info debug_flags" mentions Fission.
5649 # http://gcc.gnu.org/wiki/DebugFission
5650 # Fission doesn't support everything yet.
5651 # This supports working around bug 15954.
5652
5653 proc using_fission { } {
5654 set debug_flags [board_info [target_info name] debug_flags]
5655 return [regexp -- "-gsplit-dwarf" $debug_flags]
5656 }
5657
5658 # Search the caller's ARGS list and set variables according to the list of
5659 # valid options described by ARGSET.
5660 #
5661 # The first member of each one- or two-element list in ARGSET defines the
5662 # name of a variable that will be added to the caller's scope.
5663 #
5664 # If only one element is given to describe an option, it the value is
5665 # 0 if the option is not present in (the caller's) ARGS or 1 if
5666 # it is.
5667 #
5668 # If two elements are given, the second element is the default value of
5669 # the variable. This is then overwritten if the option exists in ARGS.
5670 #
5671 # Any parse_args elements in (the caller's) ARGS will be removed, leaving
5672 # any optional components.
5673
5674 # Example:
5675 # proc myproc {foo args} {
5676 # parse_args {{bar} {baz "abc"} {qux}}
5677 # # ...
5678 # }
5679 # myproc ABC -bar -baz DEF peanut butter
5680 # will define the following variables in myproc:
5681 # foo (=ABC), bar (=1), baz (=DEF), and qux (=0)
5682 # args will be the list {peanut butter}
5683
5684 proc parse_args { argset } {
5685 upvar args args
5686
5687 foreach argument $argset {
5688 if {[llength $argument] == 1} {
5689 # No default specified, so we assume that we should set
5690 # the value to 1 if the arg is present and 0 if it's not.
5691 # It is assumed that no value is given with the argument.
5692 set result [lsearch -exact $args "-$argument"]
5693 if {$result != -1} then {
5694 uplevel 1 [list set $argument 1]
5695 set args [lreplace $args $result $result]
5696 } else {
5697 uplevel 1 [list set $argument 0]
5698 }
5699 } elseif {[llength $argument] == 2} {
5700 # There are two items in the argument. The second is a
5701 # default value to use if the item is not present.
5702 # Otherwise, the variable is set to whatever is provided
5703 # after the item in the args.
5704 set arg [lindex $argument 0]
5705 set result [lsearch -exact $args "-[lindex $arg 0]"]
5706 if {$result != -1} then {
5707 uplevel 1 [list set $arg [lindex $args [expr $result+1]]]
5708 set args [lreplace $args $result [expr $result+1]]
5709 } else {
5710 uplevel 1 [list set $arg [lindex $argument 1]]
5711 }
5712 } else {
5713 error "Badly formatted argument \"$argument\" in argument set"
5714 }
5715 }
5716
5717 # The remaining args should be checked to see that they match the
5718 # number of items expected to be passed into the procedure...
5719 }
5720
5721 # Capture the output of COMMAND in a string ignoring PREFIX (a regexp);
5722 # return that string.
5723
5724 proc capture_command_output { command prefix } {
5725 global gdb_prompt
5726 global expect_out
5727
5728 set output_string ""
5729 gdb_test_multiple "$command" "capture_command_output for $command" {
5730 -re "[string_to_regexp ${command}]\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
5731 set output_string $expect_out(1,string)
5732 }
5733 }
5734 return $output_string
5735 }
5736
5737 # A convenience function that joins all the arguments together, with a
5738 # regexp that matches exactly one end of line in between each argument.
5739 # This function is ideal to write the expected output of a GDB command
5740 # that generates more than a couple of lines, as this allows us to write
5741 # each line as a separate string, which is easier to read by a human
5742 # being.
5743
5744 proc multi_line { args } {
5745 return [join $args "\r\n"]
5746 }
5747
5748 # Always load compatibility stuff.
5749 load_lib future.exp
This page took 0.160492 seconds and 4 git commands to generate.