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/migration.py | |
parent | 1fec1f4df6d26d63dac396a3dbae70da2c69d8a5 (diff) | |
download | drminfo-490442630911cfc149e72a00fd52b6f17b67ea68.tar.gz |
tests: add guest driver tags
Diffstat (limited to 'tests/migration.py')
-rw-r--r-- | tests/migration.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/migration.py b/tests/migration.py index 4c8990a..a267d78 100644 --- a/tests/migration.py +++ b/tests/migration.py @@ -86,21 +86,36 @@ class Migration(TestDRM): self.prepare_kernel_initrd() def test_stdvga(self): + """ + :avocado: tags=bochs + """ vga = 'VGA' self.migration_test(vga) def test_bochs_dpy(self): + """ + :avocado: tags=bochs + """ vga = 'bochs-display' self.migration_test(vga) def test_cirrus(self): + """ + :avocado: tags=cirrus + """ vga = "cirrus-vga" self.migration_test(vga) def test_qxl(self): + """ + :avocado: tags=qxl + """ vga = "qxl-vga" self.migration_test(vga) def test_virtio_vga(self): + """ + :avocado: tags=virtio + """ vga = "virtio-vga" self.migration_test(vga) |