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