[oe-commits] [openembedded-core] 12/57: oeqa/runtime/cases/parselogs.py: ignore a message from watchdog

git at git.openembedded.org git at git.openembedded.org
Sat Jun 16 21:35:44 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 6f878a9def8823ea58809f6e07cfe4b5a6e9af64
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Wed Jun 13 15:58:24 2018 +0800

    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.
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/cases/parselogs.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index bfebb38..1cdea58 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -50,6 +50,7 @@ common_errors = [
     "GPT: Use GNU Parted to correct GPT errors",
     "Cannot set xattr user.Librepo.DownloadInProgress",
     "Failed to read /var/lib/nfs/statd/state: Success",
+    "error retry time-out =",
     ]
 
 video_related = [

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list