Skip to content

Commit a590387

Browse files
committed
[test][android] Reduce buffer size in attempt to fix the test on Android
It crashes with stack overflow now.
1 parent 1e3e2a1 commit a590387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/test/sanitizer_common/TestCases/Posix/fork_threaded.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#include "sanitizer_common/sanitizer_specific.h"
2626

27-
static const size_t kBufferSize = 1 << 20;
27+
static const size_t kBufferSize = 8192;
2828

2929
pthread_barrier_t bar;
3030

0 commit comments

Comments
 (0)