[llvm] r210412 - Re-enable ARM ELF tests

Alp Toker alp at nuanti.com
Sat Jun 7 19:46:03 PDT 2014


Author: alp
Date: Sat Jun  7 21:46:02 2014
New Revision: 210412

URL: http://llvm.org/viewvc/llvm-project?rev=210412&view=rev
Log:
Re-enable ARM ELF tests

r210408 inadvertently disabled them when X86 is not selected.

Modified:
    llvm/trunk/test/MC/ELF/ARM/lit.local.cfg

Modified: llvm/trunk/test/MC/ELF/ARM/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ELF/ARM/lit.local.cfg?rev=210412&r1=210411&r2=210412&view=diff
==============================================================================
--- llvm/trunk/test/MC/ELF/ARM/lit.local.cfg (original)
+++ llvm/trunk/test/MC/ELF/ARM/lit.local.cfg Sat Jun  7 21:46:02 2014
@@ -1,4 +1,4 @@
 targets = set(config.root.targets_to_build.split())
-if not 'ARM' in targets:
-  config.unsupported = True
-
+# We have to reset config.unsupported here because the parent directory is
+# predicated on 'X86'.
+config.unsupported = not 'ARM' in targets





More information about the llvm-commits mailing list