Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / fuzzer-oom.test
blobca6ca731218705a9b2914f109eb44040efeb52eb
1 UNSUPPORTED: target=aarch64{{.*}}, ios
2 # Tests break on windows unless exe extension is used (because there are periods
3 # in expansion of %t, the string after the period is interpreted as the file
4 # extension, so each compilation will clobber the previous one's lib and exp
5 # files causing symbolization to break).
6 RUN: %cpp_compiler %S/OutOfMemoryTest.cpp -o %t-OutOfMemoryTest.exe
7 RUN: %cpp_compiler %S/OutOfMemorySingleLargeMallocTest.cpp -o %t-OutOfMemorySingleLargeMallocTest.exe
8 RUN: %cpp_compiler %S/AccumulateAllocationsTest.cpp -o %t-AccumulateAllocationsTest.exe
10 RUN: not %run %t-OutOfMemoryTest.exe -rss_limit_mb=300 2>&1 | FileCheck %s
12 CHECK: ERROR: libFuzzer: out-of-memory (used: {{.*}}; limit: 300Mb)
13 CHECK: Test unit written to ./oom-
14 SUMMARY: libFuzzer: out-of-memory
16 RUN: not %run %t-OutOfMemorySingleLargeMallocTest.exe -rss_limit_mb=300    2>&1 | FileCheck %s --check-prefix=SINGLE_LARGE_MALLOC
17 RUN: not %run %t-OutOfMemorySingleLargeMallocTest.exe -malloc_limit_mb=300 2>&1 | FileCheck %s --check-prefix=SINGLE_LARGE_MALLOC
18 RUN: not %run %t-OutOfMemorySingleLargeMallocTest.exe -rss_limit_mb=1000 -malloc_limit_mb=300 2>&1 | FileCheck %s --check-prefix=SINGLE_LARGE_MALLOC
20 We used to check for "out-of-memory (malloc(53{{.*}}))", but that would fail
21 sometimes, so now we accept any OOM message.
23 SINGLE_LARGE_MALLOC: libFuzzer: out-of-memory
24 SINGLE_LARGE_MALLOC: in LLVMFuzzerTestOneInput
26 # Check that -rss_limit_mb=0 means no limit.
27 RUN: %run %t-AccumulateAllocationsTest.exe -runs=1000 -rss_limit_mb=0