LD/testsuite: run_dump_test: Report UNSUPPORTED for excluded targets
authorMaciej W. Rozycki <macro@mips.com>
Mon, 9 Jul 2018 14:50:57 +0000 (15:50 +0100)
committerMaciej W. Rozycki <macro@mips.com>
Mon, 9 Jul 2018 14:50:57 +0000 (15:50 +0100)
Bring the LD implementation of `run_dump_test' in line with its binutils
and GAS counterparts and report the UNSUPPORTED status for tests the run
of which has been prevented by means of one or more of `target',
`alltargets' and `notarget' tags.  Define `skip', `anyskip' and `noskip'
tags, which do not report anything for tests that are not run.

The rationale behind this is that we want to have unsupported tests
reported to ensure that they have actually been attempted and have not
been accidentally suppressed.  Then tests which have target-specific
variants that cannot be expressed with a single .d file can make use of
the newly added tags to silently suppress the uninteresting variants.

ld/
* testsuite/lib/ld-lib.exp (run_dump_test): Call `unsupported'
if the target being tested has been excluded by means of one or
more of `target', `alltargets' and `notarget' tags.  Add support
for `skip', `anyskip' and `noskip' tags.

ld/ChangeLog
ld/testsuite/lib/ld-lib.exp

index d7d094c8b2367cf8b640edf1340c20fa3e6da768..c146f5cf9371bd0ce977c7620243f1eefbf3532c 100644 (file)
@@ -1,3 +1,10 @@
+2018-07-09  Maciej W. Rozycki  <macro@mips.com>
+
+       * testsuite/lib/ld-lib.exp (run_dump_test): Call `unsupported'
+       if the target being tested has been excluded by means of one or
+       more of `target', `alltargets' and `notarget' tags.  Add support
+       for `skip', `anyskip' and `noskip' tags.
+
 2018-07-09  Maciej W. Rozycki  <macro@mips.com>
 
        * testsuite/lib/ld-lib.exp (run_dump_test): Move the setting of
index 9e63e30ddcc3c89bb34c7af315737c4d4d928609..1c313c875178317ae45b7ec3b2f5dc939ef4d4ca 100644 (file)
@@ -542,19 +542,29 @@ proc ld_link_defsyms {} {
 #      as a TCL procedure if surrounded by square brackets, or passed
 #      to "istarget" if not.
 #      This may occur more than once; the target being tested must match
-#      at least one.
+#      at least one.  Otherwise the test will be marked unsupported.
 #
 #   alltargets: TARGET
 #      Only run the test for TARGET.
 #      The syntax for TARGET is as with 'target'.
 #      This may occur more than once; the target being tested must match
-#      all of them.
+#      all of them.  Otherwise the test will be marked unsupported.
 #
 #   notarget: TARGET
 #      Do not run the test for TARGET.
 #      The syntax for TARGET is as with 'target'.
 #      This may occur more than once; the target being tested must not
-#      match any of them.
+#      match any of them.  Otherwise the test will be marked unsupported.
+#
+#   skip: TARGET
+#   anyskip: TARGET
+#   noskip: TARGET
+#      These are exactly the same as "notarget", "alltargets" and
+#      "target" respectively, except that they do nothing at all if the
+#      check fails.  They should only be used in groups, to construct a
+#      single test which is run on all targets but with variant options
+#      or expected output on some targets.  (For example, see
+#      gas/arm/inst.d and gas/arm/wince_inst.d.)
 #
 #   error: REGEX
 #      An error with message matching REGEX must be emitted for the test
@@ -632,6 +642,9 @@ proc run_dump_test { name {extra_options {}} } {
     set opts(target) {}
     set opts(alltargets) {}
     set opts(notarget) {}
+    set opts(skip) {}
+    set opts(anyskip) {}
+    set opts(noskip) {}
     set opts(objdump) {}
     set opts(nm) {}
     set opts(objcopy) {}
@@ -662,6 +675,9 @@ proc run_dump_test { name {extra_options {}} } {
            target {}
            alltargets {}
            notarget {}
+           skip {}
+           anyskip {}
+           noskip {}
            warning {}
            error {}
            source {
@@ -753,6 +769,28 @@ proc run_dump_test { name {extra_options {}} } {
     }
 
     # Decide early whether we should run the test for this target.
+    if { [llength $opts(noskip)] > 0 } {
+       set targmatch 0
+       foreach targ $opts(noskip) {
+           if [match_target $targ] {
+               set targmatch 1
+               break
+           }
+       }
+       if { $targmatch == 0 } {
+           return
+       }
+    }
+    foreach targ $opts(anyskip) {
+       if ![match_target $targ] {
+           return
+       }
+    }
+    foreach targ $opts(skip) {
+       if [match_target $targ] {
+           return
+       }
+    }
     if { [llength $opts(target)] > 0 } {
        set targmatch 0
        foreach targ $opts(target) {
@@ -762,16 +800,19 @@ proc run_dump_test { name {extra_options {}} } {
            }
        }
        if { $targmatch == 0 } {
+           unsupported $testname
            return
        }
     }
     foreach targ $opts(alltargets) {
        if ![match_target $targ] {
+           unsupported $testname
            return
        }
     }
     foreach targ $opts(notarget) {
        if [match_target $targ] {
+           unsupported $testname
            return
        }
     }
This page took 0.030655 seconds and 4 git commands to generate.