[llvm] r305346 - [libFuzzer] really restrict the new test to Linux (fails on Mac/Windows currently)

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 13 17:34:42 PDT 2017


Author: kcc
Date: Tue Jun 13 19:34:42 2017
New Revision: 305346

URL: http://llvm.org/viewvc/llvm-project?rev=305346&view=rev
Log:
[libFuzzer] really restrict the new test to Linux (fails on Mac/Windows currently)

Modified:
    llvm/trunk/lib/Fuzzer/test/CMakeLists.txt

Modified: llvm/trunk/lib/Fuzzer/test/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/test/CMakeLists.txt?rev=305346&r1=305345&r2=305346&view=diff
==============================================================================
--- llvm/trunk/lib/Fuzzer/test/CMakeLists.txt (original)
+++ llvm/trunk/lib/Fuzzer/test/CMakeLists.txt Tue Jun 13 19:34:42 2017
@@ -205,8 +205,10 @@ include_directories(..)
 # add_subdirectory(uninstrumented)
 add_subdirectory(no-coverage)
 add_subdirectory(trace-pc)
-add_subdirectory(inline-8bit-counters)
 add_subdirectory(ubsan)
+if (NOT APPLE AND NOT MSVC)
+  add_subdirectory(inline-8bit-counters)
+endif()
 
 add_library(LLVMFuzzer-DSO1 SHARED DSO1.cpp)
 add_library(LLVMFuzzer-DSO2 SHARED DSO2.cpp)




More information about the llvm-commits mailing list