aboutsummaryrefslogtreecommitdiffstats
path: root/tests/migration.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/migration.py')
-rw-r--r--tests/migration.py15
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)