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 | e1d85a4d1ff60c6cb94139a847fab07b0325026a (patch) | |
tree | 53adc97427237948ab37d4ef921efd384102e442 /llvm/test/ExecutionEngine | |
parent | f6d32496c5ac051d52c172656f753097571a5906 (diff) | |
download | bcm5719-llvm-e1d85a4d1ff60c6cb94139a847fab07b0325026a.tar.gz bcm5719-llvm-e1d85a4d1ff60c6cb94139a847fab07b0325026a.zip |
Disable the new Orc lazy JIT tests on Windows, they do not pass
llvm-svn: 260405
Diffstat (limited to 'llvm/test/ExecutionEngine')
-rw-r--r-- | llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg b/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg index aa213e4ca20..a18acd33200 100644 --- a/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg +++ b/llvm/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 |