diff options
author | Kostya Serebryany <kcc@google.com> | 2017-06-14 00:34:42 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2017-06-14 00:34:42 +0000 |
commit | 546a286cef005b6694664524e61551daedf48e1d (patch) | |
tree | 388a26347cd1a6b4054157d0a09b714304706261 /llvm/lib/Fuzzer/test | |
parent | 919d8dd8d7fb8b510e68e329b82e3b4d34cd1c65 (diff) | |
download | bcm5719-llvm-546a286cef005b6694664524e61551daedf48e1d.tar.gz bcm5719-llvm-546a286cef005b6694664524e61551daedf48e1d.zip |
[libFuzzer] really restrict the new test to Linux (fails on Mac/Windows currently)
llvm-svn: 305346
Diffstat (limited to 'llvm/lib/Fuzzer/test')
-rw-r--r-- | llvm/lib/Fuzzer/test/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/CMakeLists.txt b/llvm/lib/Fuzzer/test/CMakeLists.txt index da3f4989100..bb9406297da 100644 --- a/llvm/lib/Fuzzer/test/CMakeLists.txt +++ b/llvm/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) |