summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine
diff options
context:
space:
mode:
authorTilmann Scheller <t.scheller@samsung.com>2014-04-29 15:02:40 +0000
committerTilmann Scheller <t.scheller@samsung.com>2014-04-29 15:02:40 +0000
commite26c8c2d8260447058379a9cdd11757d9e440573 (patch)
tree22047d62cd500eaa958ce7715358bb02e1b4a453 /test/ExecutionEngine
parent4551e311c69c5895eb8f836b1c7da5c8e329a2bb (diff)
downloadllvm-e26c8c2d8260447058379a9cdd11757d9e440573.tar.gz
llvm-e26c8c2d8260447058379a9cdd11757d9e440573.tar.bz2
llvm-e26c8c2d8260447058379a9cdd11757d9e440573.tar.xz
[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
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r--test/ExecutionEngine/lit.local.cfg7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/ExecutionEngine/lit.local.cfg b/test/ExecutionEngine/lit.local.cfg
index a198439335..7f0b69e544 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