diff options
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/mips/mips.exp | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4bf26f8..e47d825 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2017-05-10 Maciej W. Rozycki <macro@imgtec.com> + + * testsuite/binutils-all/mips/mips.exp: Define `tempfile' and + `copyfile' variables. + 2017-05-10 Claudiu Zissulescu <claziss@synopsys.com> * readelf.c (decode_ARC_machine_flags): Recognize OSABI v4. diff --git a/binutils/testsuite/binutils-all/mips/mips.exp b/binutils/testsuite/binutils-all/mips/mips.exp index 672515c..33752c6 100644 --- a/binutils/testsuite/binutils-all/mips/mips.exp +++ b/binutils/testsuite/binutils-all/mips/mips.exp @@ -19,6 +19,14 @@ if ![istarget mips*-*-*] { return } +if [is_remote host] { + set tempfile [remote_download host tmpdir/bintest.o] + set copyfile copy +} else { + set tempfile tmpdir/bintest.o + set copyfile tmpdir/copy +} + if [is_elf_format] { run_dump_test "mips-ase-1" run_dump_test "mips-ase-2" |