diff options
author | Lucian Musat <george.l.musat@intel.com> | 2015-07-20 17:51:10 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-23 08:48:38 +0100 |
commit | 83f19d45655226c319d7cb0244dc4f8a0aae9a93 (patch) | |
tree | d54aaa3c77116a40187cb07bfda963a73574862c /meta/lib/oeqa/runtime | |
parent | cc2202b8b45ccdce16256cac3780aa7a546a882f (diff) | |
download | poky-83f19d45655226c319d7cb0244dc4f8a0aae9a93.tar.gz |
oeqa/syslog: Removed a pointless testcase and added skip for another.
The testcase syslog --help was rather useless and also causing problems
on images where syslog was non-busybox, like LSB images so I removed it.
Added a skip condition for TC 202 for the same reason. If syslog is
non-busybox then the test skips.
(From OE-Core rev: 3947ec61cdc2977db5ce6042863b31f99d47a12a)
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r-- | meta/lib/oeqa/runtime/syslog.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/meta/lib/oeqa/runtime/syslog.py b/meta/lib/oeqa/runtime/syslog.py index 31cd6b0139..dbaf8c6253 100644 --- a/meta/lib/oeqa/runtime/syslog.py +++ b/meta/lib/oeqa/runtime/syslog.py | |||
@@ -8,19 +8,12 @@ def setUpModule(): | |||
8 | 8 | ||
9 | class SyslogTest(oeRuntimeTest): | 9 | class SyslogTest(oeRuntimeTest): |
10 | 10 | ||
11 | @testcase(1148) | ||
12 | @skipUnlessPassed("test_ssh") | ||
13 | def test_syslog_help(self): | ||
14 | (status,output) = self.target.run('/sbin/syslogd --help') | ||
15 | self.assertEqual(status, 0, msg="status and output: %s and %s" % (status,output)) | ||
16 | |||
17 | @testcase(201) | 11 | @testcase(201) |
18 | @skipUnlessPassed("test_syslog_help") | 12 | @skipUnlessPassed("test_syslog_help") |
19 | def test_syslog_running(self): | 13 | def test_syslog_running(self): |
20 | (status,output) = self.target.run(oeRuntimeTest.pscmd + ' | grep -i [s]yslogd') | 14 | (status,output) = self.target.run(oeRuntimeTest.pscmd + ' | grep -i [s]yslogd') |
21 | self.assertEqual(status, 0, msg="no syslogd process, ps output: %s" % self.target.run(oeRuntimeTest.pscmd)[1]) | 15 | self.assertEqual(status, 0, msg="no syslogd process, ps output: %s" % self.target.run(oeRuntimeTest.pscmd)[1]) |
22 | 16 | ||
23 | |||
24 | class SyslogTestConfig(oeRuntimeTest): | 17 | class SyslogTestConfig(oeRuntimeTest): |
25 | 18 | ||
26 | @testcase(1149) | 19 | @testcase(1149) |
@@ -41,6 +34,7 @@ class SyslogTestConfig(oeRuntimeTest): | |||
41 | @skipUnlessPassed("test_syslog_restart") | 34 | @skipUnlessPassed("test_syslog_restart") |
42 | @skipUnlessPassed("test_syslog_logger") | 35 | @skipUnlessPassed("test_syslog_logger") |
43 | @unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager", False), "Not appropiate for systemd image") | 36 | @unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager", False), "Not appropiate for systemd image") |
37 | @unittest.skipIf(oeRuntimeTest.hasPackage("sysklogd") or not oeRuntimeTest.hasPackage("busybox"), "Non-busybox syslog") | ||
44 | def test_syslog_startup_config(self): | 38 | def test_syslog_startup_config(self): |
45 | self.target.run('echo "LOGFILE=/var/log/test" >> /etc/syslog-startup.conf') | 39 | self.target.run('echo "LOGFILE=/var/log/test" >> /etc/syslog-startup.conf') |
46 | (status,output) = self.target.run('/etc/init.d/syslog restart') | 40 | (status,output) = self.target.run('/etc/init.d/syslog restart') |