diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2024-02-09 16:18:47 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-02-09 15:55:58 +0000 |
commit | 6a9aab565412830fad094a9083182407035ea2ee (patch) | |
tree | 511cecd514aec4245d079ac5122117747e3d4128 /meta/lib/oeqa/runtime | |
parent | e834e8ee91b844bce1c0723ea0e0f94691d44074 (diff) | |
download | poky-6a9aab565412830fad094a9083182407035ea2ee.tar.gz |
oeqa/runtime/cases: fix typo in information message
(From OE-Core rev: 901ff496b97119add792912fbb2f1efb1152e7c2)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.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/oe_syslog.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/cases/skeletoninit.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/oe_syslog.py b/meta/lib/oeqa/runtime/cases/oe_syslog.py index cad0c88d26..adb876160d 100644 --- a/meta/lib/oeqa/runtime/cases/oe_syslog.py +++ b/meta/lib/oeqa/runtime/cases/oe_syslog.py | |||
@@ -116,7 +116,7 @@ class SyslogTestConfig(OERuntimeTestCase): | |||
116 | @OETestDepends(['oe_syslog.SyslogTestConfig.test_syslog_logger']) | 116 | @OETestDepends(['oe_syslog.SyslogTestConfig.test_syslog_logger']) |
117 | @OEHasPackage(["busybox-syslog"]) | 117 | @OEHasPackage(["busybox-syslog"]) |
118 | @skipIfDataVar('VIRTUAL-RUNTIME_init_manager', 'systemd', | 118 | @skipIfDataVar('VIRTUAL-RUNTIME_init_manager', 'systemd', |
119 | 'Not appropiate for systemd image') | 119 | 'Not appropriate for systemd image') |
120 | def test_syslog_startup_config(self): | 120 | def test_syslog_startup_config(self): |
121 | cmd = 'echo "LOGFILE=/var/log/test" >> /etc/syslog-startup.conf' | 121 | cmd = 'echo "LOGFILE=/var/log/test" >> /etc/syslog-startup.conf' |
122 | self.target.run(cmd) | 122 | self.target.run(cmd) |
diff --git a/meta/lib/oeqa/runtime/cases/skeletoninit.py b/meta/lib/oeqa/runtime/cases/skeletoninit.py index 75951beda9..d0fdcbded9 100644 --- a/meta/lib/oeqa/runtime/cases/skeletoninit.py +++ b/meta/lib/oeqa/runtime/cases/skeletoninit.py | |||
@@ -17,7 +17,7 @@ class SkeletonBasicTest(OERuntimeTestCase): | |||
17 | @OETestDepends(['ssh.SSHTest.test_ssh']) | 17 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
18 | @OEHasPackage(['service']) | 18 | @OEHasPackage(['service']) |
19 | @skipIfDataVar('VIRTUAL-RUNTIME_init_manager', 'systemd', | 19 | @skipIfDataVar('VIRTUAL-RUNTIME_init_manager', 'systemd', |
20 | 'Not appropiate for systemd image') | 20 | 'Not appropriate for systemd image') |
21 | def test_skeleton_availability(self): | 21 | def test_skeleton_availability(self): |
22 | status, output = self.target.run('ls /etc/init.d/skeleton') | 22 | status, output = self.target.run('ls /etc/init.d/skeleton') |
23 | msg = 'skeleton init script not found. Output:\n%s' % output | 23 | msg = 'skeleton init script not found. Output:\n%s' % output |