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