| Index: gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.exp
|
| diff --git a/gdb/testsuite/gdb.arch/amd64-prologue-xmm.exp b/gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.exp
|
| similarity index 56%
|
| copy from gdb/testsuite/gdb.arch/amd64-prologue-xmm.exp
|
| copy to gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.exp
|
| index ecd3b523ceab56f7afd0fcf8495ab6965aac1db2..da9f4397b2bdc8398dadce2013cce97f8df55475 100644
|
| --- a/gdb/testsuite/gdb.arch/amd64-prologue-xmm.exp
|
| +++ b/gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.exp
|
| @@ -1,4 +1,4 @@
|
| -# Copyright 2011-2012 Free Software Foundation, Inc.
|
| +# Copyright (C) 2012 Free Software Foundation, Inc.
|
| #
|
| # This program is free software; you can redistribute it and/or modify
|
| # it under the terms of the GNU General Public License as published by
|
| @@ -13,24 +13,23 @@
|
| # You should have received a copy of the GNU General Public License
|
| # along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
| -# Test GCC PR debug/48827 workaround in GDB.
|
| +if ![supports_reverse] {
|
| + return
|
| +}
|
|
|
| -set testfile "amd64-prologue-xmm"
|
| -set srcfile ${testfile}.s
|
| -set csrcfile ${testfile}.c
|
| -set binfile ${objdir}/${subdir}/${testfile}.x
|
| set opts {}
|
| +standard_testfile .S
|
|
|
| if [info exists COMPILE] {
|
| - # make check RUNTESTFLAGS='gdb.arch/amd64-prologue-xmm.exp COMPILE=1'
|
| - set srcfile ${csrcfile}
|
| - lappend opts debug optimize=-O0
|
| + # make check RUNTESTFLAGS="gdb.reverse/amd64-tailcall-reverse.exp COMPILE=1"
|
| + standard_testfile
|
| + lappend opts debug optimize=-O2
|
| } elseif { ![istarget x86_64-*-* ] || ![is_lp64_target] } {
|
| - verbose "Skipping amd64-prologue-xmm test."
|
| - return 0
|
| + verbose "Skipping ${testfile}."
|
| + return
|
| }
|
|
|
| -if {[prepare_for_testing ${testfile}.exp ${testfile} $srcfile $opts]} {
|
| +if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} $opts] } {
|
| return -1
|
| }
|
|
|
| @@ -38,9 +37,13 @@ if ![runto_main] {
|
| return -1
|
| }
|
|
|
| -gdb_breakpoint "func"
|
| -gdb_breakpoint "marker"
|
| +if [supports_process_record] {
|
| + gdb_test_no_output "record"
|
| +}
|
|
|
| -gdb_continue_to_breakpoint "func"
|
| +gdb_test "next" {f \(\);} "next to f"
|
| +gdb_test "next" {v = 3;} "next to v = 3"
|
|
|
| -gdb_test "p fail" " = 0" "stopped at func"
|
| +# FAIL was:
|
| +# 29 g ();
|
| +gdb_test "reverse-next" {f \(\);}
|
|
|