diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-10-31 10:36:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-13 22:02:16 +0000 |
commit | 8775cdf59aa8b75ca99a24afcbc9186301f4b6ec (patch) | |
tree | dfb13dd778f6705a48e4bfb886fa0d572b374e4e /meta | |
parent | a8580a49b04b8a232b096725605f9ead2fabae0a (diff) | |
download | poky-8775cdf59aa8b75ca99a24afcbc9186301f4b6ec.tar.gz |
selftest: skip virgl test on centos 7 entirely
With the sdl frontend, qemu isn't able to even boot fully,
so let's skip the test early.
(From OE-Core rev: 1344a6a1300007b4fadaf815f6652d30e7834430)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runtime_test.py | 2 |
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 3f212bd0ea..7d3922ce44 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 | distro = oe.lsb.distro_identifier() | 179 | distro = oe.lsb.distro_identifier() |
180 | if distro and distro == 'debian-8': | 180 | if distro and distro == 'debian-8': |
181 | self.skipTest('virgl isn\'t working with Debian 8') | 181 | self.skipTest('virgl isn\'t working with Debian 8') |
182 | if distro and distro == 'centos-7': | ||
183 | self.skipTest('virgl isn\'t working with Centos 7') | ||
182 | 184 | ||
183 | qemu_packageconfig = get_bb_var('PACKAGECONFIG', 'qemu-system-native') | 185 | qemu_packageconfig = get_bb_var('PACKAGECONFIG', 'qemu-system-native') |
184 | features = 'INHERIT += "testimage"\n' | 186 | features = 'INHERIT += "testimage"\n' |