Skip to content

Commit

Permalink
Fix running of all.sh on macOS
Browse files Browse the repository at this point in the history
Was getting 'dd: unknown operand status'

Signed-off-by: Tom Cosgrove <[email protected]>
  • Loading branch information
tom-cosgrove-arm committed Mar 16, 2022
1 parent 93859a5 commit 2785928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scripts/all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3054,7 +3054,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[@]}"

Expand Down

0 comments on commit 2785928

Please sign in to comment.