diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-07-15 16:57:50 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-07-25 15:11:46 +0100 |
| commit | 0d806a3af4faec1fcadd2f33b3a0ba99fdefd19c (patch) | |
| tree | 613d65096c2cc9c3ecd9a30f2b3e45a54483e0af | |
| parent | 17421c1fe2ead2121dbd8171b15bf6240feb94bc (diff) | |
| download | poky-0d806a3af4faec1fcadd2f33b3a0ba99fdefd19c.tar.gz | |
selftest/runtime_test/virgl: Disable for all almalinux
We can't support vgem on RHEL derived distros so disable this test for
all almalinux hosts rather than specific versions.
(From OE-Core rev: b418b969b4d44e347d95c6ed8c86703b977d90a3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e921f3c1b917072e4c5a110c7dfeeadd2e571bde)
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index 8eacde40ad..857737f730 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py | |||
| @@ -252,7 +252,7 @@ class TestImage(OESelftestTestCase): | |||
| 252 | import subprocess, os | 252 | import subprocess, os |
| 253 | 253 | ||
| 254 | distro = oe.lsb.distro_identifier() | 254 | distro = oe.lsb.distro_identifier() |
| 255 | if distro and distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04', 'almalinux-8.5', 'almalinux-8.6']: | 255 | if distro and (distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04'] or distro.startswith('almalinux')): |
| 256 | self.skipTest('virgl headless cannot be tested with %s' %(distro)) | 256 | self.skipTest('virgl headless cannot be tested with %s' %(distro)) |
| 257 | 257 | ||
| 258 | render_hint = """If /dev/dri/renderD* is absent due to lack of suitable GPU, 'modprobe vgem' will create one suitable for mesa llvmpipe software renderer.""" | 258 | render_hint = """If /dev/dri/renderD* is absent due to lack of suitable GPU, 'modprobe vgem' will create one suitable for mesa llvmpipe software renderer.""" |
