From: Tim Northover Date: Wed, 7 May 2014 10:42:06 +0000 (+0000) Subject: AArch64/ARM64: disable test directory if ARM64 not present X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c6f683627d80ad6f45c23f54f2bc31555cd4f955;p=oota-llvm.git AArch64/ARM64: disable test directory if ARM64 not present git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208186 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/MC/Disassembler/AArch64/lit.local.cfg b/test/MC/Disassembler/AArch64/lit.local.cfg index 9a66a00189e..c6f83453ac2 100644 --- a/test/MC/Disassembler/AArch64/lit.local.cfg +++ b/test/MC/Disassembler/AArch64/lit.local.cfg @@ -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