Skip to content
Snippets Groups Projects
Commit 8176d5e8 authored by Ben Gamari's avatar Ben Gamari
Browse files

testsuite: Increase ulimit for T18623

1 MByte was just too tight and failed intermittently on some platforms
(e.g. CentOS 7). Bumping the limit to 8 MByte should provide sufficient
headroom.

Fixes #23139.
parent 88df9a5f
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ test('T18623', ...@@ -8,7 +8,7 @@ test('T18623',
# Recent versions of osx report an error when running `ulimit -v` # Recent versions of osx report an error when running `ulimit -v`
when(opsys('darwin'), skip), when(opsys('darwin'), skip),
when(arch('powerpc64le'), skip), when(arch('powerpc64le'), skip),
cmd_prefix('ulimit -v ' + str(1024 ** 2) + ' && '), cmd_prefix('ulimit -v ' + str(8 * 1024 ** 2) + ' && '),
ignore_stdout], ignore_stdout],
run_command, run_command,
['{compiler} --version']) ['{compiler} --version'])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment