From: Richard Earnshaw Date: Fri, 23 May 2003 11:03:35 +0000 (+0000) Subject: * gas/i860/i860.exp: Don't call exit if the target isn't an i860. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=39c1d492f8db83eea519036616cb4d7cdb738a16;p=binutils-gdb.git * gas/i860/i860.exp: Don't call exit if the target isn't an i860. --- diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 2430357e627..b7541016cb8 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-05-23 Richard Earnshaw + + * gas/i860/i860.exp: Don't call exit if the target isn't an i860. + 2003-05-22 Thiemo Seufer * gas/mips/jal-newabi.s: New file, testcase for NewABI xgot jal macro. diff --git a/gas/testsuite/gas/i860/i860.exp b/gas/testsuite/gas/i860/i860.exp index 5865338023f..7dce93393a4 100644 --- a/gas/testsuite/gas/i860/i860.exp +++ b/gas/testsuite/gas/i860/i860.exp @@ -1,12 +1,9 @@ # i860 assembler testsuite. -if ![istarget i860-*-*] { - exit -} - -foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/*.s]] { - set file [file tail $file] - set file [file rootname $file] - run_dump_test "$file" -} - +if [istarget i860-*-*] { + foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/*.s]] { + set file [file tail $file] + set file [file rootname $file] + run_dump_test "$file" + } +} \ No newline at end of file