[compiler-rt] c6775e2 - [compiler-rt] [libFuzzer] Fix merge-posix test (again) (#168639)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 19 08:32:25 PST 2025
Author: Andrew Haberlandt
Date: 2025-11-19T08:32:21-08:00
New Revision: c6775e2eb6b94fd60453d207902cf961195bf780
URL: https://github.com/llvm/llvm-project/commit/c6775e2eb6b94fd60453d207902cf961195bf780
DIFF: https://github.com/llvm/llvm-project/commit/c6775e2eb6b94fd60453d207902cf961195bf780.diff
LOG: [compiler-rt] [libFuzzer] Fix merge-posix test (again) (#168639)
Added:
Modified:
compiler-rt/test/fuzzer/merge-posix.test
Removed:
################################################################################
diff --git a/compiler-rt/test/fuzzer/merge-posix.test b/compiler-rt/test/fuzzer/merge-posix.test
index 5e342142216f8..6e37651e6fd29 100644
--- a/compiler-rt/test/fuzzer/merge-posix.test
+++ b/compiler-rt/test/fuzzer/merge-posix.test
@@ -14,10 +14,10 @@ RUN: echo ....U. > %tmp/T2/2
RUN: echo ...Z.. > %tmp/T2/3
RUN: echo ...Z.. > %tmp/T2/4
RUN: echo ....E. > %tmp/T2/5
-RUN: %python -c "print('.....R' + 'X' * 1024, end='')" > %tmp/T2/6
+RUN: %python -c "print('.....R' + 'X' * 4096, end='')" > %tmp/T2/6
# Check that we can report an error if file size exceeded
-RUN: (ulimit -f 1; not %run %t-FullCoverageSetTest -merge=1 %tmp/T1 %tmp/T2 2>&1 | FileCheck %s --check-prefix=SIGXFSZ)
+RUN: (ulimit -f 4; not %run %t-FullCoverageSetTest -merge=1 %tmp/T1 %tmp/T2 2>&1 | FileCheck %s --check-prefix=SIGXFSZ)
SIGXFSZ: ERROR: libFuzzer: file size exceeded
# Check that we honor TMPDIR
More information about the llvm-commits
mailing list