mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 09:32:13 +02:00
weston: add a basic runtime test
The test is checking that weston is able to start. (From OE-Core rev: 57700767f90eea8f2b78187c42581aca42d50bbf) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ec7beb650f
commit
ae6ec0b809
@@ -57,7 +57,7 @@ BASICTESTSUITE = "\
|
||||
ping date df ssh scp python perl gi ptest parselogs \
|
||||
logrotate connman systemd oe_syslog pam stap ldd xorg \
|
||||
kernelmodule gcc buildcpio buildlzip buildgalculator \
|
||||
dnf rpm opkg apt"
|
||||
dnf rpm opkg apt weston"
|
||||
|
||||
DEFAULT_TEST_SUITES = "${BASICTESTSUITE}"
|
||||
|
||||
|
||||
19
meta/lib/oeqa/runtime/cases/weston.py
Normal file
19
meta/lib/oeqa/runtime/cases/weston.py
Normal file
@@ -0,0 +1,19 @@
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
#
|
||||
|
||||
from oeqa.runtime.case import OERuntimeTestCase
|
||||
from oeqa.core.decorator.depends import OETestDepends
|
||||
from oeqa.core.decorator.data import skipIfNotFeature
|
||||
from oeqa.runtime.decorator.package import OEHasPackage
|
||||
|
||||
class WestonTest(OERuntimeTestCase):
|
||||
|
||||
@OETestDepends(['ssh.SSHTest.test_ssh'])
|
||||
@OEHasPackage(['weston'])
|
||||
def test_weston_running(self):
|
||||
cmd ='%s | grep [w]eston-desktop-shell' % self.tc.target_cmds['ps']
|
||||
status, output = self.target.run(cmd)
|
||||
msg = ('Weston does not appear to be running %s' %
|
||||
self.target.run(self.tc.target_cmds['ps'])[1])
|
||||
self.assertEqual(status, 0, msg=msg)
|
||||
Reference in New Issue
Block a user