summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-11-09 09:31:31 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-11-11 10:08:12 +0000
commit21c16589452da36fc234295d19d3e048141d1569 (patch)
tree1fc8dafbb2da64f579f5098338d37d7d0f063b53 /meta/lib/oeqa/runtime
parentfb8b3eeed9946e8991a9c745809e8d1415825ad2 (diff)
downloadpoky-21c16589452da36fc234295d19d3e048141d1569.tar.gz
wayland-utils: introduce a recipe
wayland-utils contains wayland-info utility which deprecates and replaces weston-info from weston. (From OE-Core rev: bb8fa9950e716fdcee818a38dc4df3a19b1f3c2f) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/cases/weston.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/runtime/cases/weston.py b/meta/lib/oeqa/runtime/cases/weston.py
index d3fbf8ba92..a1c7183213 100644
--- a/meta/lib/oeqa/runtime/cases/weston.py
+++ b/meta/lib/oeqa/runtime/cases/weston.py
@@ -51,10 +51,10 @@ class WestonTest(OERuntimeTestCase):
51 51
52 return new_wl_processes, try_cnt 52 return new_wl_processes, try_cnt
53 53
54 @OEHasPackage(['weston']) 54 @OEHasPackage(['wayland-utils'])
55 def test_weston_info(self): 55 def test_wayland_info(self):
56 status, output = self.target.run(self.get_weston_command('weston-info')) 56 status, output = self.target.run(self.get_weston_command('wayland-info'))
57 self.assertEqual(status, 0, msg='weston-info error: %s' % output) 57 self.assertEqual(status, 0, msg='wayland-info error: %s' % output)
58 58
59 @OEHasPackage(['weston']) 59 @OEHasPackage(['weston'])
60 def test_weston_can_initialize_new_wayland_compositor(self): 60 def test_weston_can_initialize_new_wayland_compositor(self):