aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorArne Juul <arnej@yahooinc.com>2023-01-26 08:46:51 +0000
committerArne Juul <arnej@yahooinc.com>2023-01-26 08:46:51 +0000
commit2b1d0f5b8297364b3a0ef27094c5b1ac611041f1 (patch)
treef8044a01b607e04ba9c6b347d86ce8f103617d74 /vespalib
parent5d90704e5baf8009f73b2f4d9f4ac842ee266370 (diff)
make sure the limits are high enough in the "fine" case
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/tests/exception_classes/silenceuncaught_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/tests/exception_classes/silenceuncaught_test.cpp b/vespalib/src/tests/exception_classes/silenceuncaught_test.cpp
index a7102ec9868..1d666524502 100644
--- a/vespalib/src/tests/exception_classes/silenceuncaught_test.cpp
+++ b/vespalib/src/tests/exception_classes/silenceuncaught_test.cpp
@@ -33,7 +33,7 @@ TEST("that caught silenced exception causes exitcode 0") {
// setrlimit with RLIMIT_AS is broken on Darwin
#else
TEST("that mmap within limits are fine cause exitcode 0") {
- Process proc("exec ./vespalib_mmap_app 150000000 10485760 1");
+ Process proc("exec ./vespalib_mmap_app 536870912 10485760 1");
EXPECT_EQUAL(proc.join(), 0);
}