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-Tag: submit/tizen/20170717.082441~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f83bb41ad4d4411e7bbafc65308faf423c4dd5e;p=tools%2FlibFuzzer.git [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 Change-Id: I01cd187c1304e273e6af8c980ef073ae5661ec83 --- diff --git a/lib/Fuzzer/test/CMakeLists.txt b/lib/Fuzzer/test/CMakeLists.txt index da3f498..bb94062 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)