diff options
| author | Steve Sakoman <steve@sakoman.com> | 2023-11-14 06:33:28 -1000 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2023-11-17 06:00:32 -1000 |
| commit | 455398490462728c44b9951af96c1aa61a5679e2 (patch) | |
| tree | 2710fcd43e917d2c363ddcc712431cea57c5fb2e | |
| parent | 1149fde2f4228e193796541b2e091a72a9d47058 (diff) | |
| download | poky-455398490462728c44b9951af96c1aa61a5679e2.tar.gz | |
selftest: skip virgl test on all fedora
This test will fail any time the host has libdrm > 2.4.107
(From OE-Core rev: ff7dbcc0206203e2ece68ca91a37050a4bc822a2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/runtime_test.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index d80f85dba2..cc4190c1d6 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py | |||
| @@ -185,14 +185,8 @@ class TestImage(OESelftestTestCase): | |||
| 185 | self.skipTest('virgl isn\'t working with Centos 7') | 185 | self.skipTest('virgl isn\'t working with Centos 7') |
| 186 | if distro and distro == 'centos-8': | 186 | if distro and distro == 'centos-8': |
| 187 | self.skipTest('virgl isn\'t working with Centos 8') | 187 | self.skipTest('virgl isn\'t working with Centos 8') |
| 188 | if distro and distro == 'fedora-34': | 188 | if distro and distro.startswith('fedora'): |
| 189 | self.skipTest('virgl isn\'t working with Fedora 34') | 189 | self.skipTest('virgl isn\'t working with Fedora') |
| 190 | if distro and distro == 'fedora-35': | ||
| 191 | self.skipTest('virgl isn\'t working with Fedora 35') | ||
| 192 | if distro and distro == 'fedora-36': | ||
| 193 | self.skipTest('virgl isn\'t working with Fedora 36') | ||
| 194 | if distro and distro == 'fedora-37': | ||
| 195 | self.skipTest('virgl isn\'t working with Fedora 37') | ||
| 196 | if distro and distro == 'opensuseleap-15.0': | 190 | if distro and distro == 'opensuseleap-15.0': |
| 197 | self.skipTest('virgl isn\'t working with Opensuse 15.0') | 191 | self.skipTest('virgl isn\'t working with Opensuse 15.0') |
| 198 | if distro and distro == 'ubuntu-22.04': | 192 | if distro and distro == 'ubuntu-22.04': |
