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