1# Copyright (C) 2012-2020 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
16if ![supports_reverse] {
17    return
18}
19
20standard_testfile ".S" "${gdb_test_file_name}-nodebug.S"
21set executable ${testfile}
22
23if [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} \
28				      ] == -1 } {
29	return -1
30    }
31} elseif { ![istarget x86_64-*-* ] || ![is_lp64_target] } {
32    verbose "Skipping ${testfile}."
33    return
34} elseif { [build_executable ${testfile}.exp ${testfile} \
35	    [list ${srcfile} ${srcfile2}] {}] == -1 } {
36    return -1
37}
38
39clean_restart $executable
40
41if ![runto_main] {
42    return -1
43}
44
45if [supports_process_record] {
46    gdb_test_no_output "record"
47}
48
49gdb_test "next" {v = 1;} "next to v = 1"
50gdb_test "next" {f \(\);} "next to f"
51gdb_test "next" {nodebug \(\);} "next to nodebug"
52gdb_test "next" {v = 3;} "next to v = 3"
53
54# FAIL was:
55# No more reverse-execution history.
56# {
57gdb_test "reverse-step" {nodebug \(\);}
58
59# FAIL was:
60# No more reverse-execution history.
61# {
62gdb_test "reverse-next" {f \(\);}
63