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

Side by Side Diff: gdb/testsuite/gdb.reverse/solib-reverse.exp

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 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.reverse/solib-reverse.c ('k') | gdb/testsuite/gdb.reverse/step-precsave.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 2009-2012 Free Software Foundation, Inc. 1 # Copyright 2009-2013 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 # This file is part of the GDB testsuite. It tests reverse debugging 16 # This file is part of the GDB testsuite. It tests reverse debugging
17 # with shared libraries. 17 # with shared libraries.
18 18
19 if ![supports_reverse] { 19 if ![supports_reverse] {
20 return 20 return
21 } 21 }
22 if {[skip_shlib_tests]} {
23 return
24 }
22 25
23 standard_testfile 26 standard_testfile
24 set libfile "shr2" 27 set lib1file "shr1"
25 set libsrc ${libfile}.c 28 set lib1src ${lib1file}.c
26 set library [standard_output_file ${libfile}.sl] 29 set library1 [standard_output_file ${lib1file}.sl]
30 set lib2file "shr2"
31 set lib2src ${lib2file}.c
32 set library2 [standard_output_file ${lib2file}.sl]
27 33
28 if [get_compiler_info] { 34 if [get_compiler_info] {
29 return -1 35 return -1
30 } 36 }
31 37
32 if { [gdb_compile_shlib ${srcdir}/${subdir}/${libsrc} ${library} "debug"] != "" } { 38 # Compile the first without debug info so that
33 untested "Could not compile shared library." 39 # stepping and reverse stepping doesn't end up inside them.
40 if { [gdb_compile_shlib ${srcdir}/${subdir}/${lib1src} ${library1} ""] != "" } {
41 untested "Could not compile shared library1."
34 return -1 42 return -1
35 } 43 }
36 44
37 set exec_opts [list debug shlib=${library}] 45 if { [gdb_compile_shlib ${srcdir}/${subdir}/${lib2src} ${library2} "debug"] != " " } {
46 untested "Could not compile shared library2."
47 return -1
48 }
49
50 set exec_opts [list debug shlib=${library1} shlib=${library2}]
38 51
39 if { [gdb_compile ${srcdir}/${subdir}/${srcfile} ${binfile} executable $exec_opt s] != "" } { 52 if { [gdb_compile ${srcdir}/${subdir}/${srcfile} ${binfile} executable $exec_opt s] != "" } {
40 untested "Could not compile $binfile." 53 untested "Could not compile $binfile."
41 return -1 54 return -1
42 } 55 }
43 56
44 # Start with a fresh gdb. 57 # Start with a fresh gdb.
45 58
46 gdb_exit 59 gdb_exit
47 gdb_start 60 gdb_start
48 61
49 # Clear it to never find any separate system debug infos. 62 # Note: The test previously did "set debug-file-directory" to (try to)
50 gdb_test_no_output "set debug-file-directory" 63 # ensure the debug info for the dynamic loader and libc weren't found.
64 # This doesn't work if the debug info is in the .debug subdirectory.
65 # Avoiding debug info for system libraries is not germaine to this test
66 # and is no longer attempted. Instead, the test does not make assumptions
67 # about whether the debug info is present or not.
51 68
52 gdb_reinitialize_dir $srcdir/$subdir 69 gdb_reinitialize_dir $srcdir/$subdir
53 gdb_load ${binfile} 70 gdb_load ${binfile}
54 71 gdb_load_shlibs $library1
72 gdb_load_shlibs $library2
55 73
56 runto main 74 runto main
57 75
58 if [supports_process_record] { 76 if [supports_process_record] {
59 # Activate process record/replay 77 # Activate process record/replay
60 gdb_test_no_output "record" "Turn on process record" 78 gdb_test_no_output "record" "Turn on process record"
61 } 79 }
62 80
63 # 81 #
64 # Test reverse-step over undebuggable solib functions. 82 # Test reverse-step over undebuggable solib functions.
65 # 83 #
66 84
67 # Run forward past some solib function calls. 85 # Run forward past some solib function calls.
68 86
69 set end_part_one [gdb_get_line_number " end part one" "$srcfile"] 87 set end_part_one [gdb_get_line_number " end part one" "$srcfile"]
70 set end_part_two [gdb_get_line_number " end part two" "$srcfile"] 88 set end_part_two [gdb_get_line_number " end part two" "$srcfile"]
71 gdb_test "until $end_part_one" " end part one.*" "run until end part one" 89 gdb_test "until $end_part_one" " end part one.*" "run until end part one"
72 90
73 gdb_test "reverse-step" " sleep three .*" "reverse-step third sleep" 91 gdb_test "reverse-step" " shr1 three .*" "reverse-step third shr1"
74 gdb_test "reverse-step" " sleep two .*" "reverse-step second sleep" 92 gdb_test "reverse-step" " shr1 two .*" "reverse-step second shr1"
75 gdb_test "reverse-step" " sleep one .*" \ 93 gdb_test "reverse-step" " shr1 one .*" "reverse-step first shr1"
76 » » "reverse-step first sleep, dynsym resolve"
77 94
78 gdb_test "reverse-step" " printf three .*" "reverse-step third printf"
79 gdb_test "reverse-step" " printf two .*" "reverse-step second printf"
80 gdb_test "reverse-step" " printf one .*" \
81 "reverse-step first printf, dynsym resolve"
82 gdb_test "reverse-step" " generic statement.*" "reverse-step generic" 95 gdb_test "reverse-step" " generic statement.*" "reverse-step generic"
83 96
84 97
85 # 98 #
86 # Test reverse-next over undebuggable solib functions. 99 # Test reverse-next over undebuggable solib functions.
87 # 100 #
88 101
89 # Run forward again... 102 # Run forward again...
90 103
91 gdb_test "until $end_part_one" " end part one.*" "forward to end part one" 104 gdb_test "until $end_part_one" " end part one.*" "forward to end part one"
92 105
93 gdb_test "reverse-next" " sleep three .*" "reverse-next third sleep" 106 gdb_test "reverse-next" " shr1 three .*" "reverse-next third shr1"
94 gdb_test "reverse-next" " sleep two .*" "reverse-next second sleep" 107 gdb_test "reverse-next" " shr1 two .*" "reverse-next second shr1"
95 gdb_test "reverse-next" " sleep one .*" \ 108 gdb_test "reverse-next" " shr1 one .*" "reverse-next first shr1"
96 » » "reverse-next first sleep, dynsym resolve"
97 109
98 gdb_test "reverse-next" " printf three .*" "reverse-next third printf"
99 gdb_test "reverse-next" " printf two .*" "reverse-next second printf"
100 gdb_test "reverse-next" " printf one .*" \
101 "reverse-next first printf, dynsym resolve"
102 gdb_test "reverse-next" " generic statement.*" "reverse-next generic" 110 gdb_test "reverse-next" " generic statement.*" "reverse-next generic"
103 111
104 112
105 # 113 #
106 # Test reverse-step into debuggable solib function 114 # Test reverse-step into debuggable solib function
107 # 115 #
108 116
109 gdb_test "reverse-step" "${libsrc}.*" "reverse-step into solib function one" 117 gdb_test "reverse-step" "${lib2src}.*" "reverse-step into solib function one"
110 gdb_test "reverse-step" "return 2.x.*" "reverse-step within solib function one" 118 gdb_test "reverse-step" "return 2.x.*" "reverse-step within solib function one"
111 gdb_test "reverse-step" " middle part two.*" "reverse-step back to main one" 119 gdb_test "reverse-step" " middle part two.*" "reverse-step back to main one"
112 120
113 gdb_test "reverse-step" "${libsrc}.*" "reverse-step into solib function two" 121 gdb_test "reverse-step" "${lib2src}.*" "reverse-step into solib function two"
114 gdb_test "reverse-step" "return 2.x.*" "reverse-step within solib function two" 122 gdb_test "reverse-step" "return 2.x.*" "reverse-step within solib function two"
115 gdb_test "reverse-step" " begin part two.*" "reverse-step back to main two" 123 gdb_test "reverse-step" " begin part two.*" "reverse-step back to main two"
116 124
117 # 125 #
118 # Test reverse-next over debuggable solib function 126 # Test reverse-next over debuggable solib function
119 # 127 #
120 128
121 gdb_test "until $end_part_two" " end part two.*" "run until end part two" 129 gdb_test "until $end_part_two" " end part two.*" "run until end part two"
122 130
123 gdb_test "reverse-next" " middle part two.*" "reverse-next over solib function o ne" 131 gdb_test "reverse-next" " middle part two.*" "reverse-next over solib function o ne"
124 gdb_test "reverse-next" " begin part two.*" "reverse-next over solib function tw o" 132 gdb_test "reverse-next" " begin part two.*" "reverse-next over solib function tw o"
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.reverse/solib-reverse.c ('k') | gdb/testsuite/gdb.reverse/step-precsave.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698