mirror of https://github.com/xemu-project/xemu.git
iotests: Test failure to loosen restrictions
Signed-off-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
1046779e64
commit
dc68c9d3e8
|
@ -152,6 +152,27 @@ success_or_failure=y _send_qemu_cmd $QEMU_HANDLE \
|
||||||
|
|
||||||
_cleanup_qemu
|
_cleanup_qemu
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo '=== Testing failure to loosen restrictions ==='
|
||||||
|
echo
|
||||||
|
|
||||||
|
_launch_qemu -drive file=$TEST_IMG,if=none,file.locking=on
|
||||||
|
|
||||||
|
_send_qemu_cmd $QEMU_HANDLE \
|
||||||
|
"{'execute': 'qmp_capabilities'}" \
|
||||||
|
'return'
|
||||||
|
|
||||||
|
_cleanup_test_img
|
||||||
|
|
||||||
|
# When quitting qemu, it will try to drop its locks on the test image.
|
||||||
|
# Because that file no longer exists, it will be unable to do so.
|
||||||
|
# However, that is not fatal, so it should just move on.
|
||||||
|
_send_qemu_cmd $QEMU_HANDLE \
|
||||||
|
"{'execute': 'quit'}" \
|
||||||
|
'return'
|
||||||
|
|
||||||
|
wait=1 _cleanup_qemu
|
||||||
|
|
||||||
# success, all done
|
# success, all done
|
||||||
echo "*** done"
|
echo "*** done"
|
||||||
rm -f $seq.full
|
rm -f $seq.full
|
||||||
|
|
|
@ -15,4 +15,10 @@ Formatting 'TEST_DIR/t.qcow2.overlay', fmt=qcow2 size=197120 backing_file=TEST_D
|
||||||
{"return": {}}
|
{"return": {}}
|
||||||
{"return": {}}
|
{"return": {}}
|
||||||
{"return": {}}
|
{"return": {}}
|
||||||
|
|
||||||
|
=== Testing failure to loosen restrictions ===
|
||||||
|
|
||||||
|
{"return": {}}
|
||||||
|
{"return": {}}
|
||||||
|
{"timestamp": {"seconds": TIMESTAMP, "microseconds": TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false, "reason": "host-qmp-quit"}}
|
||||||
*** done
|
*** done
|
||||||
|
|
Loading…
Reference in New Issue