diff options
author | Jeff Cody <jcody@redhat.com> | 2014-04-10 16:47:40 -0400 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-04-29 16:19:37 +0200 |
commit | cc8a7e560ca7932bacabc8a7113ac73976917848 (patch) | |
tree | 7a619daf6714e29ab5ccbb49143bbaa2e6eaf9db /tests/qemu-iotests/019 | |
parent | c55752745536712f778e9a0d73a078bdb0360df2 (diff) | |
download | qemu-cc8a7e560ca7932bacabc8a7113ac73976917848.zip qemu-cc8a7e560ca7932bacabc8a7113ac73976917848.tar.gz qemu-cc8a7e560ca7932bacabc8a7113ac73976917848.tar.bz2 |
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/019')
-rwxr-xr-x | tests/qemu-iotests/019 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/019 b/tests/qemu-iotests/019 index e67445c..f5ecbf5 100755 --- a/tests/qemu-iotests/019 +++ b/tests/qemu-iotests/019 @@ -96,7 +96,7 @@ mv "$TEST_IMG" "$TEST_IMG.orig" for backing_option in "-B " "-o backing_file="; do echo - echo Testing conversion with $backing_option$TEST_IMG.base | _filter_testdir | _filter_imgfmt + echo Testing conversion with $backing_option"$TEST_IMG.base" | _filter_testdir | _filter_imgfmt echo $QEMU_IMG convert -O $IMGFMT $backing_option"$TEST_IMG.base" "$TEST_IMG.orig" "$TEST_IMG" |