gas/elf/section14.d: Change skip to xfail
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 31 Aug 2018 16:40:54 +0000 (09:40 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 31 Aug 2018 16:40:54 +0000 (09:40 -0700)
We will get an XPASS when h8300 port peculiarities are fixed, and will
fix the testsuite too.

* testsuite/gas/elf/section14.d: Change skip to xfail.
* testsuite/lib/gas-defs.exp (run_dump_test): Add xfail support.

gas/ChangeLog
gas/testsuite/gas/elf/section14.d
gas/testsuite/lib/gas-defs.exp

index 83249990b8344fdbefa23f8cbccbee8fe19e2ebf..1862390026b3efebdb19d9c25cb94d9c60dadfe5 100644 (file)
@@ -1,3 +1,8 @@
+2018-08-31  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * testsuite/gas/elf/section14.d: Change skip to xfail.
+       * testsuite/lib/gas-defs.exp (run_dump_test): Add xfail support.
+
 2018-08-31  Alan Modra  <amodra@gmail.com>
 
        * config/tc-ppc.h (TC_FORCE_RELOCATION_SUB_LOCAL): Allow ADDR16
index d4fafa2b1db4002f14fa3cef9f72647a86942cc1..7c730880aaa8551ca11722ff0e8bda569ac8ff65 100644 (file)
@@ -3,7 +3,7 @@
 #readelf: -S --wide
 # The h8300 port issues a warning message for new sections created
 # without atrributes.
-#skip: h8300-*
+#xfail: h8300-*
 
 There are [0-9]+ section headers, starting at offset 0x[0-9a-f]+:
 
index 064b8668a0bbab2f23be6efe0aa50d6380c81f1a..22984c70e1f70f2f323d931c3926ccbd2be9efd2 100644 (file)
@@ -408,6 +408,10 @@ proc run_dump_tests { testcases {extra_options {}} } {
 #       expected output on some targets.  (For example, see
 #       gas/arm/inst.d and gas/arm/wince_inst.d.)
 #
+#   xfail: GLOB|PROC ...
+#      Run this test and it is is expected to fail on a specified list
+#      of targets.
+#
 #   error: REGEX
 #      An error with message matching REGEX must be emitted for the test
 #      to pass.  The PROG, objdump, nm and objcopy options have no
@@ -475,6 +479,7 @@ proc run_dump_test { name {extra_options {}} } {
     set opts(not-target) {}
     set opts(skip) {}
     set opts(not-skip) {}
+    set opts(xfail) {}
     set opts(section-subst) {}
 
     foreach i $opt_array {
@@ -619,6 +624,11 @@ proc run_dump_test { name {extra_options {}} } {
        }
     }
 
+    # Setup xfailures.
+    foreach targ $opts(xfail) {
+       setup_xfail $targ
+    }
+
     if { $opts(source) == "" } {
        set sourcefile ${file}.s
     } else {
This page took 0.026962 seconds and 4 git commands to generate.