Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / restore.exp
CommitLineData
029d2200
AC
1# This testcase is part of GDB, the GNU debugger.
2
88b9d363 3# Copyright 1998-2022 Free Software Foundation, Inc.
c906108c
SS
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
e22f8b7c 7# the Free Software Foundation; either version 3 of the License, or
c906108c 8# (at your option) any later version.
e22f8b7c 9#
c906108c
SS
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
e22f8b7c 14#
c906108c 15# You should have received a copy of the GNU General Public License
e22f8b7c 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 17
c906108c
SS
18# Test GDB's ability to restore saved registers from stack frames
19# when using the `return' command.
20#
21# This file was written by Jim Blandy <jimb@cygnus.com>, with
22# fragments borrowed from return.exp.
23
e229648e
JK
24standard_testfile
25set executable $testfile
c906108c 26
5b362f04 27if { [prepare_for_testing "failed to prepare" $executable $srcfile] } {
b60f0898 28 return -1
c906108c
SS
29}
30
31proc restore_tests { } {
32 global gdb_prompt
33
029d2200
AC
34 if { ! [ runto driver ] } {
35 return 0
36 }
c906108c
SS
37
38 set limit 5
39
c906108c
SS
40 # For each caller function,
41 # call each of the callee functions,
42 # force a return from the callee, and
43 # make sure that the local variables still have the right values.
029d2200 44
c906108c
SS
45 for {set c 1} {$c <= $limit} {incr c} {
46
1b8947f0 47 # Set a breakpoint at the next caller function.
11af934b 48 gdb_test "tbreak caller$c" "Temporary breakpoint.*\[0-9\]*\\."
1b8947f0 49
c906108c 50 # Continue to the next caller function.
029d2200 51 gdb_test "continue" " caller$c prologue .*" "run to caller$c"
c906108c
SS
52
53 # Do each callee function.
54 for {set e 1} {$e <= $limit} {incr e} {
1b8947f0 55
18ac113b 56 gdb_test "tbreak callee$e" "Temporary breakpoint.*\[0-9\]*\\." \
029d2200 57 "caller$c calls callee$e; tbreak callee"
1b8947f0 58
029d2200
AC
59 gdb_test "continue" " callee$e prologue .*/" \
60 "caller$c calls callee$e; continue to callee"
61
c906108c 62 # Do a forced return from the callee.
029d2200 63 set test "caller$c calls callee$e; return callee now"
02746bbc
MS
64
65 gdb_test "return 0" \
66 " caller$c .*" \
67 "$test" \
68 "Make .* return now.*y or n. $" \
69 "y"
c906108c
SS
70
71 # Check that the values of the local variables are what
72 # they should be.
73 for {set var 1} {$var <= $c} {incr var} {
d4f3574e 74 set expected [expr 0x7eeb + $var]
77d03678
TV
75 set test "caller$c calls callee$e; return restored l$var to $expected"
76 set pass_pattern " = $expected"
77 set unsupported_pattern " = <optimized out>"
78 gdb_test_multiple "print l$var" $test {
79 -re "\[\r\n\]*(?:$pass_pattern)\[\r\n\]+$gdb_prompt $" {
80 pass $test
81 }
82 -re "\[\r\n\]*(?:$unsupported_pattern)\[\r\n\]+$gdb_prompt $" {
83 unsupported $test
84 }
85 }
c906108c
SS
86 }
87 }
88 }
89
12264a45 90 gdb_continue_to_end "" continue 1
c906108c
SS
91}
92
97f2ed50 93set prev_timeout $timeout
c906108c
SS
94set timeout 30
95restore_tests
97f2ed50 96set timeout $prev_timeout
94c18618
SDJ
97
98# Test PR cli/23785
99clean_restart $binfile
100if { ![runto_main] } {
101 return -1
102}
103gdb_test "restore non-existent-file binary" \
104 "Failed to open non-existent-file: .*"
This page took 3.014646 seconds and 4 git commands to generate.