[llvm] r354646 - Add 'Windows' to the disabled platforms list for the Kaleidoscope tests.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 21 17:44:23 PST 2019


Author: lhames
Date: Thu Feb 21 17:44:23 2019
New Revision: 354646

URL: http://llvm.org/viewvc/llvm-project?rev=354646&view=rev
Log:
Add 'Windows' to the disabled platforms list for the Kaleidoscope tests.

Expands on the check from r354645.

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

Modified: llvm/trunk/test/Examples/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Examples/lit.local.cfg?rev=354646&r1=354645&r2=354646&view=diff
==============================================================================
--- llvm/trunk/test/Examples/lit.local.cfg (original)
+++ llvm/trunk/test/Examples/lit.local.cfg Thu Feb 21 17:44:23 2019
@@ -1,2 +1,2 @@
-if not config.build_examples and not sys.platform in ['win32']:
+if not config.build_examples and not sys.platform in ['win32', 'Windows']:
   config.unsupported = True
\ No newline at end of file




More information about the llvm-commits mailing list