mirror of https://github.com/xemu-project/xemu.git
iotests/143: Create socket in $SOCK_DIR
Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-id: 20191017133155.5327-9-mreitz@redhat.com Signed-off-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
parent
46cabce6c2
commit
9a9c7c8f98
|
@ -29,7 +29,7 @@ status=1 # failure is the default!
|
||||||
_cleanup()
|
_cleanup()
|
||||||
{
|
{
|
||||||
_cleanup_qemu
|
_cleanup_qemu
|
||||||
rm -f "$TEST_DIR/nbd"
|
rm -f "$SOCK_DIR/nbd"
|
||||||
}
|
}
|
||||||
trap "_cleanup; exit \$status" 0 1 2 3 15
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
||||||
|
|
||||||
|
@ -51,12 +51,12 @@ _send_qemu_cmd $QEMU_HANDLE \
|
||||||
_send_qemu_cmd $QEMU_HANDLE \
|
_send_qemu_cmd $QEMU_HANDLE \
|
||||||
"{ 'execute': 'nbd-server-start',
|
"{ 'execute': 'nbd-server-start',
|
||||||
'arguments': { 'addr': { 'type': 'unix',
|
'arguments': { 'addr': { 'type': 'unix',
|
||||||
'data': { 'path': '$TEST_DIR/nbd' }}}}" \
|
'data': { 'path': '$SOCK_DIR/nbd' }}}}" \
|
||||||
'return'
|
'return'
|
||||||
|
|
||||||
# This should just result in a client error, not in the server crashing
|
# This should just result in a client error, not in the server crashing
|
||||||
$QEMU_IO_PROG -f raw -c quit \
|
$QEMU_IO_PROG -f raw -c quit \
|
||||||
"nbd+unix:///no_such_export?socket=$TEST_DIR/nbd" 2>&1 \
|
"nbd+unix:///no_such_export?socket=$SOCK_DIR/nbd" 2>&1 \
|
||||||
| _filter_qemu_io | _filter_nbd
|
| _filter_qemu_io | _filter_nbd
|
||||||
|
|
||||||
_send_qemu_cmd $QEMU_HANDLE \
|
_send_qemu_cmd $QEMU_HANDLE \
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
QA output created by 143
|
QA output created by 143
|
||||||
{"return": {}}
|
{"return": {}}
|
||||||
{"return": {}}
|
{"return": {}}
|
||||||
qemu-io: can't open device nbd+unix:///no_such_export?socket=TEST_DIR/nbd: Requested export not available
|
qemu-io: can't open device nbd+unix:///no_such_export?socket=SOCK_DIR/nbd: Requested export not available
|
||||||
server reported: export 'no_such_export' not present
|
server reported: export 'no_such_export' not present
|
||||||
{"return": {}}
|
{"return": {}}
|
||||||
{"timestamp": {"seconds": TIMESTAMP, "microseconds": TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false, "reason": "host-qmp-quit"}}
|
{"timestamp": {"seconds": TIMESTAMP, "microseconds": TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false, "reason": "host-qmp-quit"}}
|
||||||
|
|
Loading…
Reference in New Issue