From: Rafael Espindola Date: Wed, 2 Oct 2013 15:47:30 +0000 (+0000) Subject: Try harder to disable the LTO tests on windows. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=656d2f8e07bda64c49b381a595386a8c5a386744;p=oota-llvm.git Try harder to disable the LTO tests on windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191836 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/LTO/lit.local.cfg b/test/LTO/lit.local.cfg index 7a70736aeac..f61943a77af 100644 --- a/test/LTO/lit.local.cfg +++ b/test/LTO/lit.local.cfg @@ -2,5 +2,5 @@ targets = set(config.root.targets_to_build.split()) if not 'X86' in targets: config.unsupported = True -if config.root.host_os in ['Cygwin']: +if config.root.host_os in ['Cygwin', 'MingW', 'Windows']: config.unsupported = True