[PATCH 5/57][Arm][GAS] Add support for MVE instructions: vmull{b,t}
[binutils-gdb.git] / gdb / testsuite / gdb.reverse / singlejmp-reverse.exp
bloba2832f80e9774d3ab268df362ae34d70ec8e1169
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] {
17     return
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} \
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
39 clean_restart $executable
41 if ![runto_main] {
42     return -1
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"
54 # FAIL was:
55 # No more reverse-execution history.
56 # {
57 gdb_test "reverse-step" {nodebug \(\);}
59 # FAIL was:
60 # No more reverse-execution history.
61 # {
62 gdb_test "reverse-next" {f \(\);}