summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2021-12-09 07:46:53 -1000
committerSteve Sakoman <steve@sakoman.com>2021-12-12 07:59:42 -1000
commit74bb94a7d249b5c53f3e1d15688a3a323fc8e828 (patch)
tree07238d5e73a2cbb06c877f8946d327f4dc4410a5
parent7d26bdcfef6473f64c73e8507bce334e010c3cad (diff)
downloadopenembedded-core-74bb94a7d249b5c53f3e1d15688a3a323fc8e828.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. Signed-off-by: Steve Sakoman <steve@sakoman.com>
-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 1c935da919..9e5c3f2878 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -179,6 +179,8 @@ class TestImage(OESelftestTestCase):
self.skipTest('virgl isn\'t working with Debian 8')
if distro and distro == 'centos-7':
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 == 'opensuseleap-15.0':
self.skipTest('virgl isn\'t working with Opensuse 15.0')