diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-05-07 11:49:47 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-07 12:16:00 +0100 |
| commit | 8599c05cb3dc5a517d8634745253cb55b1a9c17a (patch) | |
| tree | 83604ecd5de255e031b6538913806cf56949ebdd /meta/lib | |
| parent | 458849ee6c59f7e78dc21dd6704aeae9043f17d5 (diff) | |
| download | poky-8599c05cb3dc5a517d8634745253cb55b1a9c17a.tar.gz | |
virgl: skip test on Debian 9
Debian 9 has an older version of mesa, where dri drivers do not link
against glapi explicitly, which causes problems when they are loaded
by newer mesa-native:
pokybuild@debian9-ty-2:~$ ldd -d /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so |grep undefined
undefined symbol: _glapi_tls_Dispatch (/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so)
undefined symbol: _glapi_tls_Context (/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so)
compared to Debian 10:
pokybuild@debian10-ty-2:~$ ldd -d /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so|grep undefined
pokybuild@debian10-ty-2:~$
(From OE-Core rev: e604e9d23478a4ea8e5afa63306dd481a34c68d1)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
| -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 60cb2e01a6..09d3de7aea 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py | |||
| @@ -180,6 +180,8 @@ class TestImage(OESelftestTestCase): | |||
| 180 | distro = oe.lsb.distro_identifier() | 180 | distro = oe.lsb.distro_identifier() |
| 181 | if distro and distro == 'debian-8': | 181 | if distro and distro == 'debian-8': |
| 182 | self.skipTest('virgl isn\'t working with Debian 8') | 182 | self.skipTest('virgl isn\'t working with Debian 8') |
| 183 | if distro and distro == 'debian-9': | ||
| 184 | self.skipTest('virgl isn\'t working with Debian 9') | ||
| 183 | if distro and distro == 'centos-7': | 185 | if distro and distro == 'centos-7': |
| 184 | self.skipTest('virgl isn\'t working with Centos 7') | 186 | self.skipTest('virgl isn\'t working with Centos 7') |
| 185 | if distro and distro == 'opensuseleap-15.0': | 187 | if distro and distro == 'opensuseleap-15.0': |
