From: Richard Purdie Date: Thu, 22 Sep 2022 10:29:00 +0000 (+0100) Subject: oeqa/runtime/virgl: Update test to match new mesa version X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~2885 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f1a233e75e7202e2959fee3437def388262c57a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/meta-selftest/lib/oeqa/runtime/cases/virgl.py b/meta-selftest/lib/oeqa/runtime/cases/virgl.py index 144decdd6b7..f19cdee9f09 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))