From 9856fe02bf30cd9e834a7d324e357070f4d7735f Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 22 Jun 2016 13:02:53 +0100 Subject: oeqa/runtime/syslog: remove redundant skipUnlessPassed The test test_syslog_help doesn't exist, so skipping unless it passed just produced a warning. Signed-off-by: Ross Burton --- meta/lib/oeqa/runtime/syslog.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/lib/oeqa/runtime/syslog.py b/meta/lib/oeqa/runtime/syslog.py index 2601dd9ea8..f7421ec8c5 100644 --- a/meta/lib/oeqa/runtime/syslog.py +++ b/meta/lib/oeqa/runtime/syslog.py @@ -9,7 +9,6 @@ def setUpModule(): class SyslogTest(oeRuntimeTest): @testcase(201) - @skipUnlessPassed("test_syslog_help") def test_syslog_running(self): (status,output) = self.target.run(oeRuntimeTest.pscmd + ' | grep -i [s]yslogd') self.assertEqual(status, 0, msg="no syslogd process, ps output: %s" % self.target.run(oeRuntimeTest.pscmd)[1]) -- cgit 1.2.3-korg