aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2020-02-06 14:08:12 +0100
committerMax Reitz <mreitz@redhat.com>2020-02-20 16:43:42 +0100
commitb0c4cf21b0f26533e4aa6ca1930b2c9f52371bfa (patch)
tree53b08b07e4a848796f8be5a25ef4a9a63eb3906b /tests
parent6756696e38117f9e7c769dd33b339f5ab71f7d47 (diff)
downloadqemu-b0c4cf21b0f26533e4aa6ca1930b2c9f52371bfa.zip
qemu-b0c4cf21b0f26533e4aa6ca1930b2c9f52371bfa.tar.gz
qemu-b0c4cf21b0f26533e4aa6ca1930b2c9f52371bfa.tar.bz2
iotests/147: Fix drive parameters
8dff69b94 added an aio parameter to the drive parameter but forgot to add a comma before, thus breaking the test. Fix it again. Fixes: 8dff69b9415b4287e900358744b732195e1ab2e2 Signed-off-by: Max Reitz <mreitz@redhat.com> Message-Id: <20200206130812.612960-1-mreitz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Tested-by: Eric Blake <eblake@redhat.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/qemu-iotests/1472
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/147 b/tests/qemu-iotests/147
index f4b0a11..d7a9f31 100755
--- a/tests/qemu-iotests/147
+++ b/tests/qemu-iotests/147
@@ -134,7 +134,7 @@ class BuiltinNBD(NBDBlockdevAddBase):
self.server.add_drive_raw('if=none,id=nbd-export,' +
'file=%s,' % test_img +
'format=%s,' % imgfmt +
- 'cache=%s' % cachemode +
+ 'cache=%s,' % cachemode +
'aio=%s' % aiomode)
self.server.launch()