From 9a89d7b1938b9dd3a0be59fb9f5709799bdce2a6 Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Fri, 14 Aug 2015 23:05:21 +0200 Subject: [PATCH] Testsuite: change resource limits to work on Debian/Jessie this is strange; we need to crank up the VSize to 6 GiB to get the 5 massively multithreaded tests to run. I checked those tests with valgrind and can not see any such huge allocation --- tests/test.conf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test.conf b/tests/test.conf index d7109e910..1efd7c94a 100755 --- a/tests/test.conf +++ b/tests/test.conf @@ -1,5 +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=120 -LIMIT_VG_CPU=115 -LIMIT_VG_TIME=120 +LIMIT_CPU=10 +LIMIT_VSZ=$((6 * 1014 * 1024))