[llvm] r191836 - Try harder to disable the LTO tests on windows.

Rafael Espindola rafael.espindola at gmail.com
Wed Oct 2 08:47:30 PDT 2013


Author: rafael
Date: Wed Oct  2 10:47:30 2013
New Revision: 191836

URL: http://llvm.org/viewvc/llvm-project?rev=191836&view=rev
Log:
Try harder to disable the LTO tests on windows.

Modified:
    llvm/trunk/test/LTO/lit.local.cfg

Modified: llvm/trunk/test/LTO/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/LTO/lit.local.cfg?rev=191836&r1=191835&r2=191836&view=diff
==============================================================================
--- llvm/trunk/test/LTO/lit.local.cfg (original)
+++ llvm/trunk/test/LTO/lit.local.cfg Wed Oct  2 10:47:30 2013
@@ -2,5 +2,5 @@ targets = set(config.root.targets_to_bui
 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





More information about the llvm-commits mailing list