[llvm] r208186 - AArch64/ARM64: disable test directory if ARM64 not present

Tim Northover tnorthover at apple.com
Wed May 7 03:42:06 PDT 2014


Author: tnorthover
Date: Wed May  7 05:42:06 2014
New Revision: 208186

URL: http://llvm.org/viewvc/llvm-project?rev=208186&view=rev
Log:
AArch64/ARM64: disable test directory if ARM64 not present

Modified:
    llvm/trunk/test/MC/Disassembler/AArch64/lit.local.cfg

Modified: llvm/trunk/test/MC/Disassembler/AArch64/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/Disassembler/AArch64/lit.local.cfg?rev=208186&r1=208185&r2=208186&view=diff
==============================================================================
--- llvm/trunk/test/MC/Disassembler/AArch64/lit.local.cfg (original)
+++ llvm/trunk/test/MC/Disassembler/AArch64/lit.local.cfg Wed May  7 05:42:06 2014
@@ -1,4 +1,4 @@
 targets = set(config.root.targets_to_build.split())
-if not 'AArch64' in targets:
+if 'AArch64' not in targets or 'ARM64' not in targets:
     config.unsupported = True
 





More information about the llvm-commits mailing list