[llvm] r329393 - Followup for r329293: Temporarily disable the breaking test on windows.

Philip Pfaffe via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 6 06:39:16 PDT 2018


Author: pfaffe
Date: Fri Apr  6 06:39:16 2018
New Revision: 329393

URL: http://llvm.org/viewvc/llvm-project?rev=329393&view=rev
Log:
Followup for r329293: Temporarily disable the breaking test on windows.

This test is failing on windows bots. Disable it temporarily to unbreak
the windows bots.

Modified:
    llvm/trunk/unittests/Passes/CMakeLists.txt

Modified: llvm/trunk/unittests/Passes/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Passes/CMakeLists.txt?rev=329393&r1=329392&r2=329393&view=diff
==============================================================================
--- llvm/trunk/unittests/Passes/CMakeLists.txt (original)
+++ llvm/trunk/unittests/Passes/CMakeLists.txt Fri Apr  6 06:39:16 2018
@@ -1,6 +1,7 @@
 set(LLVM_LINK_COMPONENTS Support Passes Core)
 
-if (LLVM_ENABLE_PLUGINS)
+# FIXME Temorarily disable this on windows
+if (LLVM_ENABLE_PLUGINS AND NOT WIN32 AND NOT CYGWIN)
   add_llvm_unittest(PluginsTests PluginsTest.cpp)
   export_executable_symbols(PluginsTests)
 




More information about the llvm-commits mailing list