diff options
author | Kostya Serebryany <kcc@google.com> | 2017-08-04 20:05:25 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2017-08-04 20:05:25 +0000 |
commit | 1d7a33b8ae6df56e9cb84f8198d617c17e55a0fc (patch) | |
tree | e6cf4dac2270efea5b9bae6911b1776b7681b789 /llvm/lib/Fuzzer/test/inline-8bit-counters.test | |
parent | 8d7755e7aa974f34982a2fd517759f66d8ca7ef9 (diff) | |
download | bcm5719-llvm-1d7a33b8ae6df56e9cb84f8198d617c17e55a0fc.tar.gz bcm5719-llvm-1d7a33b8ae6df56e9cb84f8198d617c17e55a0fc.zip |
[libFuzzer] remove the now redundant 'LLVMFuzzer-' prefix from libFuzzer tests
llvm-svn: 310110
Diffstat (limited to 'llvm/lib/Fuzzer/test/inline-8bit-counters.test')
-rw-r--r-- | llvm/lib/Fuzzer/test/inline-8bit-counters.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/test/inline-8bit-counters.test b/llvm/lib/Fuzzer/test/inline-8bit-counters.test index 098689a77d7..5723c70b132 100644 --- a/llvm/lib/Fuzzer/test/inline-8bit-counters.test +++ b/llvm/lib/Fuzzer/test/inline-8bit-counters.test @@ -1,5 +1,5 @@ REQUIRES: linux -RUN: %cpp_compiler %S/SimpleTest.cpp -fno-sanitize-coverage=trace-pc-guard -fsanitize-coverage=inline-8bit-counters -o %t-LLVMFuzzer-SimpleTest-Inline8bitCounters +RUN: %cpp_compiler %S/SimpleTest.cpp -fno-sanitize-coverage=trace-pc-guard -fsanitize-coverage=inline-8bit-counters -o %t-SimpleTest-Inline8bitCounters CHECK: INFO: Loaded 1 modules ({{.*}} inline 8-bit counters) CHECK: BINGO -RUN: not %t-LLVMFuzzer-SimpleTest-Inline8bitCounters -runs=1000000 -seed=1 2>&1 | FileCheck %s +RUN: not %t-SimpleTest-Inline8bitCounters -runs=1000000 -seed=1 2>&1 | FileCheck %s |