Skip to content

Commit c6775e2

Browse files
authored
[compiler-rt] [libFuzzer] Fix merge-posix test (again) (#168639)
1 parent c9e22d3 commit c6775e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-rt/test/fuzzer/merge-posix.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ RUN: echo ....U. > %tmp/T2/2
1414
RUN: echo ...Z.. > %tmp/T2/3
1515
RUN: echo ...Z.. > %tmp/T2/4
1616
RUN: echo ....E. > %tmp/T2/5
17-
RUN: %python -c "print('.....R' + 'X' * 1024, end='')" > %tmp/T2/6
17+
RUN: %python -c "print('.....R' + 'X' * 4096, end='')" > %tmp/T2/6
1818

1919
# Check that we can report an error if file size exceeded
20-
RUN: (ulimit -f 1; not %run %t-FullCoverageSetTest -merge=1 %tmp/T1 %tmp/T2 2>&1 | FileCheck %s --check-prefix=SIGXFSZ)
20+
RUN: (ulimit -f 4; not %run %t-FullCoverageSetTest -merge=1 %tmp/T1 %tmp/T2 2>&1 | FileCheck %s --check-prefix=SIGXFSZ)
2121
SIGXFSZ: ERROR: libFuzzer: file size exceeded
2222

2323
# Check that we honor TMPDIR

0 commit comments

Comments
 (0)