From 9e6de0d52079f8215b69e2c34883806daaf8cfa8 Mon Sep 17 00:00:00 2001 From: Steve Sakoman Date: Thu, 9 Dec 2021 07:46:53 -1000 Subject: 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 (cherry picked from commit 74bb94a7d249b5c53f3e1d15688a3a323fc8e828) Signed-off-by: Anuj Mittal Signed-off-by: Richard Purdie --- meta/lib/oeqa/selftest/cases/runtime_test.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta') 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): self.skipTest('virgl isn\'t working with Debian 9') 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') -- cgit v1.2.3-54-g00ecf