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.
This commit is contained in:
parent
4f50cbc386
commit
99b1c6bd47
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue