Disable the new Orc lazy JIT tests on Windows, they do not pass

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260405 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Kleckner 2016-02-10 18:46:42 +00:00
parent b9f1dbe18d
commit 952c84f10b

View 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