From e26c8c2d8260447058379a9cdd11757d9e440573 Mon Sep 17 00:00:00 2001 From: Tilmann Scheller Date: Tue, 29 Apr 2014 15:02:40 +0000 Subject: [PATCH] [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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207530 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/ExecutionEngine/lit.local.cfg | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/ExecutionEngine/lit.local.cfg b/test/ExecutionEngine/lit.local.cfg index a198439335b..7f0b69e544a 100644 --- a/test/ExecutionEngine/lit.local.cfg +++ b/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 -- 2.34.1