Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: gdb/testsuite/gdb.opt/inline-bt.exp

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/testsuite/gdb.opt/inline-break.exp ('k') | gdb/testsuite/gdb.opt/inline-cmds.exp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2008, 2010-2012 Free Software Foundation, Inc. 1 # Copyright 2008, 2010-2012 Free Software Foundation, Inc.
2 2
3 # This program is free software; you can redistribute it and/or modify 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 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 5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version. 6 # (at your option) any later version.
7 # 7 #
8 # This program is distributed in the hope that it will be useful, 8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details. 11 # GNU General Public License for more details.
12 # 12 #
13 # You should have received a copy of the GNU General Public License 13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>. 14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 15
16 set testfile "inline-bt" 16 standard_testfile .c inline-markers.c
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 17
24 if { [gdb_compile ${sources} ${binfile} \ 18 if {[prepare_for_testing $testfile.exp $testfile \
25 » executable {debug optimize=-O2 additional_flags=-Winline}] != "" } { 19 » [list $srcfile $srcfile2] \
26 untested inline-bt.exp 20 » {debug optimize=-O2 additional_flags=-Winline}]} {
27 return -1 21 return -1
28 } 22 }
29 23
30 gdb_exit
31 gdb_start
32 gdb_reinitialize_dir $srcdir/$subdir
33 gdb_load ${binfile}
34
35 runto_main 24 runto_main
36 25
37 get_compiler_info $binfile 26 get_compiler_info
38 get_debug_format 27 get_debug_format
39 if { [skip_inline_frame_tests] } { 28 if { [skip_inline_frame_tests] } {
40 untested inline-bt.exp 29 untested inline-bt.exp
41 return 30 return
42 } 31 }
43 32
44 set line1 [gdb_get_line_number "set breakpoint 1 here" ${srcfile2}] 33 set line1 [gdb_get_line_number "set breakpoint 1 here" ${srcfile2}]
45 gdb_breakpoint $srcfile2:$line1 34 gdb_breakpoint $srcfile2:$line1
46 35
47 gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (1)" 36 gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (1)"
48 gdb_test "backtrace" "#0 bar.*#1 .*main.*" "backtrace from bar (1)" 37 gdb_test "backtrace" "#0 bar.*#1 .*main.*" "backtrace from bar (1)"
49 gdb_test "info frame" ".*called by frame.*" "bar not inlined" 38 gdb_test "info frame" ".*called by frame.*" "bar not inlined"
50 39
51 gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (2)" 40 gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (2)"
52 gdb_test "backtrace" "#0 bar.*#1 .*func1.*#2 .*main.*" \ 41 gdb_test "backtrace" "#0 bar.*#1 .*func1.*#2 .*main.*" \
53 "backtrace from bar (2)" 42 "backtrace from bar (2)"
54 gdb_test "up" "#1 .*func1.*" "up from bar (2)" 43 gdb_test "up" "#1 .*func1.*" "up from bar (2)"
55 gdb_test "info frame" ".*inlined into frame.*" "func1 inlined (2)" 44 gdb_test "info frame" ".*inlined into frame.*" "func1 inlined (2)"
56 45
57 gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (3)" 46 gdb_test "continue" ".*set breakpoint 1 here.*" "continue to bar (3)"
58 gdb_test "backtrace" "#0 bar.*#1 .*func1.*#2 .*func2.*#3 .*main.*" \ 47 gdb_test "backtrace" "#0 bar.*#1 .*func1.*#2 .*func2.*#3 .*main.*" \
59 "backtrace from bar (3)" 48 "backtrace from bar (3)"
60 gdb_test "up" "#1 .*func1.*" "up from bar (3)" 49 gdb_test "up" "#1 .*func1.*" "up from bar (3)"
61 gdb_test "info frame" ".*inlined into frame.*" "func1 inlined (3)" 50 gdb_test "info frame" ".*inlined into frame.*" "func1 inlined (3)"
62 gdb_test "up" "#2 .*func2.*" "up from func1 (3)" 51 gdb_test "up" "#2 .*func2.*" "up from func1 (3)"
63 gdb_test "info frame" ".*inlined into frame.*" "func2 inlined (3)" 52 gdb_test "info frame" ".*inlined into frame.*" "func2 inlined (3)"
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.opt/inline-break.exp ('k') | gdb/testsuite/gdb.opt/inline-cmds.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698