Index: gdb/testsuite/gdb.asm/asm-source.exp |
diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp |
index db2ae2b1aa572a5e9a8f9d7bee0bea6514f10d63..511bd21520f2e486635d27ac3a9e5252cb4b08e0 100644 |
--- a/gdb/testsuite/gdb.asm/asm-source.exp |
+++ b/gdb/testsuite/gdb.asm/asm-source.exp |
@@ -1,4 +1,4 @@ |
-# Copyright 1998, 2000-2004, 2007-2012 Free Software Foundation, Inc. |
+# Copyright 1998-2013 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 |
@@ -194,16 +194,19 @@ if [board_info $dest exists multilib_flags] { |
if { "${multilib_flags}" != "" } { |
untested asm-source.exp |
return -1 |
- return; |
+ return |
} |
} |
standard_testfile asmsrc1.s asmsrc2.s |
-remote_exec build "rm -f ${subdir}/arch.inc" |
-remote_download host ${srcdir}/${subdir}/${asm-arch}.inc ${subdir}/arch.inc |
-remote_exec build "rm -f ${subdir}/note.inc" |
-remote_download host ${srcdir}/${subdir}/${asm-note}.inc ${subdir}/note.inc |
+set arch_inc [standard_output_file arch.inc] |
+set note_inc [standard_output_file note.inc] |
+ |
+remote_exec build "rm -f $arch_inc" |
+remote_download host ${srcdir}/${subdir}/${asm-arch}.inc $arch_inc |
+remote_exec build "rm -f $note_inc" |
+remote_download host ${srcdir}/${subdir}/${asm-note}.inc $note_inc |
if { [string equal ${asm-flags} ""] } { |
set asm-flags "-I${srcdir}/${subdir} $obj_include" |
@@ -467,5 +470,5 @@ test_dis "disassem &staticvar, &staticvar+1" "staticvar" |
gdb_test "disassem foostatic" ".*<\\+0>:.*End of assembler dump." \ |
"look at static function" |
-remote_exec build "rm -f ${subdir}/arch.inc" |
-remote_exec build "rm -f ${subdir}/note.inc" |
+remote_exec build "rm -f $arch_inc" |
+remote_exec build "rm -f $note_inc" |