1 # Copyright
2008-2022 Free Software Foundation
, Inc.
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.
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.
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
/>.
*/
16 # This file is part of the GDB testsuite. It tests
'until' and
17 #
'advance' in precord logfile.
19 # This test suitable only
for process record
-replay
20 if ![supports_process_record
] {
24 standard_testfile until
-reverse.c ur1.c
25 set precsave
[standard_output_file until.precsave
]
27 if { [prepare_for_testing
"failed to prepare" $testfile \
28 [list $srcfile $srcfile2
]] } {
32 set bp_location1
[gdb_get_line_number
"set breakpoint 1 here"]
33 set bp_location7
[gdb_get_line_number
"set breakpoint 7 here"]
34 set bp_location8
[gdb_get_line_number
"set breakpoint 8 here" "$srcfile2"]
35 set bp_location19
[gdb_get_line_number
"set breakpoint 19 here"]
36 set bp_location20
[gdb_get_line_number
"set breakpoint 20 here"]
37 set bp_location21
[gdb_get_line_number
"set breakpoint 21 here"]
41 if [supports_process_record
] {
42 # Activate process record
/replay
43 gdb_test_no_output
"record" "turn on process record"
46 set end_of_main
[gdb_get_line_number
"set breakpoint 10a here" ]
47 gdb_test
"break $end_of_main" \
48 "Breakpoint $decimal at .*$srcfile, line $end_of_main\." \
49 "breakpoint at end of main"
51 # This can take awhile.
52 with_timeout_factor
20 {
53 gdb_test_multiple
"continue" "run to end of main" {
54 -wrap
-re
"Breakpoint .* set breakpoint 10a here .*" {
57 -wrap
-re
"Process record does not support instruction 0xfae64 at.*" {
58 kfail
"gdb/25038" $gdb_test_name
64 # So can this
, against gdbserver
, for example.
66 with_timeout_factor
10 {
67 gdb_test
"record save $precsave" \
68 "Saved core file $precsave with execution log\." \
69 "save process recfile"
72 gdb_test
"kill" "" "kill process, prepare to debug log file" \
73 "Kill the program being debugged\\? \\(y or n\\) " "y"
75 gdb_test
"record restore $precsave" \
76 "Restored records from core file .*" \
79 # Verify that plain vanilla
"until <location>" works.
81 gdb_test
"until $bp_location1" \
82 "main .* at .*:$bp_location1.*" \
85 # Advance up to factorial
, outer invocation
87 gdb_test
"advance factorial" \
88 "factorial .value=6..*$srcfile:$bp_location7.*" \
89 "advance to factorial"
91 # At this point
, 'until' should
continue the inferior up to when all the
92 # inner invocations of factorial
() are completed and we are
back at this
95 gdb_test
"until $bp_location19" \
96 "factorial .value=720.*${srcfile}:$bp_location19.*" \
97 "until factorial, recursive function"
99 # Finish out to main scope
102 "main .*$srcfile:.*" \
105 # Advance to a function called by main
(marker2
)
107 gdb_test
"advance marker2" \
108 "marker2 .a=43.*$srcfile2:$bp_location8.*" \
111 # Now issue an until with another function
, not called by the current
112 # frame
, as
argument. This should not work
, i.e. the
program should
113 # stop at main
, the caller
, where we put the
'guard' breakpoint.
115 set test_msg
"until func, not called by current frame"
116 gdb_test_multiple
"until marker3" "$test_msg" {
117 -re
"main .*at .*${srcfile}:$bp_location20.*$gdb_prompt $" {
120 -re
"main .*at .*${srcfile}:$bp_location21.*$gdb_prompt $" {
129 #
Set reverse execution direction
131 gdb_test_no_output
"set exec-dir reverse" "set reverse execution"
134 # We should now be at main
, after the
return from marker2.
135 #
"Advance" backward into marker2.
138 gdb_test
"advance marker2" \
139 "marker2 .a=43.*$srcfile2:$bp_location8.*" \
140 "reverse-advance to marker2"
142 # Finish out to main scope
(backward
)
145 " in main .*$srcfile:$bp_location20.*" \
146 "reverse-finish from marker2"
148 # Advance backward to last line of factorial
(outer invocation
)
150 gdb_test
"advance $bp_location19" \
151 "factorial .value=720.*${srcfile}:$bp_location19.*" \
152 "reverse-advance to final return of factorial"
154 # Now
do "until" across the recursive calls,
155 # ending up in the same frame where we are now.
157 gdb_test
"until $bp_location7" \
158 "factorial .value=6..*$srcfile:$bp_location7.*" \
159 "reverse-until to entry of factorial"