From: Pádraig Brady Date: Sat, 20 Sep 2025 16:46:11 +0000 (+0100) Subject: tests: dd: avoid false failure on Solaris 10 X-Git-Tag: v9.8~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df30ce36e837a2600a6559a563ed611cd541dfe9;p=thirdparty%2Fcoreutils.git tests: dd: avoid false failure on Solaris 10 * tests/dd/no-allocate.sh: Give some extra space to the determined vm limit. --- diff --git a/tests/dd/no-allocate.sh b/tests/dd/no-allocate.sh index c9df21d40a..6746d5c706 100755 --- a/tests/dd/no-allocate.sh +++ b/tests/dd/no-allocate.sh @@ -43,7 +43,7 @@ check_dd_seek_alloc() { timeout 10 dd count=1 if=/dev/zero of=tape& # Allocate buffer and read from the "tape" - (ulimit -v $vm \ + (ulimit -v $(($vm+4000)) \ && timeout 10 dd $dd_buf=30M $dd_op=1 count=0 $dd_file=tape) local ret=$?