[llvm] r354645 - Disable Kaleidoscope tests on Win32 -- looks like they're still failing there.

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


Author: lhames
Date: Thu Feb 21 17:19:53 2019
New Revision: 354645

URL: http://llvm.org/viewvc/llvm-project?rev=354645&view=rev
Log:
Disable Kaleidoscope tests on Win32 -- looks like they're still failing there.

The Kaleidoscope tests were re-enabled in r354630, but are still failing on
Windows. This patch disables them on that platform until the failure can be
investigated.

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




More information about the llvm-commits mailing list