1 |
330 |
jeremybenn |
# Copyright 2008, 2010 Free Software Foundation, Inc.
|
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
|
5 |
|
|
# the Free Software Foundation; either version 3 of the License, or
|
6 |
|
|
# (at your option) any later version.
|
7 |
|
|
#
|
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.
|
12 |
|
|
#
|
13 |
|
|
# You should have received a copy of the GNU General Public License
|
14 |
|
|
# along with this program. If not, see .
|
15 |
|
|
|
16 |
|
|
set testfile "inline-bt"
|
17 |
|
|
set srcfile ${testfile}.c
|
18 |
|
|
set srcfile2 "inline-markers.c"
|
19 |
|
|
set fullsrcfile "${srcdir}/${subdir}/${srcfile}"
|
20 |
|
|
set fullsrcfile2 "${srcdir}/${subdir}/${srcfile2}"
|
21 |
|
|
set sources [list ${fullsrcfile} ${fullsrcfile2}]
|
22 |
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
23 |
|
|
|
24 |
|
|
if { [gdb_compile ${sources} ${binfile} \
|
25 |
|
|
executable {debug optimize=-O2 additional_flags=-Winline}] != "" } {
|
26 |
|
|
untested inline-bt.exp
|
27 |
|
|
return -1
|
28 |
|
|
}
|
29 |
|
|
|
30 |
|
|
gdb_exit
|
31 |
|
|
gdb_start
|
32 |
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
33 |
|
|
gdb_load ${binfile}
|
34 |
|
|
|
35 |
|
|
runto_main
|
36 |
|
|
|
37 |
|
|
get_compiler_info $binfile
|
38 |
|
|
get_debug_format
|
39 |
|
|
if { [skip_inline_frame_tests] } {
|
40 |
|
|
untested inline-bt.exp
|
41 |
|
|
return
|
42 |
|
|
}
|
43 |
|
|
|
44 |
|
|
set line1 [gdb_get_line_number "set breakpoint 1 here" ${srcfile2}]
|
45 |
|
|
gdb_breakpoint $srcfile2:$line1
|
46 |
|
|
|
47 |
|
|
gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (1)"
|
48 |
|
|
gdb_test "backtrace" "#0 bar.*#1 .*main.*" "backtrace from bar (1)"
|
49 |
|
|
gdb_test "info frame" ".*called by frame.*" "bar not inlined"
|
50 |
|
|
|
51 |
|
|
gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (2)"
|
52 |
|
|
gdb_test "backtrace" "#0 bar.*#1 .*func1.*#2 .*main.*" \
|
53 |
|
|
"backtrace from bar (2)"
|
54 |
|
|
gdb_test "up" "#1 .*func1.*" "up from bar (2)"
|
55 |
|
|
gdb_test "info frame" ".*inlined into frame.*" "func1 inlined (2)"
|
56 |
|
|
|
57 |
|
|
gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (3)"
|
58 |
|
|
gdb_test "backtrace" "#0 bar.*#1 .*func1.*#2 .*func2.*#3 .*main.*" \
|
59 |
|
|
"backtrace from bar (3)"
|
60 |
|
|
gdb_test "up" "#1 .*func1.*" "up from bar (3)"
|
61 |
|
|
gdb_test "info frame" ".*inlined into frame.*" "func1 inlined (3)"
|
62 |
|
|
gdb_test "up" "#2 .*func2.*" "up from func1 (3)"
|
63 |
|
|
gdb_test "info frame" ".*inlined into frame.*" "func2 inlined (3)"
|