diff options
author | Tilmann Scheller <t.scheller@samsung.com> | 2014-04-29 15:02:40 +0000 |
---|---|---|
committer | Tilmann Scheller <t.scheller@samsung.com> | 2014-04-29 15:02:40 +0000 |
commit | 4418dda5ef7bc0e9baebc914ec0b6329ee58bbe0 (patch) | |
tree | 904fbf92ce0fe2614741ae7a30e1c321e8b2a24d /llvm/test/ExecutionEngine | |
parent | 6857800b67db7ee0173a355db9fa7fd6cb75aa90 (diff) | |
download | bcm5719-llvm-4418dda5ef7bc0e9baebc914ec0b6329ee58bbe0.tar.gz bcm5719-llvm-4418dda5ef7bc0e9baebc914ec0b6329ee58bbe0.zip |
[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
Diffstat (limited to 'llvm/test/ExecutionEngine')
-rw-r--r-- | llvm/test/ExecutionEngine/lit.local.cfg | 7 |
1 files changed, 4 insertions, 3 deletions
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 |