blob: c6176f1eacf294e83682c39be71c2af3c77e0490 (
plain)
1
2
3
4
5
6
|
# Starting GHC on *nix with vmem limit, RTS will reserve all available memory
# and crash when creating a thread. Fix reserves only 2/3rds of vmem_limit.
test('T18623',
[when(opsys('mingw32'), skip), cmd_prefix('ulimit -v ' + str(1024 ** 2) + ' && '), ignore_stdout],
run_command,
['{compiler} --version'])
|