diff options
author | Kostya Serebryany <kcc@google.com> | 2016-09-15 04:43:06 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-09-15 04:43:06 +0000 |
commit | 33a497abf466a13213f3ef4f260889bfae4524f0 (patch) | |
tree | 40f709dbdf0fd1cf2294d90feeea2ae1b5214230 /llvm | |
parent | 2f5a3dce0fbcab050060f6f0d262a1405945cde2 (diff) | |
download | llvm-33a497abf466a13213f3ef4f260889bfae4524f0.zip llvm-33a497abf466a13213f3ef4f260889bfae4524f0.tar.gz llvm-33a497abf466a13213f3ef4f260889bfae4524f0.tar.bz2 |
[libFuzzer] fix print_pcs test
llvm-svn: 281580
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test b/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test index 257c9f6..177f362 100644 --- a/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test +++ b/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test @@ -7,8 +7,8 @@ PCS:NEW_PC: {{0x[a-f0-9]+}} PCS:NEW PCS:BINGO -RUN: LLVMFuzzer-CounterTest-TracePC -use_counters=0 -print_pcs=1 -runs=10000 2>&1 | FileCheck %s --check-prefix=C_PCS -RUN: LLVMFuzzer-CounterTest-TracePC -use_counters=1 -print_pcs=1 -runs=10000 2>&1 | FileCheck %s --check-prefix=C_PCS +RUN: LLVMFuzzer-CounterTest-TracePC -use_counters=0 -print_pcs=1 -runs=1000 2>&1 | FileCheck %s --check-prefix=C_PCS +RUN: not LLVMFuzzer-CounterTest-TracePC -use_counters=1 -print_pcs=1 2>&1 | FileCheck %s --check-prefix=C_PCS C_PCS: NEW_PC: {{.*}} in LLVMFuzzerTestOneInput {{.*}}CounterTest.cpp:11 C_PCS: NEW_PC: {{.*}} in LLVMFuzzerTestOneInput {{.*}}CounterTest.cpp:12 |