[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH-for-5.2? 3/5] tests/acceptance: Skip incomplete virtio_versio
From: |
Philippe Mathieu-Daudé |
Subject: |
Re: [PATCH-for-5.2? 3/5] tests/acceptance: Skip incomplete virtio_version tests using '@skip' |
Date: |
Tue, 3 Nov 2020 03:12:17 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.3.1 |
On 11/2/20 3:42 PM, Philippe Mathieu-Daudé wrote:
> Prefer skipping incomplete tests with the "@skip" keyword,
> rather than commenting the code.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> tests/acceptance/virtio_version.py | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/tests/acceptance/virtio_version.py
> b/tests/acceptance/virtio_version.py
> index 33593c29dd0..187bbfa1f42 100644
> --- a/tests/acceptance/virtio_version.py
> +++ b/tests/acceptance/virtio_version.py
And I forgot:
-- >8 --
@@ -14,6 +14,7 @@
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..',
'python'))
from qemu.machine import QEMUMachine
from avocado_qemu import Test
+from avocado import skip
# Virtio Device IDs:
VIRTIO_NET = 1
---
> @@ -140,17 +140,20 @@ def check_all_variants(self, qemu_devtype,
> virtio_devid):
> self.assertIn('conventional-pci-device', trans_ifaces)
> self.assertNotIn('pci-express-device', trans_ifaces)
>
> + @skip("virtio-blk requires 'driver' parameter")
> + def test_conventional_devs_driver(self):
> + self.check_all_variants('virtio-blk-pci', VIRTIO_BLOCK)
> +
> + @skip("virtio-9p requires 'fsdev' parameter")
> + def test_conventional_devs_fsdev(self):
> + self.check_all_variants('virtio-9p-pci', VIRTIO_9P)
>
> def test_conventional_devs(self):
> self.check_all_variants('virtio-net-pci', VIRTIO_NET)
> - # virtio-blk requires 'driver' parameter
> - #self.check_all_variants('virtio-blk-pci', VIRTIO_BLOCK)
> self.check_all_variants('virtio-serial-pci', VIRTIO_CONSOLE)
> self.check_all_variants('virtio-rng-pci', VIRTIO_RNG)
> self.check_all_variants('virtio-balloon-pci', VIRTIO_BALLOON)
> self.check_all_variants('virtio-scsi-pci', VIRTIO_SCSI)
> - # virtio-9p requires 'fsdev' parameter
> - #self.check_all_variants('virtio-9p-pci', VIRTIO_9P)
>
> def check_modern_only(self, qemu_devtype, virtio_devid):
> """Check if a modern-only virtio device type behaves as expected"""
>