* [PATCH 0/1] rootfs.py: fix logic error so that warnings are checked
@ 2015-03-12 2:33 Chen Qi
2015-03-12 2:33 ` [PATCH 1/1] " Chen Qi
0 siblings, 1 reply; 2+ messages in thread
From: Chen Qi @ 2015-03-12 2:33 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 99f209a49a4390192b95184ff86bd6f973010111:
layer.conf: bump version as error-report interface changed (2015-03-10 17:44:56 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib ChenQi/rootfs-log-check
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=ChenQi/rootfs-log-check
Chen Qi (1):
rootfs.py: fix logic error so that warnings are checked
meta/lib/oe/rootfs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
1.9.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] rootfs.py: fix logic error so that warnings are checked
2015-03-12 2:33 [PATCH 0/1] rootfs.py: fix logic error so that warnings are checked Chen Qi
@ 2015-03-12 2:33 ` Chen Qi
0 siblings, 0 replies; 2+ messages in thread
From: Chen Qi @ 2015-03-12 2:33 UTC (permalink / raw)
To: openembedded-core
The following commit caused log checking for warnings not working for RPM
rootfs.
rootfs.py: ignore "NOTE:" when catching warnings
The problem is that checking for warnings is always skipped because the
following statement is always true.
if 'log_check' or 'NOTE:' in line:
This patch fixes the above problem so that warning checking in RPM rootfs
can work again.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
meta/lib/oe/rootfs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index dd7aa44..7e8d5d1 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -359,7 +359,7 @@ class RpmRootfs(Rootfs):
log_path = self.d.expand("${T}/log.do_rootfs")
with open(log_path, 'r') as log:
for line in log.read().split('\n'):
- if 'log_check' or 'NOTE:' in line:
+ if 'log_check' in line or 'NOTE:' in line:
continue
m = r.search(line)
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-12 2:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-12 2:33 [PATCH 0/1] rootfs.py: fix logic error so that warnings are checked Chen Qi
2015-03-12 2:33 ` [PATCH 1/1] " Chen Qi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox