blob: b29f6c78342455dced55f2bc0e9b4e96fec2af42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
if $tracelevel then {
strace $tracelevel
}
set prms_id 0
set bug_id 0
set testfile twice-tmp
set srcfile ${objdir}/${subdir}/${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
execute_anywhere "echo #include \\\"twice.c\\\" > ${srcfile}"
if { [compile "${srcfile} -g -I${srcdir}/${subdir} -o ${binfile}"] != "" } {
perror "Couldn't compile ${srcfile}"
return -1
}
# Start with a fresh gdb.
gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load $binfile
if [runto_main] then {
# Test that GDB can still detect whether we have line numbers
# even if we're executing code in an include file.
# The bug was fixed by
#Tue Jun 29 11:02:58 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
#
# * infrun.c (wait_for_inferior): Use find_pc_line not
# find_pc_symtab to check whether there is line number
# information.
gdb_test "step" "nothing \\(\\) at.*"
}
return 0
|