diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-22 11:29:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-22 21:39:21 +0100 |
commit | f18a7dee06bdca3230829d1bb8362ab065090dd8 (patch) | |
tree | 433d4fed168b3bb299419bd2d5df70fcadc0239f /meta-selftest | |
parent | 72d141568694ac4c2f9ac0919a4c791754fdb4d2 (diff) | |
download | poky-f18a7dee06bdca3230829d1bb8362ab065090dd8.tar.gz |
oeqa/runtime/virgl: Update test to match new mesa version
The output string changed slightly in new mesa versions so update
the test to match.
(From OE-Core rev: 2f1a233e75e7202e2959fee3437def388262c57a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/lib/oeqa/runtime/cases/virgl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-selftest/lib/oeqa/runtime/cases/virgl.py b/meta-selftest/lib/oeqa/runtime/cases/virgl.py index 144decdd6b..f19cdee9f0 100644 --- a/meta-selftest/lib/oeqa/runtime/cases/virgl.py +++ b/meta-selftest/lib/oeqa/runtime/cases/virgl.py | |||
@@ -15,4 +15,4 @@ class VirglTest(OERuntimeTestCase): | |||
15 | def test_kmscube(self): | 15 | def test_kmscube(self): |
16 | status, output = self.target.run('kmscube') | 16 | status, output = self.target.run('kmscube') |
17 | self.assertEqual(status, 0, "kmscube exited with non-zero status %d and output:\n%s" %(status, output)) | 17 | self.assertEqual(status, 0, "kmscube exited with non-zero status %d and output:\n%s" %(status, output)) |
18 | self.assertIn('renderer: "virgl"', output, "kmscube does not seem to use virgl:\n%s" %(output)) | 18 | self.assertIn('renderer: "virgl', output, "kmscube does not seem to use virgl:\n%s" %(output)) |