diff options
author | Kostya Serebryany <kcc@google.com> | 2017-08-01 18:02:19 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2017-08-01 18:02:19 +0000 |
commit | 0fc5ee2db0f8a4ab91957a27eeba776e9179e0c0 (patch) | |
tree | 74d2f775f5ce69cefeac842abd8b33e3d4d023dd /llvm/lib/Fuzzer/test | |
parent | 486072d3d6e1885eb3458e26cb23c2e9d6f91571 (diff) | |
download | bcm5719-llvm-0fc5ee2db0f8a4ab91957a27eeba776e9179e0c0.tar.gz bcm5719-llvm-0fc5ee2db0f8a4ab91957a27eeba776e9179e0c0.zip |
[libFuzzer] temporarty remove pc-tables and disable test/fuzzer-printcovpcs.test until this can be fixed on Windows
llvm-svn: 309716
Diffstat (limited to 'llvm/lib/Fuzzer/test')
-rw-r--r-- | llvm/lib/Fuzzer/test/CMakeLists.txt | 2 | ||||
-rw-r--r-- | llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/test/CMakeLists.txt b/llvm/lib/Fuzzer/test/CMakeLists.txt index 1de3dff04d6..b46960822bc 100644 --- a/llvm/lib/Fuzzer/test/CMakeLists.txt +++ b/llvm/lib/Fuzzer/test/CMakeLists.txt @@ -15,7 +15,7 @@ foreach (VARNAME ${variables_to_filter}) endforeach() # Enable the coverage instrumentation (it is disabled for the Fuzzer lib). -set(CMAKE_CXX_FLAGS "${LIBFUZZER_FLAGS_BASE} -fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp,trace-div,trace-gep,pc-table -gline-tables-only") +set(CMAKE_CXX_FLAGS "${LIBFUZZER_FLAGS_BASE} -fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp,trace-div,trace-gep -gline-tables-only") if(MSVC) # For tests use the CRT specified for release build diff --git a/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test b/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test index 77a2e7d147c..2548fd7cfda 100644 --- a/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test +++ b/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test @@ -1,4 +1,5 @@ -RUN: not LLVMFuzzer-SimpleTest -print_pcs=1 -seed=1 2>&1 | FileCheck %s --check-prefix=PCS +RUN: echo +DISABLED: not LLVMFuzzer-SimpleTest -print_pcs=1 -seed=1 2>&1 | FileCheck %s --check-prefix=PCS PCS-NOT: NEW_PC PCS:INITED PCS:NEW_PC: {{0x[a-f0-9]+}} |