diff options
author | Changqing Li <changqing.li@windriver.com> | 2020-04-08 15:04:48 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-24 14:10:07 +0100 |
commit | b2341e6f97b8b0b04c6f7ec86bad8d86687a1b1a (patch) | |
tree | 4593fe3e31d70a2e7ede2b0457299141c01970d8 /meta/lib | |
parent | 85c30182b1669a0828af630856600f066303e2a9 (diff) | |
download | poky-b2341e6f97b8b0b04c6f7ec86bad8d86687a1b1a.tar.gz |
parselogs.py: ignore pulseaudio startup warning messages
If set default syslog to rsyslog, we can see below messages
in user.log,
[pulseaudio] authkey.c: Failed to open cookie file
[pulseaudio] authkey.c: Failed to load authentication key
They are only warnings when cookie file is not found. And
PulseAudio will create it if it doesn't exist.
refer:
https://wiki.archlinux.org/index.php/PulseAudio/Configuration
https://lists.freedesktop.org/archives/pulseaudio-discuss/2014-December/022719.html
(From OE-Core rev: f23c375f3d9e9fc15332347123ddb4a7fb7d3745)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/parselogs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py index f94387c8bc..a1791b5cca 100644 --- a/meta/lib/oeqa/runtime/cases/parselogs.py +++ b/meta/lib/oeqa/runtime/cases/parselogs.py | |||
@@ -58,7 +58,9 @@ common_errors = [ | |||
58 | "Failed to rename network interface", | 58 | "Failed to rename network interface", |
59 | "Failed to process device, ignoring: Device or resource busy", | 59 | "Failed to process device, ignoring: Device or resource busy", |
60 | "Cannot find a map file", | 60 | "Cannot find a map file", |
61 | "[rdrand]: Initialization Failed" | 61 | "[rdrand]: Initialization Failed", |
62 | "[pulseaudio] authkey.c: Failed to open cookie file", | ||
63 | "[pulseaudio] authkey.c: Failed to load authentication key", | ||
62 | ] | 64 | ] |
63 | 65 | ||
64 | video_related = [ | 66 | video_related = [ |