From c6f683627d80ad6f45c23f54f2bc31555cd4f955 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208186 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/Disassembler/AArch64/lit.local.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1