diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-02 15:47:30 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-02 15:47:30 +0000 |
commit | 656d2f8e07bda64c49b381a595386a8c5a386744 (patch) | |
tree | b40f5a5ff3a7d4b502c66117b440b86006624522 /test/LTO | |
parent | dd5d86d992eb129ecd0bb013d2db2d6a0e8d2605 (diff) | |
download | external_llvm-656d2f8e07bda64c49b381a595386a8c5a386744.zip external_llvm-656d2f8e07bda64c49b381a595386a8c5a386744.tar.gz external_llvm-656d2f8e07bda64c49b381a595386a8c5a386744.tar.bz2 |
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
Diffstat (limited to 'test/LTO')
-rw-r--r-- | test/LTO/lit.local.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LTO/lit.local.cfg b/test/LTO/lit.local.cfg index 7a70736..f61943a 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 |