Index: gdb/testsuite/gdb.reverse/until-reverse.exp |
diff --git a/gdb/testsuite/gdb.reverse/until-reverse.exp b/gdb/testsuite/gdb.reverse/until-reverse.exp |
index f59c3a5f18f393d14cd1476539cfabff3b735510..51d836a8e5e04b221e399a69d81485346e25c948 100644 |
--- a/gdb/testsuite/gdb.reverse/until-reverse.exp |
+++ b/gdb/testsuite/gdb.reverse/until-reverse.exp |
@@ -20,17 +20,16 @@ if ![supports_reverse] { |
return |
} |
-set testfile "until-reverse" |
-set srcfile ${testfile}.c |
-set srcfile1 ur1.c |
+standard_testfile .c ur1.c |
-if { [prepare_for_testing $testfile.exp $testfile {until-reverse.c ur1.c} ] } { |
+if { [prepare_for_testing $testfile.exp $testfile \ |
+ [list $srcfile $srcfile2]] } { |
return -1 |
} |
set bp_location1 [gdb_get_line_number "set breakpoint 1 here"] |
set bp_location7 [gdb_get_line_number "set breakpoint 7 here"] |
-set bp_location9 [gdb_get_line_number "set breakpoint 9 here" "$srcfile1"] |
+set bp_location9 [gdb_get_line_number "set breakpoint 9 here" "$srcfile2"] |
set bp_location19 [gdb_get_line_number "set breakpoint 19 here"] |
set bp_location20 [gdb_get_line_number "set breakpoint 20 here"] |
set bp_location21 [gdb_get_line_number "set breakpoint 21 here"] |
@@ -71,7 +70,7 @@ gdb_test "finish" \ |
# Advance to a function called by main (marker2) |
# |
gdb_test "advance marker2" \ |
- "marker2 .a=43.*$srcfile1:$bp_location9.*" \ |
+ "marker2 .a=43.*$srcfile2:$bp_location9.*" \ |
"advance to marker2" |
# Now issue an until with another function, not called by the current |
@@ -102,7 +101,7 @@ gdb_test_no_output "set exec-dir reverse" "set reverse execution" |
# |
gdb_test "advance marker2" \ |
- "marker2 .a=43.*$srcfile1:$bp_location9.*" \ |
+ "marker2 .a=43.*$srcfile2:$bp_location9.*" \ |
"reverse-advance to marker2" |
# Finish out to main scope (backward) |