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

@ -22,7 +22,7 @@
# #
function get_size_mb 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. # Sum the ind or agg columns of the trim request size histogram.
case "$type" in case "$type" in
"ind") "ind")
rval=$(zpool iostat -pr $pool $vdev | awk \ zpool iostat -pr $pool $vdev |
'$1 ~ /[0-9].*/ { sum += $12 } END { print sum }') awk '$1 ~ /[0-9].*/ { sum += $12 } END { print sum }'
echo -n "$rval"
;; ;;
"agg") "agg")
rval=$(zpool iostat -pr $pool $vdev | awk \ zpool iostat -pr $pool $vdev |
'$1 ~ /[0-9].*/ { sum += $13 } END { print sum }') awk '$1 ~ /[0-9].*/ { sum += $13 } END { print sum }'
echo -n "$rval"
;; ;;
*) *)
log_fail "Type must be 'ind' or 'agg'" log_fail "Type must be 'ind' or 'agg'"