From de9b30db3d8ab2f4b0f090d9fd42df446d3816bd Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Fri, 22 Feb 2019 03:56:50 +0000 Subject: [PATCH] Fix a think-o in the disable-kaleidoscope-tests-on-windows predicate of r354646. llvm-svn: 354650 --- llvm/test/Examples/lit.local.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/Examples/lit.local.cfg b/llvm/test/Examples/lit.local.cfg index 9f0b1ca30ddf..72f5c0fff056 100644 --- a/llvm/test/Examples/lit.local.cfg +++ b/llvm/test/Examples/lit.local.cfg @@ -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