diff options
author | Zach van Rijn <me@zv.io> | 2023-09-18 17:36:33 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2023-09-18 17:36:33 +0000 |
commit | cf682e9d505acf791a27e255884c0eb9d29f92d4 (patch) | |
tree | 69e8b76f8175f9925ea5201df78371fc49d16ee9 /system/coreutils/csplit-vm-test.patch | |
parent | 7a30d67a3a456bd33eb27e4fb82bf9477467e3e9 (diff) | |
download | packages-cf682e9d505acf791a27e255884c0eb9d29f92d4.tar.gz packages-cf682e9d505acf791a27e255884c0eb9d29f92d4.tar.bz2 packages-cf682e9d505acf791a27e255884c0eb9d29f92d4.tar.xz packages-cf682e9d505acf791a27e255884c0eb9d29f92d4.zip |
system/coreutils: bump { 9.2 --> 9.4 }. fixes #1043.
Diffstat (limited to 'system/coreutils/csplit-vm-test.patch')
-rw-r--r-- | system/coreutils/csplit-vm-test.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/system/coreutils/csplit-vm-test.patch b/system/coreutils/csplit-vm-test.patch deleted file mode 100644 index da2e1ad15..000000000 --- a/system/coreutils/csplit-vm-test.patch +++ /dev/null @@ -1,30 +0,0 @@ -From aa99b99f0cc03fac8a7db00b6aec8887756a499c Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?P=C3=A1draig=20Brady?= <P@draigBrady.com> -Date: Thu, 30 Mar 2023 14:28:03 +0100 -Subject: [PATCH] tests: adjust csplit VM limit - -* tests/misc/csplit-heap.sh: More memory is required to avoid -a false failure on some systems. Noticed with musl libc -with bash as the shell. This is confirmed to still easily -trigger with the original memory leak being tested. -Addresses https://bugs.gnu.org/62542 ---- - tests/misc/csplit-heap.sh | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/misc/csplit-heap.sh b/tests/misc/csplit-heap.sh -index 2ba3c4500..36b286b93 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 + 1000)) \ -+ ulimit -v $(($vm + 4000)) \ - && { yes | head -n2500000; echo n; } | csplit -z - %n%1 - ) || fail=1 - --- -2.26.2 - |