diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-02-10 12:26:44 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-02-10 12:26:44 +0100 |
commit | 490442630911cfc149e72a00fd52b6f17b67ea68 (patch) | |
tree | 603692cf2627d6827c125d495745879cb762bf9b /tests/unbind.py | |
parent | 1fec1f4df6d26d63dac396a3dbae70da2c69d8a5 (diff) | |
download | drminfo-490442630911cfc149e72a00fd52b6f17b67ea68.tar.gz |
tests: add guest driver tags
Diffstat (limited to 'tests/unbind.py')
-rw-r--r-- | tests/unbind.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/unbind.py b/tests/unbind.py index 87f419c..8da135d 100644 --- a/tests/unbind.py +++ b/tests/unbind.py @@ -39,17 +39,29 @@ class unbind(TestDRM): self.prepare_kernel_initrd() def test_stdvga(self): + """ + :avocado: tags=bochs + """ vga = "VGA" self.run_unbind_test(vga) def test_cirrus(self): + """ + :avocado: tags=cirrus + """ vga = "cirrus-vga" self.run_unbind_test(vga) def test_qxl_vga(self): + """ + :avocado: tags=qxl + """ vga = "qxl-vga" self.run_unbind_test(vga) def test_virtio_vga(self): + """ + :avocado: tags=virtio + """ vga = "virtio-vga" self.run_unbind_test(vga) |