aboutsummaryrefslogtreecommitdiff
path: root/test/py/test_device_get_irq_info.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/py/test_device_get_irq_info.py')
-rw-r--r--test/py/test_device_get_irq_info.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/py/test_device_get_irq_info.py b/test/py/test_device_get_irq_info.py
index c45ad7f..fd00544 100644
--- a/test/py/test_device_get_irq_info.py
+++ b/test/py/test_device_get_irq_info.py
@@ -61,19 +61,22 @@ def test_device_get_irq_info_setup():
def test_device_get_irq_info_bad_in():
payload = struct.pack("II", 0, 0)
- msg(ctx, sock, VFIO_USER_DEVICE_GET_IRQ_INFO, payload, expect=errno.EINVAL)
+ msg(ctx, sock, VFIO_USER_DEVICE_GET_IRQ_INFO, payload,
+ expect_reply_errno=errno.EINVAL)
# bad argsz
payload = vfio_irq_info(argsz=8, flags=0, index=VFU_DEV_REQ_IRQ,
count=0)
- msg(ctx, sock, VFIO_USER_DEVICE_GET_IRQ_INFO, payload, expect=errno.EINVAL)
+ msg(ctx, sock, VFIO_USER_DEVICE_GET_IRQ_INFO, payload,
+ expect_reply_errno=errno.EINVAL)
# bad index
payload = vfio_irq_info(argsz=argsz, flags=0, index=VFU_DEV_NUM_IRQS,
count=0)
- msg(ctx, sock, VFIO_USER_DEVICE_GET_IRQ_INFO, payload, expect=errno.EINVAL)
+ msg(ctx, sock, VFIO_USER_DEVICE_GET_IRQ_INFO, payload,
+ expect_reply_errno=errno.EINVAL)
def test_device_get_irq_info():
@@ -126,3 +129,5 @@ def test_device_get_irq_info_cleanup():
disconnect_client(ctx, sock)
vfu_destroy_ctx(ctx)
+
+# ex: set tabstop=4 shiftwidth=4 softtabstop=4 expandtab: #