diff options
author | Reid Kleckner <rnk@google.com> | 2016-02-10 18:46:42 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-02-10 18:46:42 +0000 |
commit | 952c84f10b4f804a625caf52be6d3fc00eb87b63 (patch) | |
tree | 5e13fde397f2e0dc47560a4908e54818fa777b6e | |
parent | b9f1dbe18d6b39fb97ad630ef309dc9f526ace3d (diff) |
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
-rw-r--r-- | test/ExecutionEngine/OrcLazy/lit.local.cfg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ExecutionEngine/OrcLazy/lit.local.cfg b/test/ExecutionEngine/OrcLazy/lit.local.cfg index aa213e4ca20..a18acd33200 100644 --- a/test/ExecutionEngine/OrcLazy/lit.local.cfg +++ b/test/ExecutionEngine/OrcLazy/lit.local.cfg @@ -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 |