summaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/086
diff options
context:
space:
mode:
authorJeff Cody <jcody@redhat.com>2014-04-10 16:47:40 -0400
committerKevin Wolf <kwolf@redhat.com>2014-04-29 16:19:37 +0200
commitcc8a7e560ca7932bacabc8a7113ac73976917848 (patch)
tree7a619daf6714e29ab5ccbb49143bbaa2e6eaf9db /tests/qemu-iotests/086
parentc55752745536712f778e9a0d73a078bdb0360df2 (diff)
downloadqemu-cc8a7e560ca7932bacabc8a7113ac73976917848.tar.gz
block: qemu-iotests: make test 019 and 086 work with spaced pathnames
Both tests 019 and 086 need proper quotations to work with pathnames that contain spaces. Reviewed-by: Benoit Canet <benoit@irqsave.net> Reviewed-by: Fam Zheng <famz@redhat.com> Signed-off-by: Jeff Cody <jcody@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/086')
-rwxr-xr-xtests/qemu-iotests/0868
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/qemu-iotests/086 b/tests/qemu-iotests/086
index 48fe85bc43..d9a80cf863 100755
--- a/tests/qemu-iotests/086
+++ b/tests/qemu-iotests/086
@@ -51,10 +51,10 @@ function run_qemu_img()
size=128M
_make_test_img $size
-$QEMU_IO -c 'write 0 1M' $TEST_IMG | _filter_qemu_io
-$QEMU_IO -c 'write 2M 1M' $TEST_IMG | _filter_qemu_io
-$QEMU_IO -c 'write 4M 1M' $TEST_IMG | _filter_qemu_io
-$QEMU_IO -c 'write 32M 1M' $TEST_IMG | _filter_qemu_io
+$QEMU_IO -c 'write 0 1M' "$TEST_IMG" | _filter_qemu_io
+$QEMU_IO -c 'write 2M 1M' "$TEST_IMG" | _filter_qemu_io
+$QEMU_IO -c 'write 4M 1M' "$TEST_IMG" | _filter_qemu_io
+$QEMU_IO -c 'write 32M 1M' "$TEST_IMG" | _filter_qemu_io
$QEMU_IMG convert -p -O $IMGFMT -f $IMGFMT "$TEST_IMG" "$TEST_IMG".base 2>&1 |\
_filter_testdir | sed -e 's/\r/\n/g'