mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 18:53:13 +01:00
oeqa/runtime: make minidebuginfo test work with coreutils
The test was failing with core-image-full-cmdline which uses sleep from coreutils instead of sleep from busybox. (From OE-Core rev: 8497edf0c56da34ea7b7509b8fcd46fcba2fd0e3) Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b6b66ca07b
commit
32ce07d3f5
@@ -157,7 +157,8 @@ class SystemdServiceTests(SystemdTest):
|
||||
|
||||
(status, output) = self.target.run('coredumpctl info')
|
||||
self.assertEqual(status, 0, msg='MiniDebugInfo Test failed: %s' % output)
|
||||
self.assertEqual('sleep_for_duration (busybox.nosuid' in output, True, msg='Call stack is missing minidebuginfo symbols (functions shown as "n/a"): %s' % output)
|
||||
self.assertEqual('sleep_for_duration (busybox.nosuid' in output or 'xnanosleep (sleep.coreutils' in output,
|
||||
True, msg='Call stack is missing minidebuginfo symbols (functions shown as "n/a"): %s' % output)
|
||||
|
||||
class SystemdJournalTests(SystemdTest):
|
||||
|
||||
|
||||
Reference in New Issue
Block a user