From: Kostya Serebryany Date: Wed, 14 Jun 2017 00:34:42 +0000 (+0000) Subject: [libFuzzer] really restrict the new test to Linux (fails on Mac/Windows currently) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1e76735cd0f29b3a0c94feaefbdda731ba70839;p=llvm [libFuzzer] really restrict the new test to Linux (fails on Mac/Windows currently) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305346 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Fuzzer/test/CMakeLists.txt b/lib/Fuzzer/test/CMakeLists.txt index da3f4989100..bb9406297da 100644 --- a/lib/Fuzzer/test/CMakeLists.txt +++ b/lib/Fuzzer/test/CMakeLists.txt @@ -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)