summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2021-12-09 07:46:53 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-12-14 22:49:22 +0000
commit38793eecdadd86343e1bc95281efa1f1ecba1876 (patch)
tree3aef2a3e56d0969ae0ab926e3b58b6d3c95ee339
parent25e51ec82ac68d034054592962bb4f232c52d33d (diff)
downloadpoky-38793eecdadd86343e1bc95281efa1f1ecba1876.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: 74bb94a7d249b5c53f3e1d15688a3a323fc8e828) Signed-off-by: Steve Sakoman <steve@sakoman.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 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):
179 self.skipTest('virgl isn\'t working with Debian 8') 179 self.skipTest('virgl isn\'t working with Debian 8')
180 if distro and distro == 'centos-7': 180 if distro and distro == 'centos-7':
181 self.skipTest('virgl isn\'t working with Centos 7') 181 self.skipTest('virgl isn\'t working with Centos 7')
182 if distro and distro == 'centos-8':
183 self.skipTest('virgl isn\'t working with Centos 8')
182 if distro and distro == 'opensuseleap-15.0': 184 if distro and distro == 'opensuseleap-15.0':
183 self.skipTest('virgl isn\'t working with Opensuse 15.0') 185 self.skipTest('virgl isn\'t working with Opensuse 15.0')
184 186