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