[llvm] r196274 - Fix lit config for disabled MCJIT tests on ARM

Renato Golin renato.golin at linaro.org
Tue Dec 3 05:48:28 PST 2013


Author: rengolin
Date: Tue Dec  3 07:48:28 2013
New Revision: 196274

URL: http://llvm.org/viewvc/llvm-project?rev=196274&view=rev
Log:
Fix lit config for disabled MCJIT tests on ARM

Separating permanent from temporary targets, added the bug that
will fix the temporary (PR18057).

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

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg?rev=196274&r1=196273&r2=196274&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/remote/lit.local.cfg Tue Dec  3 07:48:28 2013
@@ -1,2 +1,8 @@
-if 'arm' in config.root.target_triple:
+if 'armv4' in config.root.target_triple or \
+   'armv5' in config.root.target_triple:
+    config.unsupported = True
+
+# This is temporary, until Remote MCJIT works on ARM
+# See http://llvm.org/bugs/show_bug.cgi?id=18057
+if 'armv7' in config.root.target_triple:
     config.unsupported = True





More information about the llvm-commits mailing list