tests: echo-with-arguments review

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: Ryan Moeller <ryan@iXsystems.com>
Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
Closes #13259
This commit is contained in:
наб 2022-03-15 01:54:10 +01:00 committed by Brian Behlendorf
parent b1579689a9
commit 1948f6dbbf
2 changed files with 6 additions and 8 deletions

View File

@ -162,5 +162,5 @@ while ((i < ${#pair[@]})); do
((i += 2))
done
log_pass "Verify zfs send -R will backup all the filesystem properties " \
log_pass "Verify zfs send -R will backup all the filesystem properties" \
"correctly."

View File

@ -22,7 +22,7 @@
#
function get_size_mb
{
du --block-size 1048576 -s "$1" | awk '{printf("%s", $1)}'
du --block-size 1048576 -s "$1" | cut -f1
}
#
@ -38,14 +38,12 @@ function get_trim_io
# Sum the ind or agg columns of the trim request size histogram.
case "$type" in
"ind")
rval=$(zpool iostat -pr $pool $vdev | awk \
'$1 ~ /[0-9].*/ { sum += $12 } END { print sum }')
echo -n "$rval"
zpool iostat -pr $pool $vdev |
awk '$1 ~ /[0-9].*/ { sum += $12 } END { print sum }'
;;
"agg")
rval=$(zpool iostat -pr $pool $vdev | awk \
'$1 ~ /[0-9].*/ { sum += $13 } END { print sum }')
echo -n "$rval"
zpool iostat -pr $pool $vdev |
awk '$1 ~ /[0-9].*/ { sum += $13 } END { print sum }'
;;
*)
log_fail "Type must be 'ind' or 'agg'"