diff options
author | Max Reitz <mreitz@redhat.com> | 2019-09-02 21:33:19 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2019-09-10 08:58:43 +0200 |
commit | 7c932a1d69a6d6ac5c0b615c11d191da3bbe9aa8 (patch) | |
tree | 0d5a1c39e5392c88359657387a0d96b6d025e17c /tests/qemu-iotests/205 | |
parent | 103cbc771e5660d1f5bb458be80aa9e363547ae0 (diff) |
iotests: Restrict nbd Python tests to nbd
We have two Python unittest-style tests that test NBD. As such, they
should specify supported_protocols=['nbd'] so they are skipped when the
user wants to test some other protocol.
Furthermore, we should restrict their choice of formats to 'raw'. The
idea of a protocol/format combination is to use some format over some
protocol; but we always use the raw format over NBD. It does not really
matter what the NBD server uses on its end, and it is not a useful test
of the respective format driver anyway.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/205')
-rwxr-xr-x | tests/qemu-iotests/205 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qemu-iotests/205 b/tests/qemu-iotests/205 index b8a86c446e..76f6c5fa2b 100755 --- a/tests/qemu-iotests/205 +++ b/tests/qemu-iotests/205 @@ -153,4 +153,5 @@ class TestNbdServerRemove(iotests.QMPTestCase): if __name__ == '__main__': - iotests.main(supported_fmts=['generic']) + iotests.main(supported_fmts=['raw'], + supported_protocols=['nbd']) |