diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-10-19 11:25:42 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-10-19 11:25:42 +0100 |
commit | 31b3db53da0a40afa0e98f4f39592057ccd69029 (patch) | |
tree | 9c821c4c34c79a5d9534ced2f9befa622d176dde /tests | |
parent | b6757e83c401d38e747f99314e45840907a4f60a (diff) | |
download | coreutils-31b3db53da0a40afa0e98f4f39592057ccd69029.tar.xz |
tests: adjust recent change to csplit VM limit
* tests/misc/csplit-heap.sh: A little more memory is required
for the full run case. Noticed with --enable-single-binary.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/csplit-heap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/csplit-heap.sh b/tests/misc/csplit-heap.sh index 0ffe70ad4..df8ce70a8 100755 --- a/tests/misc/csplit-heap.sh +++ b/tests/misc/csplit-heap.sh @@ -25,7 +25,7 @@ vm=$(get_min_ulimit_v_ csplit -z f %n%1) \ || skip_ "this shell lacks ulimit support" ( - ulimit -v $vm \ + ulimit -v $(($vm + 1000)) \ && { yes | head -n2500000; echo n; } | csplit -z - %n%1 ) || fail=1 |