From 4418dda5ef7bc0e9baebc914ec0b6329ee58bbe0 Mon Sep 17 00:00:00 2001 From: Tilmann Scheller Date: Tue, 29 Apr 2014 15:02:40 +0000 Subject: [ARM64] Disable regression tests for the old JIT. Since the ARM64 backend doesn't implement support for the old JIT those tests are failing when the regression tests are run on an AArch64 host. llvm-svn: 207530 --- llvm/test/ExecutionEngine/lit.local.cfg | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'llvm/test/ExecutionEngine') diff --git a/llvm/test/ExecutionEngine/lit.local.cfg b/llvm/test/ExecutionEngine/lit.local.cfg index a198439335b..7f0b69e544a 100644 --- a/llvm/test/ExecutionEngine/lit.local.cfg +++ b/llvm/test/ExecutionEngine/lit.local.cfg @@ -1,9 +1,10 @@ -if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']: +if config.root.host_arch in ['PowerPC', 'AArch64', 'ARM64', 'SystemZ']: config.unsupported = True # CMake and autoconf diverge in naming or host_arch -if 'aarch64' in config.root.target_triple: - config.unsupported = True +if 'aarch64' in config.root.target_triple \ + or 'arm64' in config.root.target_triple: + config.unsupported = True if 'hexagon' in config.root.target_triple: config.unsupported = True -- cgit v1.2.3