Message ID | 1460538604-12132-11-git-send-email-famz@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/tests/qemu-iotests/091 b/tests/qemu-iotests/091 index 32bbd56..2a3c9bd 100755 --- a/tests/qemu-iotests/091 +++ b/tests/qemu-iotests/091 @@ -61,13 +61,13 @@ echo === Starting QEMU VM1 === echo qemu_comm_method="monitor" -_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk +_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk,lock-image=off h1=$QEMU_HANDLE echo echo === Starting QEMU VM2 === echo -_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk \ +_launch_qemu -drive file="${TEST_IMG}",cache=${CACHEMODE},id=disk,lock-image=off \ -incoming "exec: cat '${MIG_FIFO}'" h2=$QEMU_HANDLE
Because the source and the destination QEMU instances both open the image, we have to disable the lock. Signed-off-by: Fam Zheng <famz@redhat.com> --- tests/qemu-iotests/091 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)