aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/py/test_device_set_irqs.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/py/test_device_set_irqs.py b/test/py/test_device_set_irqs.py
index 4118cb2..1aead71 100644
--- a/test/py/test_device_set_irqs.py
+++ b/test/py/test_device_set_irqs.py
@@ -151,6 +151,24 @@ def test_device_set_irqs_bad_action_for_req_irq():
expect=errno.EINVAL)
+def test_device_set_irqs_bad_start_count_range_for_err_irq():
+ payload = vfio_irq_set(argsz=argsz, flags=VFIO_IRQ_SET_ACTION_TRIGGER |
+ VFIO_IRQ_SET_DATA_NONE, index=VFU_DEV_ERR_IRQ,
+ start=0, count=2)
+
+ msg(ctx, sock, VFIO_USER_DEVICE_SET_IRQS, payload,
+ expect=errno.EINVAL)
+
+
+def test_device_set_irqs_bad_start_count_range_for_req_irq():
+ payload = vfio_irq_set(argsz=argsz, flags=VFIO_IRQ_SET_ACTION_TRIGGER |
+ VFIO_IRQ_SET_DATA_NONE, index=VFU_DEV_REQ_IRQ,
+ start=0, count=2)
+
+ msg(ctx, sock, VFIO_USER_DEVICE_SET_IRQS, payload,
+ expect=errno.EINVAL)
+
+
def test_device_set_irqs_bad_start_for_count_0():
payload = vfio_irq_set(argsz=argsz, flags=VFIO_IRQ_SET_ACTION_MASK |
VFIO_IRQ_SET_DATA_NONE, index=VFU_DEV_MSIX_IRQ,