diff options
Diffstat (limited to 'tests/dd')
-rwxr-xr-x | tests/dd/stats.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dd/stats.sh b/tests/dd/stats.sh index 182d5e7e7..f87d2dab2 100755 --- a/tests/dd/stats.sh +++ b/tests/dd/stats.sh @@ -67,7 +67,7 @@ done progress_output() { - { sleep "$1"; echo 1; } | dd bs=1 status=progress of=/dev/null 2>err + { sleep $1; echo 1; } | dd bs=1 status=progress of=/dev/null 2>err # Progress output should be for "byte copied", while final is "bytes ..." grep 'byte copied' err } |