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