From df30ce36e837a2600a6559a563ed611cd541dfe9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Sat, 20 Sep 2025 17:46:11 +0100 Subject: [PATCH] tests: dd: avoid false failure on Solaris 10 * tests/dd/no-allocate.sh: Give some extra space to the determined vm limit. --- tests/dd/no-allocate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=$? -- 2.47.3