diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2018-06-13 15:58:24 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-18 11:07:57 +0100 |
commit | a77b860335ff5f990b6e4aa3901465d5088da576 (patch) | |
tree | f5043711e2a2c4c7c935eb3d4cd3695d5704ba0a | |
parent | d200e3196d6646a43be1aa5ec80d299b6524bac0 (diff) | |
download | poky-a77b860335ff5f990b6e4aa3901465d5088da576.tar.gz |
oeqa/runtime/cases/parselogs.py: ignore a message from watchdog
The following message from watchdog is not an error.
"error retry time-out = 60 seconds"
Checking watchdog's source codes, we have:
src/watchdog.c: log_message(LOG_INFO, "error retry time-out = %d seconds", retry_timeout);
It's clear this is an info message, so parselogs should ignore it.
(From OE-Core rev: c90dff78310ab1517555c4df39b3e2d2f59ff06d)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/runtime/cases/parselogs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py index bfebb38f25..1cdea58ef0 100644 --- a/meta/lib/oeqa/runtime/cases/parselogs.py +++ b/meta/lib/oeqa/runtime/cases/parselogs.py | |||
@@ -50,6 +50,7 @@ common_errors = [ | |||
50 | "GPT: Use GNU Parted to correct GPT errors", | 50 | "GPT: Use GNU Parted to correct GPT errors", |
51 | "Cannot set xattr user.Librepo.DownloadInProgress", | 51 | "Cannot set xattr user.Librepo.DownloadInProgress", |
52 | "Failed to read /var/lib/nfs/statd/state: Success", | 52 | "Failed to read /var/lib/nfs/statd/state: Success", |
53 | "error retry time-out =", | ||
53 | ] | 54 | ] |
54 | 55 | ||
55 | video_related = [ | 56 | video_related = [ |