1 # Copyright (C) 2012-2019 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 if ![supports_reverse] {
20 standard_testfile ".S" "${gdb_test_file_name}-nodebug.S"
21 set executable ${testfile}
23 if [info exists COMPILE] {
24 # make check RUNTESTFLAGS="gdb.reverse/singlejmp-reverse.exp COMPILE=1"
25 if { [build_executable_from_specs ${testfile}.exp $executable {} \
26 ${testfile}.c {debug optimize=-O2} \
27 ${testfile}-nodebug.c {optimize=-O2} \
31 } elseif { ![istarget x86_64-*-* ] || ![is_lp64_target] } {
32 verbose "Skipping ${testfile}."
34 } elseif { [build_executable ${testfile}.exp ${testfile} \
35 [list ${srcfile} ${srcfile2}] {}] == -1 } {
39 clean_restart $executable
45 if [supports_process_record] {
46 gdb_test_no_output "record"
49 gdb_test "next" {v = 1;} "next to v = 1"
50 gdb_test "next" {f \(\);} "next to f"
51 gdb_test "next" {nodebug \(\);} "next to nodebug"
52 gdb_test "next" {v = 3;} "next to v = 3"
55 # No more reverse-execution history.
57 gdb_test "reverse-step" {nodebug \(\);}
60 # No more reverse-execution history.
62 gdb_test "reverse-next" {f \(\);}