[ARM64] Disable regression tests for the old JIT.
authorTilmann Scheller <t.scheller@samsung.com>
Tue, 29 Apr 2014 15:02:40 +0000 (15:02 +0000)
committerTilmann Scheller <t.scheller@samsung.com>
Tue, 29 Apr 2014 15:02:40 +0000 (15:02 +0000)
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

index a198439335b47553f6d0f99f5414f538fccab6df..7f0b69e544a1a0ed986c8336ee7fb45e0dc7e6d5 100644 (file)
@@ -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