* gas/i860/i860.exp: Don't call exit if the target isn't an i860.

This commit is contained in:
Richard Earnshaw 2003-05-23 11:03:35 +00:00
parent 0b4ffb6c40
commit 39c1d492f8
2 changed files with 11 additions and 10 deletions

View file

@ -1,3 +1,7 @@
2003-05-23 Richard Earnshaw <rearnsha@arm.com>
* gas/i860/i860.exp: Don't call exit if the target isn't an i860.
2003-05-22 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
* gas/mips/jal-newabi.s: New file, testcase for NewABI xgot jal macro.

View file

@ -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"
}
}