[oe-commits] [openembedded-core] 24/29: parselogs.py: output correct log location

git at git.openembedded.org git at git.openembedded.org
Tue Aug 14 10:37:13 UTC 2018


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

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

commit df3a2e21648d6b649ebda7e6032afbd63c939f2b
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Mon Aug 13 16:54:37 2018 +0800

    parselogs.py: output correct log location
    
    The log entry in results is altered to remove 'target_logs'. This
    causes wrong log location in output.
    
    e.g.
       AssertionError: 1 != 0 : Log: /path/to/image/1.0-r0/postinstall.log
    
    But when user wants to check the log, the user will find the log is
    not present. The actual log file is /path/to/image/1.0-r0/target_logs/postinstall.log.
    
    So fix to use the correct log location.
    
    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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index 017b550..f6e9820 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -313,7 +313,7 @@ class ParseLogsTest(OERuntimeTestCase):
                 pass
 
             if result is not None:
-                results[log.replace('target_logs/','')] = {}
+                results[log] = {}
                 rez = result.splitlines()
 
                 for xrez in rez:
@@ -323,7 +323,7 @@ class ParseLogsTest(OERuntimeTestCase):
                         grep_output = check_output(cmd).decode('utf-8')
                     except:
                         pass
-                    results[log.replace('target_logs/','')][xrez]=grep_output
+                    results[log][xrez]=grep_output
 
         return results
 

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


More information about the Openembedded-commits mailing list