From 2d7cacd86bf6c946c222fd876ecafea6fb85bc78 Mon Sep 17 00:00:00 2001 From: Tim Northover Date: Wed, 7 May 2014 10:42:06 +0000 Subject: [PATCH] AArch64/ARM64: disable test directory if ARM64 not present llvm-svn: 208186 --- llvm/test/MC/Disassembler/AArch64/lit.local.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/MC/Disassembler/AArch64/lit.local.cfg b/llvm/test/MC/Disassembler/AArch64/lit.local.cfg index 9a66a00189ea..c6f83453ac20 100644 --- a/llvm/test/MC/Disassembler/AArch64/lit.local.cfg +++ b/llvm/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