[llvm] r211111 - mark the old jit tests as unsupported for powerpc64 (for cmake)

Will Schmidt will_schmidt at vnet.ibm.com
Tue Jun 17 10:04:42 PDT 2014


Author: willschm
Date: Tue Jun 17 12:04:42 2014
New Revision: 211111

URL: http://llvm.org/viewvc/llvm-project?rev=211111&view=rev
Log:
mark the old jit tests as unsupported for powerpc64 (for cmake)

mark the old JIT tests as unsupported for powerpc64 - CMake style.
This follows the style used for hexagon/arm64/aarch64.
The equivalent tests still run under the supported MCJIT/*


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=211111&r1=211110&r2=211111&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/lit.local.cfg Tue Jun 17 12:04:42 2014
@@ -2,6 +2,9 @@ if config.root.host_arch in ['PowerPC',
     config.unsupported = True
 
 # CMake and autoconf diverge in naming or host_arch
+if 'powerpc64' 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





More information about the llvm-commits mailing list