Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / fuzzer-leak.test
blobdd22fdec8677e5cb9a5e080287d52157694b9c42
1 REQUIRES: lsan
3 RUN: %cpp_compiler %S/LeakTest.cpp -o %t-LeakTest
4 RUN: %cpp_compiler %S/ThreadedLeakTest.cpp -o %t-ThreadedLeakTest
5 RUN: %cpp_compiler %S/LeakTimeoutTest.cpp -o %t-LeakTimeoutTest
7 RUN: rm -rf %t-corpus && mkdir -p %t-corpus
8 RUN: not %run %t-LeakTest -runs=100000 -detect_leaks=1 %t-corpus 2>&1 | FileCheck %s --check-prefix=LEAK_DURING
9 LEAK_DURING: ERROR: LeakSanitizer: detected memory leaks
10 LEAK_DURING: Direct leak of {{.*}} byte(s) in {{.*}} object(s) allocated from:
11 LEAK_DURING: INFO: to ignore leaks on libFuzzer side use -detect_leaks=0
12 LEAK_DURING: Test unit written to ./leak-
13 LEAK_DURING-NOT: DONE
14 LEAK_DURING-NOT: Done
16 // Verify leaking input was not added to corpus
17 RUN: %run %t-LeakTest -runs=0 %t-corpus
19 RUN: not %run %t-LeakTest -runs=0 -detect_leaks=1 %S 2>&1 | FileCheck %s --check-prefix=LEAK_IN_CORPUS
20 LEAK_IN_CORPUS: ERROR: LeakSanitizer: detected memory leaks
21 LEAK_IN_CORPUS: INFO: a leak has been found in the initial corpus.
23 RUN: not %run %t-LeakTest -runs=100000000 %S/hi.txt 2>&1 | FileCheck %s --check-prefix=MULTI_RUN_LEAK
24 MULTI_RUN_LEAK-NOT: pulse
25 MULTI_RUN_LEAK: LeakSanitizer: detected memory leaks
27 RUN: not %run %t-LeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=LEAK_AFTER
28 RUN: not %run %t-LeakTest -runs=100000                 2>&1 | FileCheck %s --check-prefix=LEAK_DURING
29 RUN: not %run %t-ThreadedLeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=LEAK_AFTER
30 RUN: not %run %t-ThreadedLeakTest -runs=100000                 2>&1 | FileCheck %s --check-prefix=LEAK_DURING
31 LEAK_AFTER: Done 100000 runs in
32 LEAK_AFTER: ERROR: LeakSanitizer: detected memory leaks
34 RUN: not %run %t-LeakTest -runs=100000 -max_len=1 2>&1 | FileCheck %s --check-prefix=MAX_LEN_1
35 MAX_LEN_1: Test unit written to ./leak-7cf184f4c67ad58283ecb19349720b0cae756829
37 RUN: not %run %t-LeakTimeoutTest -timeout=1 2>&1 | FileCheck %s --check-prefix=LEAK_TIMEOUT
38 LEAK_TIMEOUT: ERROR: libFuzzer: timeout after
39 LEAK_TIMEOUT-NOT: LeakSanitizer
42 RUN: %run %t-LeakTest -error_exitcode=0