aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2019-10-17 15:31:46 +0200
committerMax Reitz <mreitz@redhat.com>2019-10-28 11:22:31 +0100
commit4b4d34f4f79f16f1135705161bb2c2991df9049e (patch)
treec3313a39ca0436abcbce5eaf01db1840a286ab3b
parent7310e0bd64026223cc74701bcd20d58937e3578e (diff)
downloadqemu-4b4d34f4f79f16f1135705161bb2c2991df9049e.zip
qemu-4b4d34f4f79f16f1135705161bb2c2991df9049e.tar.gz
qemu-4b4d34f4f79f16f1135705161bb2c2991df9049e.tar.bz2
iotests/194: Create sockets in $SOCK_DIR
Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20191017133155.5327-15-mreitz@redhat.com Signed-off-by: Max Reitz <mreitz@redhat.com>
-rwxr-xr-xtests/qemu-iotests/1944
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qemu-iotests/194 b/tests/qemu-iotests/194
index d746ab1..72e47e8 100755
--- a/tests/qemu-iotests/194
+++ b/tests/qemu-iotests/194
@@ -26,8 +26,8 @@ iotests.verify_platform(['linux'])
with iotests.FilePath('source.img') as source_img_path, \
iotests.FilePath('dest.img') as dest_img_path, \
- iotests.FilePath('migration.sock') as migration_sock_path, \
- iotests.FilePath('nbd.sock') as nbd_sock_path, \
+ iotests.FilePaths(['migration.sock', 'nbd.sock'], iotests.sock_dir) as \
+ [migration_sock_path, nbd_sock_path], \
iotests.VM('source') as source_vm, \
iotests.VM('dest') as dest_vm: