[oe-commits] [openembedded-core] 06/06: oeqa/parselogs: grep for exact errors list keywords

git at git.openembedded.org git at git.openembedded.org
Tue Aug 13 12:46:36 UTC 2019


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 e75dceb843f7f176de2ef35e6c67f174f8bf056e
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Sun Aug 11 18:59:45 2019 -0700

    oeqa/parselogs: grep for exact errors list keywords
    
    Given grep expression looks for error strings regardless of the
    semantics and this ends up it flagging things like
    
    ***********************
    Log: /mnt/a/yoe/build/tmp/work/raspberrypi3_64-yoe-linux-musl/yoe-qt5-wayland-image/1.0-r0/target_logs/weston.log
    -----------------------
    Central error:                EGL_KHR_create_context_no_error EGL_KHR_fence_sync
    ***********************
    
    here EGL_KHR_create_context_no_error is an API, therefore the check
    should be tightened a bit so explicitly look for error words so such
    false positives don't show up
    
    This helps in fixing wrong matches e.g. on rpi3 dmesg have strings like
    above
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/cases/parselogs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index eb2ebb1..19c9c52 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -292,7 +292,7 @@ class ParseLogsTest(OERuntimeTestCase):
         grepcmd = 'grep '
         grepcmd += '-Ei "'
         for error in errors:
-            grepcmd += error + '|'
+            grepcmd += '\<' + error + '\>' + '|'
         grepcmd = grepcmd[:-1]
         grepcmd += '" ' + str(log) + " | grep -Eiv \'"
 

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


More information about the Openembedded-commits mailing list