mirror of https://github.com/xemu-project/xemu.git
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:8dff69b941
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>
This commit is contained in:
parent
6756696e38
commit
b0c4cf21b0
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in New Issue