MIPS/binutils/testsuite: Bail out right away if !ELF
authorMaciej W. Rozycki <macro@imgtec.com>
Fri, 19 May 2017 06:53:21 +0000 (07:53 +0100)
committerMaciej W. Rozycki <macro@imgtec.com>
Fri, 19 May 2017 06:58:59 +0000 (07:58 +0100)
We have but ELF binutils tests in the MIPS subset, and non-ELF MIPS/GAS
ports are gone, making a future addition of any non-ELF tests unlikely.
Bail out right away then if non-ELF, consuming one level of indentation
across the actual tests run.

binutils/
* testsuite/binutils-all/mips/mips.exp: Bail out right away if
non-ELF.

binutils/ChangeLog
binutils/testsuite/binutils-all/mips/mips.exp

index 44467f1..4978586 100644 (file)
@@ -1,3 +1,8 @@
+2017-05-19  Maciej W. Rozycki  <macro@imgtec.com>
+
+       * testsuite/binutils-all/mips/mips.exp: Bail out right away if
+       non-ELF.
+
 2017-05-18  Alan Modra  <amodra@gmail.com>
 
        * strings.c: Don't compare boolean values against TRUE or FALSE.
index 496d9cc..7949445 100644 (file)
@@ -15,7 +15,7 @@
 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
 # MA 02110-1301, USA.
 
-if ![istarget mips*-*-*] {
+if {![istarget mips*-*-*] || ![is_elf_format]} {
     return
 }
 
@@ -27,19 +27,17 @@ if [is_remote host] {
     set copyfile tmpdir/copy
 }
 
-if [is_elf_format] {
-    run_dump_test "mips-ase-1"
-    run_dump_test "mips-ase-2"
-    run_dump_test "mips-ase-3"
-    run_dump_test "mixed-mips16"
-    run_dump_test "mixed-micromips"
-    run_dump_test "mixed-mips16-micromips"
-    run_dump_test "mips16-undecoded"
-    run_dump_test "mips16e2-undecoded"
-    run_dump_test "mips16-pcrel"
-    run_dump_test "mips16-extend-noinsn"
-    run_dump_test "mips16-extend-insn"
-    run_dump_test "mips16e2-extend-insn"
-    run_dump_test "mips16-alias"
-    run_dump_test "mips16-noalias"
-}
+run_dump_test "mips-ase-1"
+run_dump_test "mips-ase-2"
+run_dump_test "mips-ase-3"
+run_dump_test "mixed-mips16"
+run_dump_test "mixed-micromips"
+run_dump_test "mixed-mips16-micromips"
+run_dump_test "mips16-undecoded"
+run_dump_test "mips16e2-undecoded"
+run_dump_test "mips16-pcrel"
+run_dump_test "mips16-extend-noinsn"
+run_dump_test "mips16-extend-insn"
+run_dump_test "mips16e2-extend-insn"
+run_dump_test "mips16-alias"
+run_dump_test "mips16-noalias"