diff options
Diffstat (limited to 'test/asan/TestCases/stack-overflow.cc')
-rw-r--r-- | test/asan/TestCases/stack-overflow.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/asan/TestCases/stack-overflow.cc b/test/asan/TestCases/stack-overflow.cc index 7542d56b6db8f..d4bb74730f120 100644 --- a/test/asan/TestCases/stack-overflow.cc +++ b/test/asan/TestCases/stack-overflow.cc @@ -92,7 +92,7 @@ void LimitStackAndReexec(int argc, char **argv) { int res = getrlimit(RLIMIT_STACK, &rlim); assert(res == 0); if (rlim.rlim_cur == RLIM_INFINITY) { - rlim.rlim_cur = 128 * 1024; + rlim.rlim_cur = 256 * 1024; res = setrlimit(RLIMIT_STACK, &rlim); assert(res == 0); |