diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-08-27 10:37:05 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-01 16:27:09 +0100 |
commit | bdd30be1a3815f70062d8febca91eaf042a77c3d (patch) | |
tree | d0b6b5bc4d6d1e33d283ce479bdcc654b5763f90 /meta/lib/oeqa/selftest/cases | |
parent | ffcdd251ff1b1eb550f44822396199cbfed687f0 (diff) | |
download | poky-bdd30be1a3815f70062d8febca91eaf042a77c3d.tar.gz |
selftest: disable virgl headless test
Crashes in mesa when using vgem kernel module (in the absence of real GPU)
have been observed in dunfell (they do not happen in master):
https://bugzilla.yoctoproject.org/show_bug.cgi?id=14527
Let's focus on making host-accelerated virtualized graphics work well in master
and upcoming releases (the issue is not seen there).
(From OE-Core rev: 448e0271ed831582bb5833486fc17b131676fb53)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runtime_test.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index 353d411681..1c935da919 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py | |||
@@ -216,6 +216,7 @@ class TestImage(OESelftestTestCase): | |||
216 | Author: Alexander Kanavin <alex.kanavin@gmail.com> | 216 | Author: Alexander Kanavin <alex.kanavin@gmail.com> |
217 | """ | 217 | """ |
218 | import subprocess, os | 218 | import subprocess, os |
219 | self.skipTest("Crashes in mesa observed with this test on dunfell: https://bugzilla.yoctoproject.org/show_bug.cgi?id=14527") | ||
219 | try: | 220 | try: |
220 | content = os.listdir("/dev/dri") | 221 | content = os.listdir("/dev/dri") |
221 | if len([i for i in content if i.startswith('render')]) == 0: | 222 | if len([i for i in content if i.startswith('render')]) == 0: |