mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 23:02:22 +02:00
parselogs.py: ignore systemd-logind warning message
During upower.servie startup, it will send message "GetAll org.freedesktop.DBus.Properties" to systemd-logind.service. Property RebootToBootLoaderMenu and RebootToBootLoaderEntry will return warning message when env SYSTEMD_REBOOT_TO_BOOT_LOADER_MENU, SYSTEMD_REBOOT_TO_BOOT_LOADER_ENTRY are not set, and also efi boot is not used. The message just warning and not harmful. Since do_testimage run qemu, and use basic bios to boot, test_parselogs failed with error: ----------------------- Central error: Aug 8 02:53:59 qemuarm systemd-logind[383]: Failed to read LoaderConfigTimeoutOneShot variable, ignoring: Operation not supported *********************** So just ignore this error message so that parselogs.py test case does not fail. (From OE-Core rev: 4ecdd44f0d6b1577d6131f65291b96db9cd4a951) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e490bc8262
commit
a1608592c8
@@ -67,6 +67,8 @@ common_errors = [
|
||||
"was skipped because of a failed condition check",
|
||||
"was skipped because all trigger condition checks failed",
|
||||
"xf86OpenConsole: Switching VT failed",
|
||||
"Failed to read LoaderConfigTimeoutOneShot variable, ignoring: Operation not supported",
|
||||
"Failed to read LoaderEntryOneShot variable, ignoring: Operation not supported",
|
||||
]
|
||||
|
||||
video_related = [
|
||||
|
||||
Reference in New Issue
Block a user