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