From 226aca195f6e3835070eb19b7239d9fa79a2110d Mon Sep 17 00:00:00 2001 From: Tom Cosgrove Date: Wed, 16 Mar 2022 14:11:07 +0000 Subject: [PATCH] Fix running of all.sh on macOS Was getting 'dd: unknown operand status' Signed-off-by: Tom Cosgrove --- tests/scripts/all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index cc11dcf8f6..f293127226 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -3111,7 +3111,7 @@ run_component () { local dd_cmd dd_cmd=(dd if=/dev/urandom of=./tests/seedfile bs=64 count=1) case $OSTYPE in - linux*|freebsd*|openbsd*|darwin*) dd_cmd+=(status=none) + linux*|freebsd*|openbsd*) dd_cmd+=(status=none) esac "${dd_cmd[@]}"