From 99b1c6bd4758b8251090e6584990f90c185f67e6 Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Wed, 4 Oct 2023 22:42:37 +0200 Subject: [PATCH] Testsuite: increase virtual memory limit Set ulimit -v setting to 8 GiB (setting is given in kbyte) Otherwise it is not possible to start 100 Threads. This is surprising, because the actual memory usage of the tests in question are minuscule and also TOP does not show any significant memory peak when running the test. --- tests/test.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.conf b/tests/test.conf index 1efd7c94a..9695c65e1 100755 --- a/tests/test.conf +++ b/tests/test.conf @@ -1,4 +1,4 @@ LOGSUPPRESS='^\(\*\*[0-9]*\*\* \)\?[0-9]\{10,\}[:!] \(TRACE\|INFO\|NOTICE\|WARNING\|ERR\|TODO\|PLANNED\|FIXME\|DEPRECATED\|UNIMPLEMENTED\|RESOURCE_ANNOUNCE\|RESOURCE_ENTER\|RESOURCE_STATE\|RESOURCE_LEAVE\):' LIMIT_CPU=10 -LIMIT_VSZ=$((6 * 1014 * 1024)) +LIMIT_VSZ=$((8 * 1014 * 1024))