forked from OSchip/llvm-project
Disable the new Orc lazy JIT tests on Windows, they do not pass
llvm-svn: 260405
This commit is contained in:
parent
f6d32496c5
commit
e1d85a4d1f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue