OSDN Git Service

Fix a think-o in the disable-kaleidoscope-tests-on-windows predicate of r354646.
authorLang Hames <lhames@gmail.com>
Fri, 22 Feb 2019 03:56:50 +0000 (03:56 +0000)
committerLang Hames <lhames@gmail.com>
Fri, 22 Feb 2019 03:56:50 +0000 (03:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@354650 91177308-0d34-0410-b5e6-96231b3b80d8

test/Examples/lit.local.cfg

index 9f0b1ca..72f5c0f 100644 (file)
@@ -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