]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/sepdebug.exp
after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / sepdebug.exp
CommitLineData
ecd75fc8 1# Copyright 1988-2014 Free Software Foundation, Inc.
1f8a6abb
EZ
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
1f8a6abb 6# (at your option) any later version.
e22f8b7c 7#
1f8a6abb
EZ
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#
1f8a6abb 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/>.
1f8a6abb 15
1f8a6abb
EZ
16# Based on break.exp, written by Rob Savoye. (rob@cygnus.com)
17# Modified to test gdb's handling of separate debug info files.
4935890f 18# Modified to test gdb's handling of a debug-id retrieval.
1f8a6abb
EZ
19
20# This file has two parts. The first is testing that gdb behaves
21# normally after reading in an executable and its corresponding
22# separate debug file. The second moves the .debug file to a different
23# location and tests the "set debug-file-directory" command.
4935890f
JK
24# The third is for testing build-id retrievel by finding the separate
25# ".debug-id/ab/cdef.debug" file.
1f8a6abb
EZ
26
27
1f8a6abb
EZ
28#
29# test running programs
30#
1f8a6abb 31
08b3fe69 32standard_testfile .c
1f8a6abb 33
fc91c6c2 34if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
b60f0898
JB
35 untested sepdebug.exp
36 return -1
1f8a6abb
EZ
37}
38
1f8a6abb
EZ
39# Note: the procedure gdb_gnu_strip_debug will produce an executable called
40# ${binfile}, which is just like the executable ($binfile) but without
1db33378 41# the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
a51dab88 42# the name of a debuginfo only file. This file will be stored in the
8e1d0c49 43# gdb.base/ subdirectory.
1f8a6abb
EZ
44
45if [gdb_gnu_strip_debug $binfile] {
a51dab88
EZ
46 # check that you have a recent version of strip and objcopy installed
47 unsupported "cannot produce separate debug info files"
1f8a6abb
EZ
48 return -1
49}
50
1db33378
PP
51#
52# PR gdb/9538. Verify that symlinked executable still finds the separate
53# debuginfo.
54#
08b3fe69
TT
55set old_subdir $subdir
56set subdir [file join ${old_subdir} pr9538]
1db33378
PP
57
58# Cleanup any stale state.
08b3fe69
TT
59set new_name [standard_output_file ${testfile}${EXEEXT}]
60remote_exec build "rm -rf [file dirname $new_name]"
1db33378 61
08b3fe69
TT
62remote_exec build "mkdir [file dirname $new_name]"
63remote_exec build "ln -s ${binfile} $new_name"
1db33378
PP
64clean_restart ${testfile}${EXEEXT}
65if { $gdb_file_cmd_debug_info != "debug" } then {
66 fail "No debug information found."
67}
68
69# Restore subdir
70set subdir ${old_subdir}
71
72clean_restart ${testfile}${EXEEXT}
279017b7
TG
73if { $gdb_file_cmd_debug_info != "debug" } then {
74 fail "No debug information found."
75}
1f8a6abb 76
1f8a6abb
EZ
77#
78# test simple breakpoint setting commands
79#
80
1f8a6abb
EZ
81#
82# test break at function
83#
84gdb_test "break main" \
85 "Breakpoint.*at.* file .*$srcfile, line.*" \
86 "breakpoint function"
87
88#
89# test break at quoted function
90#
91gdb_test "break \"marker2\"" \
92 "Breakpoint.*at.* file .*$srcfile, line.*" \
93 "breakpoint quoted function"
94
95#
96# test break at function in file
97#
98gdb_test "break $srcfile:factorial" \
99 "Breakpoint.*at.* file .*$srcfile, line.*" \
100 "breakpoint function in file"
101
102set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
103
104#
105# test break at line number
106#
107# Note that the default source file is the last one whose source text
108# was printed. For native debugging, before we've executed the
109# program, this is the file containing main, but for remote debugging,
110# it's wherever the processor was stopped when we connected to the
111# board. So, to be sure, we do a list command.
112#
113gdb_test "list main" \
114 ".*main \\(argc, argv, envp\\).*" \
115 "use `list' to establish default source file"
116gdb_test "break $bp_location1" \
117 "Breakpoint.*at.* file .*$srcfile, line $bp_location1\\." \
118 "breakpoint line number"
119
120#
121# test duplicate breakpoint
122#
123gdb_test "break $bp_location1" \
124 "Note: breakpoint \[0-9\]+ also set at pc.*Breakpoint \[0-9\]+ at.* file .*$srcfile, line $bp_location1\\." \
125 "breakpoint duplicate"
126
127set bp_location2 [gdb_get_line_number "set breakpoint 2 here"]
128
129#
130# test break at line number in file
131#
132gdb_test "break $srcfile:$bp_location2" \
133 "Breakpoint.*at.* file .*$srcfile, line $bp_location2\\." \
134 "breakpoint line number in file"
135
136set bp_location3 [gdb_get_line_number "set breakpoint 3 here"]
137set bp_location4 [gdb_get_line_number "set breakpoint 4 here"]
138
139#
140# Test putting a break at the start of a multi-line if conditional.
141# Verify the breakpoint was put at the start of the conditional.
142#
143gdb_test "break multi_line_if_conditional" \
144 "Breakpoint.*at.* file .*$srcfile, line $bp_location3\\." \
145 "breakpoint at start of multi line if conditional"
146
147gdb_test "break multi_line_while_conditional" \
148 "Breakpoint.*at.* file .*$srcfile, line $bp_location4\\." \
149 "breakpoint at start of multi line while conditional"
150
1f8a6abb
EZ
151set bp_location6 [gdb_get_line_number "set breakpoint 6 here"]
152
924437bc 153set main_line $bp_location6
1f8a6abb
EZ
154
155set bp_location7 [gdb_get_line_number "set breakpoint 7 here"]
156set bp_location8 [gdb_get_line_number "set breakpoint 8 here"]
157set bp_location9 [gdb_get_line_number "set breakpoint 9 here"]
158
159gdb_test "info break" \
54e52265 160 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
1f8a6abb
EZ
161\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$main_line.*
162\[0-9\]+\[\t \]+breakpoint keep y.* in marker2 at .*$srcfile:($bp_location8|$bp_location9).*
163\[0-9\]+\[\t \]+breakpoint keep y.* in factorial at .*$srcfile:$bp_location7.*
164\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$bp_location1.*
165\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$bp_location1.*
166\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$bp_location2.*
167\[0-9\]+\[\t \]+breakpoint keep y.* in multi_line_if_conditional at .*$srcfile:$bp_location3.*
168\[0-9\]+\[\t \]+breakpoint keep y.* in multi_line_while_conditional at .*$srcfile:$bp_location4" \
169 "breakpoint info"
170
171# FIXME: The rest of this test doesn't work with anything that can't
172# handle arguments.
173# Huh? There doesn't *appear* to be anything that passes arguments
174# below.
1f8a6abb
EZ
175
176#
177# run until the breakpoint at main is hit. For non-stubs-using targets.
178#
b741e217 179gdb_run_cmd
fa43b1d7
PA
180gdb_test "" \
181 "Breakpoint \[0-9\]+,.*main .*argc.*argv.* at .*$srcfile:$bp_location6.*$bp_location6\[\t \]+if .argc.* \{.*" \
182 "run until function breakpoint"
1f8a6abb
EZ
183
184#
185# run until the breakpoint at a line number
186#
187gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:$bp_location1.*$bp_location1\[\t \]+printf.*factorial.*" \
188 "run until breakpoint set at a line number"
189
190#
191# Run until the breakpoint set in a function in a file
192#
193for {set i 6} {$i >= 1} {incr i -1} {
194 gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, factorial \\(value=$i\\) at .*$srcfile:$bp_location7.*$bp_location7\[\t \]+.*if .value > 1. \{.*" \
195 "run until file:function($i) breakpoint"
196}
197
198#
199# Run until the breakpoint set at a quoted function
200#
201gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, (0x\[0-9a-f\]+ in )?marker2 \\(a=43\\) at .*$srcfile:($bp_location8|$bp_location9).*" \
202 "run until quoted breakpoint"
203#
204# run until the file:function breakpoint at a line number in a file
205#
206gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:$bp_location2.*$bp_location2\[\t \]+argc = \\(argc == 12345\\);.*" \
207 "run until file:linenum breakpoint"
208
209# Test break at offset +1
210set bp_location10 [gdb_get_line_number "set breakpoint 10 here"]
211
212gdb_test "break +1" \
213 "Breakpoint.*at.* file .*$srcfile, line $bp_location10\\." \
214 "breakpoint offset +1"
215
216# Check to see if breakpoint is hit when stepped onto
217
218gdb_test "step" \
219 ".*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:$bp_location10.*$bp_location10\[\t \]+return argc;.*breakpoint 10 here.*" \
220 "step onto breakpoint"
221
222#
223# delete all breakpoints so we can start over, course this can be a test too
224#
225delete_breakpoints
226
227#
228# test temporary breakpoint at function
229#
230
18ac113b 231gdb_test "tbreak main" "Temporary breakpoint.*at.* file .*$srcfile, line.*" "Temporary breakpoint function"
1f8a6abb
EZ
232
233#
234# test break at function in file
235#
236
18ac113b 237gdb_test "tbreak $srcfile:factorial" "Temporary breakpoint.*at.* file .*$srcfile, line.*" \
1f8a6abb
EZ
238 "Temporary breakpoint function in file"
239
240#
241# test break at line number
242#
1f8a6abb 243
02746bbc
MS
244gdb_test "tbreak $bp_location1" \
245 "Temporary breakpoint.*at.* file .*$srcfile, line $bp_location1.*" \
246 "Temporary breakpoint line number #1"
247
248gdb_test "tbreak $bp_location6" \
249 "Temporary breakpoint.*at.* file .*$srcfile, line $bp_location6.*" \
250 "Temporary breakpoint line number #2"
1f8a6abb
EZ
251
252#
253# test break at line number in file
254#
02746bbc
MS
255
256gdb_test "tbreak $srcfile:$bp_location2" \
257 "Temporary breakpoint.*at.* file .*$srcfile, line $bp_location2.*" \
258 "Temporary breakpoint line number in file #1"
1f8a6abb
EZ
259
260set bp_location11 [gdb_get_line_number "set breakpoint 11 here"]
18ac113b 261gdb_test "tbreak $srcfile:$bp_location11" "Temporary breakpoint.*at.* file .*$srcfile, line $bp_location11.*" "Temporary breakpoint line number in file #2"
1f8a6abb
EZ
262
263#
264# check to see what breakpoints are set (temporary this time)
265#
54e52265 266gdb_test "info break" "Num Type.*Disp Enb Address.*What.*\[\r\n\]
1f8a6abb
EZ
267\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$main_line.*\[\r\n\]
268\[0-9\]+\[\t \]+breakpoint del.*y.*in factorial at .*$srcfile:$bp_location7.*\[\r\n\]
269\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$bp_location1.*\[\r\n\]
270\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$bp_location6.*\[\r\n\]
271\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$bp_location2.*\[\r\n\]
272\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$bp_location11.*" \
273 "Temporary breakpoint info"
274
275
276#***********
277
278# Verify that catchpoints for fork, vfork and exec don't trigger
279# inappropriately. (There are no calls to those system functions
280# in this test program.)
281#
02746bbc 282if ![runto_main] then { fail "sepdebug tests suppressed" }
1f8a6abb 283
02746bbc
MS
284gdb_test "catch" "Catch requires an event name.*" \
285 "catch requires an event name"
1f8a6abb
EZ
286
287set name "set catch fork, never expected to trigger"
02746bbc
MS
288gdb_test_multiple "catch fork" $name {
289 -re "Catchpoint \[0-9\]* .fork.*$gdb_prompt $" {
290 pass $name
291 }
292 -re "Catch of fork not yet implemented.*$gdb_prompt $" {
293 pass $name
294 }
1f8a6abb
EZ
295}
296
1f8a6abb
EZ
297# If we are on HP-UX 10.20, we expect an error message to be
298# printed if we type "catch vfork" at the gdb gdb_prompt. This is
299# because on HP-UX 10.20, we cannot catch vfork events.
300
02746bbc
MS
301set name "set catch vfork, never expected to trigger"
302gdb_test_multiple "catch vfork" $name {
303 -re "Catch of vfork events not supported on HP-UX 10.20.*" {
304 pass $name
1f8a6abb 305 }
02746bbc
MS
306 -re "Catchpoint \[0-9\]* .vfork.*$gdb_prompt $" {
307 pass $name
308 }
309 -re "Catch of vfork not yet implemented.*$gdb_prompt $" {
310 pass $name
1f8a6abb
EZ
311 }
312}
313
314set name "set catch exec, never expected to trigger"
02746bbc
MS
315gdb_test_multiple "catch exec" $name {
316 -re "Catchpoint \[0-9\]* .exec.*$gdb_prompt $" {
317 pass $name
318 }
319 -re "Catch of exec not yet implemented.*$gdb_prompt $" {
320 pass $name
321 }
1f8a6abb
EZ
322}
323
324# Verify that GDB responds gracefully when asked to set a breakpoint
325# on a nonexistent source line.
326#
02746bbc 327
f8eba3c6
TT
328gdb_test_no_output "set breakpoint pending off"
329gdb_test "break 999" "No line 999 in the current file." \
02746bbc 330 "break on non-existent source line"
1f8a6abb
EZ
331
332# Run to the desired default location. If not positioned here, the
333# tests below don't work.
334#
335gdb_test "until $bp_location1" "main .* at .*:$bp_location1.*" "until bp_location1"
336
337
338# Verify that GDB allows one to just say "break", which is treated
339# as the "default" breakpoint. Note that GDB gets cute when printing
340# the informational message about other breakpoints at the same
341# location. We'll hit that bird with this stone too.
342#
1f8a6abb 343
02746bbc
MS
344gdb_test "break" "Breakpoint \[0-9\]*.*" \
345 "break on default location, 1st time"
1f8a6abb 346
02746bbc
MS
347gdb_test "break" \
348 "Note: breakpoint \[0-9\]* also set at .*Breakpoint \[0-9\]*.*" \
349 "break on default location, 2nd time"
1f8a6abb 350
02746bbc
MS
351gdb_test "break" \
352 "Note: breakpoints \[0-9\]* and \[0-9\]* also set at .*Breakpoint \[0-9\]*.*" \
353 "break on default location, 3rd time"
354
355gdb_test "break" \
356 "Note: breakpoints \[0-9\]*, \[0-9\]* and \[0-9\]* also set at .*Breakpoint \[0-9\]*.*" \
357 "break on default location, 4th time"
1f8a6abb
EZ
358
359# Verify that a "silent" breakpoint can be set, and that GDB is indeed
360# "silent" about its triggering.
361#
02746bbc 362if ![runto_main] then { fail "sepdebug tests suppressed" }
1f8a6abb 363
02746bbc
MS
364gdb_test_multiple "break $bp_location1" \
365 "set to-be-silent break bp_location1" {
366 -re "Breakpoint (\[0-9\]*) at .*, line $bp_location1.*$gdb_prompt $" {
367 pass "set to-be-silent break bp_location1"
368 }
1f8a6abb
EZ
369}
370
e809353a 371gdb_test "commands $expect_out(1,string)\nsilent\nend" ">end" "set silent break bp_location1"
1f8a6abb 372
3def43e0 373gdb_test "info break $expect_out(1,string)" \
02746bbc
MS
374 "\[0-9\]*\[ \t\]*breakpoint.*:$bp_location1\r\n\[ \t\]*silent.*" \
375 "info silent break bp_location1"
376
377gdb_test "continue" "Continuing.*" "hit silent break bp_location1"
378
379gdb_test "bt" "#0 main .* at .*:$bp_location1.*" \
380 "stopped for silent break bp_location1"
1f8a6abb
EZ
381
382# Verify that GDB can at least parse a breakpoint with the
383# "thread" keyword. (We won't attempt to test here that a
384# thread-specific breakpoint really triggers appropriately.
385# The gdb.threads subdirectory contains tests for that.)
386#
387set bp_location12 [gdb_get_line_number "set breakpoint 12 here"]
02746bbc
MS
388
389gdb_test "break $bp_location12 thread 999" "Unknown thread 999.*" \
390 "thread-specific breakpoint on non-existent thread disallowed"
391
392gdb_test "break $bp_location12 thread foo" \
393 "Junk after thread keyword.*" \
394 "thread-specific breakpoint on bogus thread ID disallowed"
1f8a6abb
EZ
395
396# Verify that GDB responds gracefully to a breakpoint command with
397# trailing garbage.
398#
02746bbc
MS
399
400gdb_test "break $bp_location12 foo" \
40e084e1 401 "malformed linespec error: unexpected string, \"foo\".*" \
02746bbc 402 "breakpoint with trailing garbage disallowed"
1f8a6abb
EZ
403
404# Verify that GDB responds gracefully to a "clear" command that has
405# no matching breakpoint. (First, get us off the current source line,
406# which we know has a breakpoint.)
407#
02746bbc
MS
408
409gdb_test "next" "marker1.*" "step over breakpoint"
410
411gdb_test "clear 81" "No breakpoint at 81.*" \
412 "clear line has no breakpoint disallowed"
413
414gdb_test "clear" "No breakpoint at this line.*" \
415 "clear current line has no breakpoint disallowed"
1f8a6abb
EZ
416
417# Verify that we can set and clear multiple breakpoints.
418#
419# We don't test that it deletes the correct breakpoints. We do at
420# least test that it deletes more than one breakpoint.
421#
422gdb_test "break marker3" "Breakpoint.*at.*" "break marker3 #1"
423gdb_test "break marker3" "Breakpoint.*at.*" "break marker3 #2"
424gdb_test "clear marker3" {Deleted breakpoints [0-9]+ [0-9]+.*}
425
426# Verify that a breakpoint can be set via a convenience variable.
427#
02746bbc 428
27d3a1a2 429gdb_test_no_output "set \$foo=$bp_location11" \
02746bbc
MS
430 "set convenience variable \$foo to bp_location11"
431
432gdb_test "break \$foo" \
433 "Breakpoint (\[0-9\]*) at .*, line $bp_location11.*" \
434 "set breakpoint via convenience variable"
1f8a6abb
EZ
435
436# Verify that GDB responds gracefully to an attempt to set a
437# breakpoint via a convenience variable whose type is not integer.
438#
02746bbc
MS
439
440gdb_test_no_output "set \$foo=81.5" \
441 "set convenience variable \$foo to 81.5"
442
443gdb_test "break \$foo" \
444 "Convenience variables used in line specs must have integer values.*" \
445 "set breakpoint via non-integer convenience variable disallowed"
1f8a6abb
EZ
446
447# Verify that we can set and trigger a breakpoint in a user-called function.
448#
02746bbc
MS
449
450gdb_test "break marker2" \
451 "Breakpoint (\[0-9\]*) at .*, line ($bp_location8|$bp_location9).*" \
452 "set breakpoint on to-be-called function"
453
454gdb_test "print marker2(99)" \
455 "The program being debugged stopped while in a function called from GDB.\r\nEvaluation of the expression containing the function\r\n.marker2. will be abandoned.\r\nWhen the function is done executing, GDB will silently stop.*" \
456 "hit breakpoint on called function"
1f8a6abb
EZ
457
458# As long as we're stopped (breakpointed) in a called function,
459# verify that we can successfully backtrace & such from here.
460#
461# In this and the following test, the _sr4export check apparently is needed
462# for hppa*-*-hpux.
463#
02746bbc
MS
464
465gdb_test_multiple "bt" "backtrace while in called function" {
466 -re "#0\[ \t\]*($hex in )?marker2.*:($bp_location8|$bp_location9)\r\n#1.*_sr4export.*$gdb_prompt $" {
467 pass "backtrace while in called function"
468 }
469 -re "#0\[ \t\]*($hex in )?marker2.*:($bp_location8|$bp_location9)\r\n#1.*function called from gdb.*$gdb_prompt $" {
470 pass "backtrace while in called function"
471 }
1f8a6abb
EZ
472}
473
474# Return from the called function. For remote targets, it's important to do
475# this before runto_main, which otherwise may silently stop on the dummy
476# breakpoint inserted by GDB at the program's entry point.
477#
02746bbc
MS
478
479gdb_test_multiple "finish" "finish from called function" {
480 -re "Run till exit from .*marker2.* at .*($bp_location8|$bp_location9)\r\n.* in _sr4export.*$gdb_prompt $" {
481 pass "finish from called function"
482 }
483 -re "Run till exit from .*marker2.* at .*($bp_location8|$bp_location9)\r\n.*function called from gdb.*$gdb_prompt $" {
484 pass "finish from called function"
485 }
486 -re "Run till exit from .*marker2.* at .*($bp_location8|$bp_location9)\r\n.*Value returned.*$gdb_prompt $" {
487 pass "finish from called function"
488 }
1f8a6abb
EZ
489}
490
491# Verify that GDB responds gracefully to a "finish" command with
492# arguments.
493#
02746bbc 494if ![runto_main] then { fail "sepdebug tests suppressed" }
1f8a6abb 495
02746bbc
MS
496gdb_test "finish 123" \
497 "The \"finish\" command does not take any arguments.*" \
498 "finish with arguments disallowed"
1f8a6abb
EZ
499
500# Verify that GDB responds gracefully to a request to "finish" from
501# the outermost frame. On a stub that never exits, this will just
502# run to the stubs routine, so we don't get this error... Thus the
503# second condition.
504#
505
02746bbc
MS
506gdb_test_multiple "finish" "finish from outermost frame disallowed" {
507 -re "\"finish\" not meaningful in the outermost frame.*$gdb_prompt $" {
508 pass "finish from outermost frame disallowed"
509 }
510 -re "Run till exit from.*$gdb_prompt $" {
511 pass "finish from outermost frame disallowed"
512 }
1f8a6abb
EZ
513}
514
515# Verify that we can explicitly ask GDB to stop on all shared library
516# events, and that it does so.
517#
518if [istarget "hppa*-*-hpux*"] then {
02746bbc
MS
519 if ![runto_main] then { fail "sepdebug tests suppressed" }
520
521 gdb_test_no_output "set stop-on-solib-events 1" \
522 "set stop-on-solib-events"
523
524 gdb_test "run" \
525 "Stopped due to shared library event.*" \
526 "triggered stop-on-solib-events" \
527 "Start it from the beginning.*y or n. $" \
528 "y"
529
530 gdb_test_no_output "set stop-on-solib-events 0" \
531 "reset stop-on-solib-events"
1f8a6abb
EZ
532}
533
534# Hardware breakpoints are unsupported on HP-UX. Verify that GDB
535# gracefully responds to requests to create them.
536#
537if [istarget "hppa*-*-hpux*"] then {
02746bbc
MS
538 if ![runto_main] then { fail "sepdebug tests suppressed" }
539
540 gdb_test "hbreak" \
541 "No hardware breakpoint support in the target.*" \
542 "hw breaks disallowed"
543
544 gdb_test "thbreak" \
545 "No hardware breakpoint support in the target.*" \
546 "temporary hw breaks disallowed"
1f8a6abb
EZ
547}
548
549#********
550
551
552#
553# Test "next" over recursive function call.
554#
555
556proc test_next_with_recursion {} {
557 global gdb_prompt
558 global decimal
559 global binfile
560
b741e217
DJ
561 gdb_test "kill" "" "kill program" "Kill the program being debugged.*y or n. $" "y"
562 delete_breakpoints
1f8a6abb
EZ
563
564 gdb_test "break factorial" "Breakpoint $decimal at .*" "break at factorial"
565
566 # Run until we call factorial with 6
567
b741e217 568 gdb_run_cmd
fa43b1d7 569 gdb_test "" "Break.* factorial .value=6. .*" "run to factorial(6)"
1f8a6abb
EZ
570
571 # Continue until we call factorial recursively with 5.
572
573 if [gdb_test "continue" \
574 "Continuing.*Break.* factorial .value=5. .*" \
575 "continue to factorial(5)"] then { gdb_suppress_tests }
576
577 # Do a backtrace just to confirm how many levels deep we are.
578
579 if [gdb_test "backtrace" \
580 "#0\[ \t\]+ factorial .value=5..*" \
581 "backtrace from factorial(5)"] then { gdb_suppress_tests }
582
583 # Now a "next" should position us at the recursive call, which
584 # we will be performing with 4.
585
586 if [gdb_test "next" \
587 ".* factorial .value - 1.;.*" \
588 "next to recursive call"] then { gdb_suppress_tests }
589
590 # Disable the breakpoint at the entry to factorial by deleting them all.
591 # The "next" should run until we return to the next line from this
592 # recursive call to factorial with 4.
593 # Buggy versions of gdb will stop instead at the innermost frame on
594 # the line where we are trying to "next" to.
595
596 delete_breakpoints
597
598 if [istarget "mips*tx39-*"] {
599 set timeout 60
600 }
601 # We used to set timeout here for all other targets as well. This
602 # is almost certainly wrong. The proper timeout depends on the
603 # target system in use, and how we communicate with it, so there
604 # is no single value appropriate for all targets. The timeout
605 # should be established by the Dejagnu config file(s) for the
606 # board, and respected by the test suite.
607 #
608 # For example, if I'm running GDB over an SSH tunnel talking to a
609 # portmaster in California talking to an ancient 68k board running
610 # a crummy ROM monitor (a situation I can only wish were
611 # hypothetical), then I need a large timeout. But that's not the
612 # kind of knowledge that belongs in this file.
613
614 gdb_test next "\[0-9\]*\[\t \]+return \\(value\\);.*" \
615 "next over recursive call"
616
617 # OK, we should be back in the same stack frame we started from.
618 # Do a backtrace just to confirm.
619
620 set result [gdb_test "backtrace" \
621 "#0\[ \t\]+ factorial .value=120.*\r\n#1\[ \t\]+ \[0-9a-fx\]+ in factorial .value=6..*" \
622 "backtrace from factorial(5.1)"]
623 if { $result != 0 } { gdb_suppress_tests }
624
625 if [target_info exists gdb,noresults] { gdb_suppress_tests }
626 gdb_continue_to_end "recursive next test"
4ec70201 627 gdb_stop_suppressing_tests
1f8a6abb
EZ
628}
629
630test_next_with_recursion
631
632
633#********
634
0a251e08
YQ
635proc test_different_dir {type test_different_dir xfail} {
636 with_test_prefix "$type" {
08b3fe69 637 global srcdir subdir binfile srcfile timeout gdb_prompt
0a251e08
YQ
638 global bp_location6 decimal hex
639
640 gdb_exit
641 gdb_start
642 gdb_reinitialize_dir $srcdir/$subdir
643 gdb_test_no_output "set debug-file-directory ${test_different_dir}" \
644 "set separate debug location"
645 gdb_load ${binfile}
646
647 #
648 # test break at function
649 #
650 if {$xfail} {
651 setup_xfail "*-*-*"
4935890f 652 }
0a251e08
YQ
653 gdb_test "break main" \
654 "Breakpoint.*at.* file .*$srcfile, line.*" \
655 "breakpoint function, optimized file"
656
657 #
658 # test break at function
659 #
660 if {$xfail} {
661 setup_xfail "*-*-*"
4935890f 662 }
0a251e08
YQ
663 gdb_test "break marker4" \
664 "Breakpoint.*at.* file .*$srcfile, line.*" \
665 "breakpoint small function, optimized file"
666
667 #
668 # run until the breakpoint at main is hit. For non-stubs-using targets.
669 #
670 gdb_run_cmd
671 if {$xfail} {
672 setup_xfail "*-*-*"
4935890f 673 }
fa43b1d7
PA
674 set test "run until function breakpoint, optimized file"
675 gdb_test_multiple "" $test {
0a251e08 676 -re "Breakpoint \[0-9\]+,.*main .*argc.*argv.* at .*$srcfile:$bp_location6.*$bp_location6\[\t \]+if .argc.* \{.*$gdb_prompt $" {
fa43b1d7 677 pass $test
0a251e08
YQ
678 }
679 -re "Breakpoint \[0-9\]+,.*main .*argc.*argv.* at .*$gdb_prompt $" {
fa43b1d7 680 pass "$test (code motion)"
0a251e08 681 }
4935890f 682 }
02746bbc 683
0a251e08
YQ
684 #
685 # run until the breakpoint at a small function
686 #
687
688 #
689 # Add a second pass pattern. The behavior differs here between stabs
690 # and dwarf for one-line functions. Stabs preserves two line symbols
691 # (one before the prologue and one after) with the same line number,
692 # but dwarf regards these as duplicates and discards one of them.
693 # Therefore the address after the prologue (where the breakpoint is)
694 # has no exactly matching line symbol, and GDB reports the breakpoint
695 # as if it were in the middle of a line rather than at the beginning.
696
697 set bp_location13 [gdb_get_line_number "set breakpoint 13 here"]
698 set bp_location14 [gdb_get_line_number "set breakpoint 14 here"]
699 if {$xfail} {
700 setup_xfail "*-*-*"
4935890f 701 }
0a251e08
YQ
702
703 gdb_test_multiple "continue" "run until breakpoint set at small function, optimized file" {
704 -re "Breakpoint $decimal, marker4 \\(d=177601976\\) at .*$srcfile:$bp_location13\[\r\n\]+$bp_location13\[\t \]+void marker4.*$gdb_prompt $" {
705 pass "run until breakpoint set at small function, optimized file"
706 }
707 -re "Breakpoint $decimal, $hex in marker4 \\(d=177601976\\) at .*$srcfile:$bp_location13\[\r\n\]+$bp_location13\[\t \]+void marker4.*$gdb_prompt $" {
708 pass "run until breakpoint set at small function, optimized file"
709 }
710 -re "Breakpoint $decimal, marker4 \\(d=177601976\\) at .*$srcfile:$bp_location14\[\r\n\]+$bp_location14\[\t \]+void marker4.*$gdb_prompt $" {
711 # marker4() is defined at line 46 when compiled with -DPROTOTYPES
712 pass "run until breakpoint set at small function, optimized file (line bp_location14)"
713 }
4935890f 714 }
4935890f
JK
715
716
0a251e08
YQ
717 # Reset the default arguments for VxWorks
718 if [istarget "*-*-vxworks*"] {
719 set timeout 10
720 verbose "Timeout is now $timeout seconds" 2
721 gdb_test_no_output "set args main"
722 }
4935890f 723
0a251e08
YQ
724 # proc test_different_dir
725 }
726}
1f8a6abb
EZ
727
728
4935890f
JK
729# now move the .debug file to a different location so that we can test
730# the "set debug-file-directory" command.
4935890f 731
08b3fe69
TT
732set different_dir [standard_output_file ${testfile}.dir]
733set debugfile "${different_dir}/[standard_output_file ${testfile}.debug]"
8e1d0c49
JK
734remote_exec build "rm -rf $different_dir"
735remote_exec build "mkdir -p [file dirname $debugfile]"
08b3fe69 736remote_exec build "mv -f [standard_output_file ${testfile}.debug] $debugfile"
8e1d0c49
JK
737
738test_different_dir debuglink $different_dir 0
4935890f
JK
739
740
287ccc17
JK
741# Test CRC mismatch is reported.
742
743if {[build_executable sepdebug.exp sepdebug2 sepdebug2.c debug] != -1
08b3fe69 744 && ![gdb_gnu_strip_debug [standard_output_file sepdebug2]]} {
287ccc17 745
08b3fe69 746 remote_exec build "cp ${debugfile} [standard_output_file sepdebug2.debug]"
287ccc17
JK
747
748 gdb_exit
749 gdb_start
750 gdb_reinitialize_dir $srcdir/$subdir
751
08b3fe69 752 set escapedobjdirsubdir [string_to_regexp [standard_output_file {}]]
287ccc17 753
08b3fe69 754 gdb_test "file [standard_output_file sepdebug2]" "warning: the debug information found in \"${escapedobjdirsubdir}/sepdebug2\\.debug\" does not match \"${escapedobjdirsubdir}/sepdebug2\" \\(CRC mismatch\\)\\..*\\(no debugging symbols found\\).*" "CRC mismatch is reported"
287ccc17
JK
755}
756
757
4935890f
JK
758# NT_GNU_BUILD_ID / .note.gnu.build-id test:
759
760set build_id_debug_filename [build_id_debug_filename_get $binfile]
7020f05c 761if ![string compare $build_id_debug_filename ""] then {
4935890f
JK
762 unsupported "build-id is not supported by the compiler"
763
764 # Spare debug files may confuse testsuite runs in the future.
765 remote_exec build "rm -f $debugfile"
766} else {
767 set build_id_debugself_filename [build_id_debug_filename_get $debugfile]
768 set test "build-id support by binutils"
769 set xfail 0
7020f05c 770 if ![string compare $build_id_debugself_filename ""] then {
4935890f
JK
771 unsupported $test
772 set xfail 1
7020f05c 773 } elseif {[string compare $build_id_debugself_filename $build_id_debug_filename] != 0} then {
4935890f
JK
774 fail $test
775 } else {
776 pass $test
777 }
778
08b3fe69
TT
779 file mkdir [file dirname [standard_output_file ${build_id_debug_filename}]]
780 remote_exec build "mv $debugfile [standard_output_file ${build_id_debug_filename}]"
4935890f 781
08b3fe69 782 test_different_dir build-id [standard_output_file {}] $xfail
4935890f 783
24ddea62
JK
784 # Test also multiple directories can be specified. Without the build-id
785 # reference GDB would find the separate debug info just at the same
786 # location as the executable file.
787
08b3fe69 788 test_different_dir multiple-dirs "/doesnotexist:[standard_output_file {}]" $xfail
24ddea62 789
4935890f 790 # Spare debug files may confuse testsuite runs in the future.
08b3fe69 791 remote_exec build "rm -f [standard_output_file ${build_id_debug_filename}]"
1f8a6abb 792}