From e1d85a4d1ff60c6cb94139a847fab07b0325026a Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Wed, 10 Feb 2016 18:46:42 +0000 Subject: [PATCH] Disable the new Orc lazy JIT tests on Windows, they do not pass llvm-svn: 260405 --- llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg b/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg index aa213e4..a18acd3 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 -- 2.7.4