iotests/common.pattern: Quote echos
From time to time, my shell decides to repace the bracketed numbers here by the numbers inside (i.e., "=== Clusters to be compressed [1]" is printed as "=== Clusters to be compressed 1"). That makes tests that use common.pattern fail. Prevent that from happening by quoting the arguments to all echos in common.pattern. Signed-off-by: Max Reitz <mreitz@redhat.com> Message-Id: <20200403101134.805871-1-mreitz@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
parent
fb43d2d46e
commit
25fb2e9c39
@ -23,7 +23,7 @@ do_is_allocated() {
|
||||
local count=$4
|
||||
|
||||
for ((i=1;i<=$count;i++)); do
|
||||
echo alloc $(( start + (i - 1) * step )) $size
|
||||
echo "alloc $(( start + (i - 1) * step )) $size"
|
||||
done
|
||||
}
|
||||
|
||||
@ -39,9 +39,9 @@ do_io() {
|
||||
local count=$5
|
||||
local pattern=$6
|
||||
|
||||
echo === IO: pattern $pattern >&2
|
||||
echo "=== IO: pattern $pattern" >&2
|
||||
for ((i=1;i<=$count;i++)); do
|
||||
echo $op -P $pattern $(( start + (i - 1) * step )) $size
|
||||
echo "$op -P $pattern $(( start + (i - 1) * step )) $size"
|
||||
done
|
||||
}
|
||||
|
||||
@ -110,31 +110,31 @@ io_test2() {
|
||||
# free - free - compressed
|
||||
|
||||
# Write the clusters to be compressed
|
||||
echo === Clusters to be compressed [1]
|
||||
echo '=== Clusters to be compressed [1]'
|
||||
io_pattern writev $((offset + 4 * $cluster_size)) $cluster_size $((9 * $cluster_size)) $num 165
|
||||
echo === Clusters to be compressed [2]
|
||||
echo '=== Clusters to be compressed [2]'
|
||||
io_pattern writev $((offset + 5 * $cluster_size)) $cluster_size $((9 * $cluster_size)) $num 165
|
||||
echo === Clusters to be compressed [3]
|
||||
echo '=== Clusters to be compressed [3]'
|
||||
io_pattern writev $((offset + 8 * $cluster_size)) $cluster_size $((9 * $cluster_size)) $num 165
|
||||
|
||||
mv "$TEST_IMG" "$TEST_IMG.orig"
|
||||
$QEMU_IMG convert -f $IMGFMT -O $IMGFMT -c "$TEST_IMG.orig" "$TEST_IMG"
|
||||
|
||||
# Write the used clusters
|
||||
echo === Used clusters [1]
|
||||
echo '=== Used clusters [1]'
|
||||
io_pattern writev $((offset + 0 * $cluster_size)) $cluster_size $((9 * $cluster_size)) $num 165
|
||||
echo === Used clusters [2]
|
||||
echo '=== Used clusters [2]'
|
||||
io_pattern writev $((offset + 1 * $cluster_size)) $cluster_size $((9 * $cluster_size)) $num 165
|
||||
echo === Used clusters [3]
|
||||
echo '=== Used clusters [3]'
|
||||
io_pattern writev $((offset + 3 * $cluster_size)) $cluster_size $((9 * $cluster_size)) $num 165
|
||||
|
||||
# Read them
|
||||
echo === Read used/compressed clusters
|
||||
echo '=== Read used/compressed clusters'
|
||||
io_pattern readv $((offset + 0 * $cluster_size)) $((2 * $cluster_size)) $((9 * $cluster_size)) $num 165
|
||||
io_pattern readv $((offset + 3 * $cluster_size)) $((3 * $cluster_size)) $((9 * $cluster_size)) $num 165
|
||||
io_pattern readv $((offset + 8 * $cluster_size)) $((1 * $cluster_size)) $((9 * $cluster_size)) $num 165
|
||||
|
||||
echo === Read zeros
|
||||
echo '=== Read zeros'
|
||||
io_zero readv $((offset + 2 * $cluster_size)) $((1 * $cluster_size)) $((9 * $cluster_size)) $num
|
||||
io_zero readv $((offset + 6 * $cluster_size)) $((2 * $cluster_size)) $((9 * $cluster_size)) $num
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user