[lld] r214420 - XFAIL the ARM test when we don't have this target.

Simon Atanasyan simon at atanasyan.com
Thu Jul 31 12:02:10 PDT 2014


Author: atanasyan
Date: Thu Jul 31 14:02:10 2014
New Revision: 214420

URL: http://llvm.org/viewvc/llvm-project?rev=214420&view=rev
Log:
XFAIL the ARM test when we don't have this target.

Modified:
    lld/trunk/test/lit.cfg
    lld/trunk/test/mach-o/arm-interworking-movw.yaml

Modified: lld/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/lit.cfg?rev=214420&r1=214419&r2=214420&view=diff
==============================================================================
--- lld/trunk/test/lit.cfg (original)
+++ lld/trunk/test/lit.cfg Thu Jul 31 14:02:10 2014
@@ -143,6 +143,8 @@ if re.search(r'DEBUG', llvm_config_outpu
     config.available_features.add('debug')
 if re.search(r'ON', llvm_config_output_list[1]):
     config.available_features.add('asserts')
+if re.search(r'ARM', llvm_config_output_list[2]):
+    config.available_features.add('arm')
 if re.search(r'Mips', llvm_config_output_list[2]):
     config.available_features.add('mips')
 llvm_config_cmd.wait()

Modified: lld/trunk/test/mach-o/arm-interworking-movw.yaml
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/mach-o/arm-interworking-movw.yaml?rev=214420&r1=214419&r2=214420&view=diff
==============================================================================
--- lld/trunk/test/mach-o/arm-interworking-movw.yaml (original)
+++ lld/trunk/test/mach-o/arm-interworking-movw.yaml Thu Jul 31 14:02:10 2014
@@ -1,3 +1,4 @@
+# REQUIRES: arm
 # RUN: lld -flavor darwin -arch armv7 -r -print_atoms %s -o %t  | FileCheck %s \
 # RUN: && lld -flavor darwin -arch armv7 -dylib -print_atoms \
 # RUN:     -sectalign __TEXT __text 0x1000 %t -o %t2  | FileCheck %s \





More information about the llvm-commits mailing list