* gas/i860/i860.exp: Don't call exit if the target isn't an i860.
authorRichard Earnshaw <richard.earnshaw@arm.com>
Fri, 23 May 2003 11:03:35 +0000 (11:03 +0000)
committerRichard Earnshaw <richard.earnshaw@arm.com>
Fri, 23 May 2003 11:03:35 +0000 (11:03 +0000)
gas/testsuite/ChangeLog
gas/testsuite/gas/i860/i860.exp

index 2430357..b754101 100644 (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.
index 5865338..7dce933 100644 (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"
+    }
+}
\ No newline at end of file