From: Elena Zannoni Date: Fri, 19 Apr 2002 16:06:59 +0000 (+0000) Subject: 2002-04-19 Elena Zannoni X-Git-Tag: binutils-2_13-branchpoint~1334 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a73a20a2d55bf019cb8e5a7d872bc4391e531e61;p=platform%2Fupstream%2Fbinutils.git 2002-04-19 Elena Zannoni * gdb.asm/asm-source.exp: Don't use a symlink, just copy the instruction file directly into the build tree. Clean up at end of test. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index febf09e..488492e 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2002-04-19 Elena Zannoni + + * gdb.asm/asm-source.exp: Don't use a symlink, just copy the + instruction file directly into the build tree. Clean up at end of + test. + 2002-04-18 David S. Miller * gdb.base/annota1.exp: Expect addresses as $hex + whitespace to diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp index 11ced29..01a3a2f 100644 --- a/gdb/testsuite/gdb.asm/asm-source.exp +++ b/gdb/testsuite/gdb.asm/asm-source.exp @@ -87,9 +87,8 @@ set binfile ${objdir}/${subdir}/${testfile} set src1 ${srcdir}/${subdir}/asmsrc1.s set src2 ${srcdir}/${subdir}/asmsrc2.s -set insn_file ${srcdir}/${subdir}/${asm-arch}.inc -remote_exec build "rm -f ${objdir}/${subdir}/arch.inc" -remote_exec build "ln -s ${insn_file} ${objdir}/${subdir}/arch.inc" +remote_exec build "rm -f ${subdir}/arch.inc" +remote_download host ${srcdir}/${subdir}/${asm-arch}.inc ${subdir}/arch.inc if { "${asm-flags}" == "" } { #set asm-flags "-Wa,-gstabs,-I${srcdir}/${subdir},-I${objdir}/${subdir}" @@ -278,3 +277,4 @@ gdb_test "print staticvar" ".* = 5" "look at static variable" gdb_test "disassem foostatic" ".*:.*End of assembler dump." \ "look at static function" +remote_exec build "rm -f ${subdir}/arch.inc"