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/minimize_two_crashes.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/minimize_two_crashes.test')
-rw-r--r-- | llvm/lib/Fuzzer/test/minimize_two_crashes.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Fuzzer/test/minimize_two_crashes.test b/llvm/lib/Fuzzer/test/minimize_two_crashes.test index 2a4103f1a38..e6ff9990ffd 100644 --- a/llvm/lib/Fuzzer/test/minimize_two_crashes.test +++ b/llvm/lib/Fuzzer/test/minimize_two_crashes.test @@ -1,10 +1,10 @@ # Test that the minimizer stops when it sees a differe bug. -RUN: %cpp_compiler %S/TwoDifferentBugsTest.cpp -o %t-LLVMFuzzer-TwoDifferentBugsTest +RUN: %cpp_compiler %S/TwoDifferentBugsTest.cpp -o %t-TwoDifferentBugsTest RUN: rm -rf %t && mkdir %t RUN: echo H12345678901234667888090 > %t/long_crash -RUN: env ASAN_OPTIONS=dedup_token_length=3 %t-LLVMFuzzer-TwoDifferentBugsTest -seed=1 -minimize_crash=1 %t/long_crash -exact_artifact_path=%t/result 2>&1 | FileCheck %s +RUN: env ASAN_OPTIONS=dedup_token_length=3 %t-TwoDifferentBugsTest -seed=1 -minimize_crash=1 %t/long_crash -exact_artifact_path=%t/result 2>&1 | FileCheck %s CHECK: DedupToken1: DEDUP_TOKEN: Bar CHECK: DedupToken2: DEDUP_TOKEN: Bar @@ -12,7 +12,7 @@ CHECK: DedupToken1: DEDUP_TOKEN: Bar CHECK: DedupToken2: DEDUP_TOKEN: Foo CHECK: CRASH_MIN: mismatch in dedup tokens -RUN: not %t-LLVMFuzzer-TwoDifferentBugsTest %t/result 2>&1 | FileCheck %s --check-prefix=VERIFY +RUN: not %t-TwoDifferentBugsTest %t/result 2>&1 | FileCheck %s --check-prefix=VERIFY VERIFY: ERROR: AddressSanitizer: VERIFY: in Bar |