[llvm] r260405 - Disable the new Orc lazy JIT tests on Windows, they do not pass

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 10 10:46:42 PST 2016


Author: rnk
Date: Wed Feb 10 12:46:42 2016
New Revision: 260405

URL: http://llvm.org/viewvc/llvm-project?rev=260405&view=rev
Log:
Disable the new Orc lazy JIT tests on Windows, they do not pass

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

Modified: llvm/trunk/test/ExecutionEngine/OrcLazy/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/OrcLazy/lit.local.cfg?rev=260405&r1=260404&r2=260405&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/OrcLazy/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/OrcLazy/lit.local.cfg Wed Feb 10 12:46:42 2016
@@ -1,2 +1,8 @@
+import sys
+
 if config.root.host_arch not in ['i386', 'x86', 'x86_64', 'AMD64']:
     config.unsupported = True
+
+# FIXME: These tests don't pass with the COFF rtld.
+if sys.platform == 'win32':
+    config.unsupported = True




More information about the llvm-commits mailing list