[llvm] r207530 - [ARM64] Disable regression tests for the old JIT.

Tilmann Scheller t.scheller at samsung.com
Tue Apr 29 08:02:41 PDT 2014


Author: tilmann
Date: Tue Apr 29 10:02:40 2014
New Revision: 207530

URL: http://llvm.org/viewvc/llvm-project?rev=207530&view=rev
Log:
[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.

Modified:
    llvm/trunk/test/ExecutionEngine/lit.local.cfg

Modified: llvm/trunk/test/ExecutionEngine/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/lit.local.cfg?rev=207530&r1=207529&r2=207530&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/lit.local.cfg Tue Apr 29 10:02:40 2014
@@ -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





More information about the llvm-commits mailing list