From 2f1a233e75e7202e2959fee3437def388262c57a Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 22 Sep 2022 11:29:00 +0100 Subject: 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. Signed-off-by: Richard Purdie --- meta-selftest/lib/oeqa/runtime/cases/virgl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-selftest/lib/oeqa') 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): def test_kmscube(self): status, output = self.target.run('kmscube') self.assertEqual(status, 0, "kmscube exited with non-zero status %d and output:\n%s" %(status, output)) - self.assertIn('renderer: "virgl"', output, "kmscube does not seem to use virgl:\n%s" %(output)) + self.assertIn('renderer: "virgl', output, "kmscube does not seem to use virgl:\n%s" %(output)) -- cgit 1.2.3-korg