summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2021-12-09 07:46:53 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-07 23:21:34 +0000
commit9e6de0d52079f8215b69e2c34883806daaf8cfa8 (patch)
tree6b92b16f33d48b292da8f7c91a06d3e40bd85cd4
parent823d25f5218836fb4298482366fbc5d05d822907 (diff)
downloadpoky-9e6de0d52079f8215b69e2c34883806daaf8cfa8.tar.gz
selftest: skip virgl test on centos 8 entirely
With the sdl frontend, qemu isn't able to even boot fully, so let's skip the test early. (From OE-Core rev: 125f62204a14ff11becb6db9d412d1abece930aa) Signed-off-by: Steve Sakoman <steve@sakoman.com> (cherry picked from commit 74bb94a7d249b5c53f3e1d15688a3a323fc8e828) 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 b20c5b427b..668e978f17 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -185,6 +185,8 @@ class TestImage(OESelftestTestCase):
185 self.skipTest('virgl isn\'t working with Debian 9') 185 self.skipTest('virgl isn\'t working with Debian 9')
186 if distro and distro == 'centos-7': 186 if distro and distro == 'centos-7':
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':
189 self.skipTest('virgl isn\'t working with Centos 8')
188 if distro and distro == 'opensuseleap-15.0': 190 if distro and distro == 'opensuseleap-15.0':
189 self.skipTest('virgl isn\'t working with Opensuse 15.0') 191 self.skipTest('virgl isn\'t working with Opensuse 15.0')
190 192