summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2021-12-21 07:56:17 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-07 23:21:34 +0000
commit3ec09f81c68ecbc90b05d20d5036b0840cc2801d (patch)
tree87a644f63d56628ff330cf27c23da0f80368718f
parent9e6de0d52079f8215b69e2c34883806daaf8cfa8 (diff)
downloadpoky-3ec09f81c68ecbc90b05d20d5036b0840cc2801d.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 (From OE-Core rev: a469e03ed175b8fb846d449dd8858bc874981ed9) Signed-off-by: Steve Sakoman <steve@sakoman.com> (cherry picked from commit 1ab7aee542589f6b6c76f8515b4230ce870a8678) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 668e978f17..2148e84ff3 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -187,6 +187,8 @@ class TestImage(OESelftestTestCase):
187 self.skipTest('virgl isn\'t working with Centos 7') 187 self.skipTest('virgl isn\'t working with Centos 7')
188 if distro and distro == 'centos-8': 188 if distro and distro == 'centos-8':
189 self.skipTest('virgl isn\'t working with Centos 8') 189 self.skipTest('virgl isn\'t working with Centos 8')
190 if distro and distro == 'fedora-34':
191 self.skipTest('virgl isn\'t working with Fedora 34')
190 if distro and distro == 'opensuseleap-15.0': 192 if distro and distro == 'opensuseleap-15.0':
191 self.skipTest('virgl isn\'t working with Opensuse 15.0') 193 self.skipTest('virgl isn\'t working with Opensuse 15.0')
192 194