packaging: Add python3-base dependency
[platform/upstream/gdb.git] / gdb / testsuite / gdb.reverse / solib-precsave.exp
1 # Copyright 2009-2023 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 <http://www.gnu.org/licenses/>.
15
16 # This file is part of the GDB testsuite.  It tests precord debugging
17 # with shared libraries and a logfile.
18
19 # This test suitable only for process record-replay
20 if ![supports_process_record] {
21     return
22 }
23 if {[skip_shlib_tests]} {
24     return
25 }
26
27 standard_testfile solib-reverse.c
28 set precsave [standard_output_file solib.precsave]
29 set lib1file "shr1"
30 set lib1src  ${lib1file}.c
31 set library1 [standard_output_file ${lib1file}.sl]
32 set lib2file "shr2"
33 set lib2src  ${lib2file}.c
34 set library2 [standard_output_file ${lib2file}.sl]
35
36 # Compile the first without debug info so that
37 # stepping and reverse stepping doesn't end up inside them.
38 if { [gdb_compile_shlib ${srcdir}/${subdir}/${lib1src} ${library1} ""] != "" } {
39     untested "failed to compile shared library 1"
40     return -1
41 }
42
43 if { [gdb_compile_shlib ${srcdir}/${subdir}/${lib2src} ${library2} "debug"] != "" } {
44     untested "failed to compile shared library 2"
45     return -1
46 }
47
48 set exec_opts [list debug shlib=${library1} shlib=${library2}]
49
50 # Attempt to prevent -Wl,-z,relro which may happen by default with some
51 # toolchain configurations.  Due to PR corefiles/11804 GDB will then produce
52 # invalid core file.
53
54 if { [gdb_compile ${srcdir}/${subdir}/${srcfile} ${binfile} executable \
55                      [concat $exec_opts ldflags=-Wl,-z,norelro]] != ""
56      && [gdb_compile ${srcdir}/${subdir}/${srcfile} ${binfile} executable $exec_opts] != "" } {
57     untested "failed to compile"
58     return -1
59 }
60      
61 # Start with a fresh gdb.
62
63 gdb_exit
64 gdb_start
65
66 # Note: The test previously did "set debug-file-directory" to (try to)
67 # ensure the debug info for the dynamic loader and libc weren't found.
68 # This doesn't work if the debug info is in the .debug subdirectory.
69 # Avoiding debug info for system libraries is not germaine to this test
70 # and is no longer attempted.  Instead, the test does not make assumptions
71 # about whether the debug info is present or not.
72
73 gdb_reinitialize_dir $srcdir/$subdir
74 gdb_load ${binfile}
75 gdb_load_shlib $library1
76 gdb_load_shlib $library2
77
78 runto_main
79
80 if [supports_process_record] {
81     # Activate process record/replay
82     gdb_test_no_output "record" "turn on process record"
83 }
84
85 set end_of_main [gdb_get_line_number "end of main" ]
86 gdb_test "break $end_of_main" \
87     "Breakpoint $decimal at .*$srcfile, line $end_of_main\." \
88     "breakpoint at end of main"
89
90 gdb_test_multiple "continue" "run to end of main" {
91     -wrap -re "Breakpoint .* end of main .*" {
92         pass $gdb_test_name
93     }
94     -wrap -re "Process record does not support instruction 0xfae64 at.*" {
95         kfail "gdb/25038" $gdb_test_name
96         return -1
97     }
98 }
99
100 gdb_test "record save $precsave" \
101     "Saved core file $precsave with execution log\."  \
102     "save process recfile"
103
104 gdb_test "kill" "" "kill process, prepare to debug log file" \
105     "Kill the program being debugged\\? \\(y or n\\) " "y"
106
107 gdb_test "record restore $precsave" \
108     "Restored records from core file .*" \
109     "reload core file"
110
111 #
112 # Test reverse-step over undebuggable solib functions.
113 #
114
115 # Run forward past some solib function calls.
116
117 set end_part_one [gdb_get_line_number " end part one" "$srcfile"]
118 set end_part_two [gdb_get_line_number " end part two" "$srcfile"]
119 gdb_test "until $end_part_one" " end part one.*" "run until end part one"
120
121 gdb_test "reverse-step" " shr1 three .*" "reverse-step third shr1"
122 gdb_test "reverse-step" " shr1 two .*"   "reverse-step second shr1"
123 gdb_test "reverse-step" " shr1 one .*"   "reverse-step first shr1"
124
125 gdb_test "reverse-step" " generic statement.*" "reverse-step generic"
126
127
128 #
129 # Test reverse-next over undebuggable solib functions.
130 #
131
132 # Run forward again...
133
134 gdb_test "until $end_part_one" " end part one.*" "forward to end part one"
135
136 gdb_test "reverse-next" " shr1 three .*" "reverse-next third shr1"
137 gdb_test "reverse-next" " shr1 two .*"   "reverse-next second shr1"
138 gdb_test "reverse-next" " shr1 one .*"   "reverse-next first shr1"
139
140 gdb_test "reverse-next" " generic statement.*" "reverse-next generic"
141
142
143 #
144 # Test reverse-step into debuggable solib function
145 #
146
147 gdb_test_multiple "reverse-step" "reverse-step into solib function one" {
148     -re -wrap "middle part two.*" {
149         send_gdb "reverse-step\n"
150         exp_continue
151     }
152     -re -wrap "${lib2src}.*" {
153         pass $gdb_test_name
154     }
155 }
156 gdb_test "reverse-step" "return 2.x.*" "reverse-step within solib function one"
157 gdb_test "reverse-step" " middle part two.*" "reverse-step back to main one"
158
159 gdb_test_multiple "reverse-step" "reverse-step into solib function two" {
160     -re -wrap "begin part two.*" {
161         send_gdb "reverse-step\n"
162         exp_continue
163     }
164     -re -wrap "${lib2src}.*" {
165         pass $gdb_test_name
166     }
167 }
168 gdb_test "reverse-step" "return 2.x.*" "reverse-step within solib function two"
169 gdb_test "reverse-step" " begin part two.*" "reverse-step back to main two"
170
171 #
172 # Test reverse-next over debuggable solib function
173 #
174
175 gdb_test "until $end_part_two" " end part two.*" "run until end part two"
176
177 gdb_test "reverse-next" " middle part two.*" "reverse-next over solib function one"
178 gdb_test_multiple "reverse-next" "reverse-next over solib function two" {
179     -re -wrap "middle part two.*" {
180         send_gdb "reverse-next\n"
181         exp_continue
182     }
183     -re -wrap " begin part two.*" {
184         pass $gdb_test_name
185     }
186 }