From: Ross Burton Date: Wed, 22 Jun 2016 12:02:53 +0000 (+0100) Subject: oeqa/runtime/syslog: remove redundant skipUnlessPassed X-Git-Tag: uninative-1.3~459 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=9856fe02bf30cd9e834a7d324e357070f4d7735f;p=openembedded-core.git 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 --- 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])