Disable the new Orc lazy JIT tests on Windows, they do not pass
authorReid Kleckner <rnk@google.com>
Wed, 10 Feb 2016 18:46:42 +0000 (18:46 +0000)
committerReid Kleckner <rnk@google.com>
Wed, 10 Feb 2016 18:46:42 +0000 (18:46 +0000)
llvm-svn: 260405

llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg

index aa213e4..a18acd3 100644 (file)
@@ -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