diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-08-22 08:31:29 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-08-22 08:31:29 +0200 |
commit | 3410736664285c3c88ecfc57023b5a20c0fc2d93 (patch) | |
tree | 7dec3e2700b38cc7643d214a8425bcb7a1d49a77 /tests | |
parent | 534c72b8ae07b10c662c97ec9f94b3ea66dd7f5d (diff) | |
download | drminfo-3410736664285c3c88ecfc57023b5a20c0fc2d93.tar.gz |
tests: disable egl, add bochs-display migration
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basic.py | 2 | ||||
-rw-r--r-- | tests/migration.py | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/basic.py b/tests/basic.py index a62a6cf..69dfe3e 100644 --- a/tests/basic.py +++ b/tests/basic.py @@ -164,7 +164,7 @@ class BaseDRM(TestDRM): self.common_tests(vga, 'egl-headless') self.prime_tests(vga) self.virtio_tests(vga) - self.virgl_tests(vga) +# self.virgl_tests(vga) @avocado.skipUnless(os.path.exists(igd_vgpu_path), "no vgpu") def test_vgpu_igd(self): diff --git a/tests/migration.py b/tests/migration.py index 161f6c2..4c8990a 100644 --- a/tests/migration.py +++ b/tests/migration.py @@ -89,6 +89,10 @@ class Migration(TestDRM): vga = 'VGA' self.migration_test(vga) + def test_bochs_dpy(self): + vga = 'bochs-display' + self.migration_test(vga) + def test_cirrus(self): vga = "cirrus-vga" self.migration_test(vga) |