[llvm] r202126 - Ignore old JIT tests in AARch64 - CMake style

Renato Golin renato.golin at linaro.org
Tue Feb 25 01:31:00 PST 2014


Author: rengolin
Date: Tue Feb 25 03:31:00 2014
New Revision: 202126

URL: http://llvm.org/viewvc/llvm-project?rev=202126&view=rev
Log:
Ignore old JIT tests in AARch64 - CMake style

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=202126&r1=202125&r2=202126&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/lit.local.cfg Tue Feb 25 03:31:00 2014
@@ -1,6 +1,10 @@
 if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
     config.unsupported = True
 
+# CMake and autoconf diverge in naming or host_arch
+if 'aarch64' 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