summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/oe_syslog.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-26 14:04:31 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-27 12:20:36 +0100
commit2e91163d5947764c1b43655e90bde5e1d3b2c1b7 (patch)
tree229afa7450fa6a1e06a094a4e8eec4244f3264a3 /meta/lib/oeqa/runtime/cases/oe_syslog.py
parentabfe4b3d5cd8d05c8ab99240e30ac281725fac14 (diff)
downloadpoky-2e91163d5947764c1b43655e90bde5e1d3b2c1b7.tar.gz
oeqa/runtime/oesyslog: systemd syslog restart doesn't change pid
The systemd-journald process doesn't restart/change the way syslog does, don't test/error in this case. (From OE-Core rev: be48190dca0643df4881624d29c2eae453395919) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/oe_syslog.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/oe_syslog.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/oe_syslog.py b/meta/lib/oeqa/runtime/cases/oe_syslog.py
index f987dccfb1..449df233d1 100644
--- a/meta/lib/oeqa/runtime/cases/oe_syslog.py
+++ b/meta/lib/oeqa/runtime/cases/oe_syslog.py
@@ -40,7 +40,7 @@ class SyslogTestConfig(OERuntimeTestCase):
40 return 0, pids 40 return 0, pids
41 41
42 42
43 def restart_sanity(self, names, restart_cmd): 43 def restart_sanity(self, names, restart_cmd, pidchange=True):
44 status, original_pids = self.verify_running(names) 44 status, original_pids = self.verify_running(names)
45 if status: 45 if status:
46 return False 46 return False
@@ -50,6 +50,9 @@ class SyslogTestConfig(OERuntimeTestCase):
50 msg = ('Could not restart %s service. Status and output: %s and %s' % (names, status, output)) 50 msg = ('Could not restart %s service. Status and output: %s and %s' % (names, status, output))
51 self.assertEqual(status, 0, msg) 51 self.assertEqual(status, 0, msg)
52 52
53 if not pidchange:
54 return True
55
53 # Always check for an error, most likely a race between shutting down and starting up 56 # Always check for an error, most likely a race between shutting down and starting up
54 timeout = time.time() + 30 57 timeout = time.time() + 30
55 58
@@ -95,7 +98,7 @@ class SyslogTestConfig(OERuntimeTestCase):
95 98
96 @OETestDepends(['oe_syslog.SyslogTest.test_syslog_running']) 99 @OETestDepends(['oe_syslog.SyslogTest.test_syslog_running'])
97 def test_syslog_restart(self): 100 def test_syslog_restart(self):
98 if self.restart_sanity(['systemd-journald'], 'systemctl restart syslog.service'): 101 if self.restart_sanity(['systemd-journald'], 'systemctl restart syslog.service', pidchange=False):
99 pass 102 pass
100 elif self.restart_sanity(['rsyslogd'], '/etc/init.d/rsyslog restart'): 103 elif self.restart_sanity(['rsyslogd'], '/etc/init.d/rsyslog restart'):
101 pass 104 pass