summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2021-12-21 07:56:17 -1000
committerSteve Sakoman <steve@sakoman.com>2021-12-23 06:21:37 -1000
commit1ab7aee542589f6b6c76f8515b4230ce870a8678 (patch)
tree6203ce6136cc7f5a6a1fc591f981169eb5210e2f /meta/lib/oeqa/selftest/cases
parenta3fe157cfd965d46d7ba30df92a0e80b5ab24a1f (diff)
downloadopenembedded-core-contrib-1ab7aee542589f6b6c76f8515b4230ce870a8678.tar.gz
selftest: skip virgl test on fedora 34 entirely
Fedora 34 recently updated libdrm to 2.4.109 and this test will fail any time the host has libdrm > 2.4.107 Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases')
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 9e5c3f2878..f5b3ba27a9 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -181,6 +181,8 @@ class TestImage(OESelftestTestCase):
self.skipTest('virgl isn\'t working with Centos 7')
if distro and distro == 'centos-8':
self.skipTest('virgl isn\'t working with Centos 8')
+ if distro and distro == 'fedora-34':
+ self.skipTest('virgl isn\'t working with Fedora 34')
if distro and distro == 'opensuseleap-15.0':
self.skipTest('virgl isn\'t working with Opensuse 15.0')