]> Git Repo - qemu.git/commitdiff
iotests/041: Fix NBD socket path
authorMax Reitz <[email protected]>
Fri, 24 Apr 2020 13:46:26 +0000 (15:46 +0200)
committerEric Blake <[email protected]>
Mon, 4 May 2020 19:56:04 +0000 (14:56 -0500)
We should put all UNIX socket files into the sock_dir, not test_dir.

Reported-by: Elena Ufimtseva <[email protected]>
Signed-off-by: Max Reitz <[email protected]>
Message-Id: <20200424134626[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Fixes: a1da1878607a
Reviewed-by: Stefan Hajnoczi <[email protected]>
Signed-off-by: Eric Blake <[email protected]>
tests/qemu-iotests/041

index 5d67bf14bfe8232b20f4d29eb4d00543e1987e56..46bf1f6c8164deb9f43a1cbb98d404790867af09 100755 (executable)
@@ -35,7 +35,7 @@ quorum_img3 = os.path.join(iotests.test_dir, 'quorum3.img')
 quorum_repair_img = os.path.join(iotests.test_dir, 'quorum_repair.img')
 quorum_snapshot_file = os.path.join(iotests.test_dir, 'quorum_snapshot.img')
 
-nbd_sock_path = os.path.join(iotests.test_dir, 'nbd.sock')
+nbd_sock_path = os.path.join(iotests.sock_dir, 'nbd.sock')
 
 class TestSingleDrive(iotests.QMPTestCase):
     image_len = 1 * 1024 * 1024 # MB
This page took 0.02921 seconds and 4 git commands to generate.