[llvm] r354650 - Fix a think-o in the disable-kaleidoscope-tests-on-windows predicate of r354646.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 21 19:56:50 PST 2019


Author: lhames
Date: Thu Feb 21 19:56:50 2019
New Revision: 354650

URL: http://llvm.org/viewvc/llvm-project?rev=354650&view=rev
Log:
Fix a think-o in the disable-kaleidoscope-tests-on-windows predicate of r354646.

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=354650&r1=354649&r2=354650&view=diff
==============================================================================
--- llvm/trunk/test/Examples/lit.local.cfg (original)
+++ llvm/trunk/test/Examples/lit.local.cfg Thu Feb 21 19:56:50 2019
@@ -1,2 +1,2 @@
-if not config.build_examples and not sys.platform in ['win32', 'Windows']:
+if not config.build_examples or sys.platform in ['win32']:
   config.unsupported = True
\ No newline at end of file




More information about the llvm-commits mailing list