Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / fork_corpus_groups.test
blob7027c767f719963fd238f855281a933cc9f3345e
1 # UNSUPPORTED: darwin, target={{.*freebsd.*}}, target=aarch64{{.*}}
2 BINGO: BINGO
3 RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
4 RUN: not %run %t-SimpleTest -fork=1 -fork_corpus_groups=1 2>&1 | FileCheck %s --check-prefix=BINGO
6 TIMEOUT: ERROR: libFuzzer: timeout
7 RUN: %cpp_compiler %S/TimeoutTest.cpp -o %t-TimeoutTest
8 RUN: not %run %t-TimeoutTest -fork=1 -fork_corpus_groups=1 -timeout=1 -ignore_timeouts=0 2>&1 | FileCheck %s --check-prefix=TIMEOUT
10 OOM: ERROR: libFuzzer: out-of-memory
11 RUN: %cpp_compiler %S/OutOfMemoryTest.cpp -o %t-OutOfMemoryTest
12 RUN: not %run %t-OutOfMemoryTest -fork=1 -fork_corpus_groups=1 -ignore_ooms=0  -rss_limit_mb=128 2>&1 | FileCheck %s --check-prefix=OOM
14 # access-violation is the error thrown on Windows. Address will be smaller on i386.
15 CRASH: {{SEGV|access-violation}} on unknown address 0x00000000
16 RUN: %cpp_compiler %S/ShallowOOMDeepCrash.cpp -o %t-ShallowOOMDeepCrash
17 # Run multiple times to deflake. Sometimes rss_limit_mb kill process before SEGV.
18 RUN: not %run %t-ShallowOOMDeepCrash -fork=1 -fork_corpus_groups=1 -rss_limit_mb=128 >%t-ShallowOOMDeepCrash.log 2>&1
19 RUN: not %run %t-ShallowOOMDeepCrash -fork=1 -fork_corpus_groups=1 -rss_limit_mb=128 >>%t-ShallowOOMDeepCrash.log 2>&1
20 RUN: not %run %t-ShallowOOMDeepCrash -fork=1 -fork_corpus_groups=1 -rss_limit_mb=128 >>%t-ShallowOOMDeepCrash.log 2>&1
21 RUN: FileCheck %s --check-prefix=CRASH --input-file=%t-ShallowOOMDeepCrash.log
23 MAX_TOTAL_TIME: INFO: fuzzed for {{.*}} seconds, wrapping up soon
24 MAX_TOTAL_TIME: INFO: exiting: {{.*}} time:
25 RUN: not %run %t-ShallowOOMDeepCrash -fork=1 -fork_corpus_groups=1 -rss_limit_mb=128 -ignore_crashes=1 -max_total_time=30 2>&1 | FileCheck %s  --check-prefix=MAX_TOTAL_TIME