aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2025-04-08 16:07:06 +0100
committerPádraig Brady <P@draigBrady.com>2025-04-08 16:07:06 +0100
commit9ccabd8df36703ab3abf09464f7514736b18fe80 (patch)
treeb3c7b8623786bae9da893de710755b3cdb820b84
parentls: support capabilities with device 0,0 (diff)
downloadcoreutils-9ccabd8df36703ab3abf09464f7514736b18fe80.tar.gz
coreutils-9ccabd8df36703ab3abf09464f7514736b18fe80.zip
tests: adjust csplit VM limit for CheriBSD
* tests/misc/csplit-heap.sh: More memory is required to avoid a false failure on CheriBSD with its heap accounting overhead. This is confirmed to still trigger with the original memory leak being tested.
-rwxr-xr-xtests/csplit/csplit-heap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/csplit/csplit-heap.sh b/tests/csplit/csplit-heap.sh
index 8a6821181..2a38789dc 100755
--- a/tests/csplit/csplit-heap.sh
+++ b/tests/csplit/csplit-heap.sh
@@ -25,7 +25,7 @@ vm=$(get_min_ulimit_v_ csplit -z f %n%1) \
|| skip_ 'shell lacks ulimit, or ASAN enabled'
(
- ulimit -v $(($vm + 4000)) \
+ ulimit -v $(($vm + 40000)) \
&& { yes | head -n2500000; echo n; } | csplit -z - %n%1
) || fail=1