diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-12-20 12:48:43 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-12-20 12:48:43 +0100 |
commit | 123e4831a35c1f120f8addcc60b59e15d8c6695e (patch) | |
tree | 0389479bf4ad8897a2f1e2e2b827728b8a8c76bd /tests | |
parent | 0a2122434cc5fb1d569b8581ce8d80883280a510 (diff) | |
download | drminfo-123e4831a35c1f120f8addcc60b59e15d8c6695e.tar.gz |
enable unload/unbind qxl
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unbind.py | 4 | ||||
-rw-r--r-- | tests/unload.py | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/tests/unbind.py b/tests/unbind.py index 7456b6f..87f419c 100644 --- a/tests/unbind.py +++ b/tests/unbind.py @@ -46,6 +46,10 @@ class unbind(TestDRM): vga = "cirrus-vga" self.run_unbind_test(vga) + def test_qxl_vga(self): + vga = "qxl-vga" + self.run_unbind_test(vga) + def test_virtio_vga(self): vga = "virtio-vga" self.run_unbind_test(vga) diff --git a/tests/unload.py b/tests/unload.py index 9cebf77..7d46b47 100644 --- a/tests/unload.py +++ b/tests/unload.py @@ -48,7 +48,6 @@ class unload(TestDRM): mod = "cirrus" self.run_unload_test(vga, mod) - @avocado.skip("known broken") def test_qxl_vga(self): vga = "qxl-vga" mod = "qxl" |