diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2016-05-19 00:28:16 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-19 22:31:34 +0100 |
commit | 85f64c68278f797c6f73f002f63d7f46fe80aef4 (patch) | |
tree | 4098dc7c3eca0a19b0d72cb4def8cae54f79795c /meta/lib | |
parent | 321df88088fbfa657b61b2bae32751f03daec46f (diff) | |
download | openembedded-core-85f64c68278f797c6f73f002f63d7f46fe80aef4.tar.gz openembedded-core-85f64c68278f797c6f73f002f63d7f46fe80aef4.tar.bz2 openembedded-core-85f64c68278f797c6f73f002f63d7f46fe80aef4.zip |
rootfs.py: Exclude lines in _log_check_warn() as well
This will make _log_check_warn() exclude the same lines as
_log_check_error() does.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/rootfs.py | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 63ca22f311..741399adc2 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py @@ -41,11 +41,22 @@ class Rootfs(object): pass def _log_check_warn(self): + # Ignore any lines containing log_check to avoid recursion, and ignore + # lines beginning with a + since sh -x may emit code which isn't + # actually executed, but may contain error messages + excludes = [ 'log_check', r'^\+' ] + if hasattr(self, 'log_check_expected_regexes'): + excludes.extend(self.log_check_expected_regexes) + excludes = [re.compile(x) for x in excludes] r = re.compile('^(warn|Warn|WARNING:)') log_path = self.d.expand("${T}/log.do_rootfs") with open(log_path, 'r') as log: for line in log: - if 'log_check' in line: + for ee in excludes: + m = ee.search(line) + if m: + break + if m: continue m = r.search(line) @@ -58,8 +69,8 @@ class Rootfs(object): # lines beginning with a + since sh -x may emit code which isn't # actually executed, but may contain error messages excludes = [ 'log_check', r'^\+' ] - if hasattr(self, 'log_check_expected_errors_regexes'): - excludes.extend(self.log_check_expected_errors_regexes) + if hasattr(self, 'log_check_expected_regexes'): + excludes.extend(self.log_check_expected_regexes) excludes = [re.compile(x) for x in excludes] r = re.compile(self.log_check_regex) log_path = self.d.expand("${T}/log.do_rootfs") @@ -597,7 +608,7 @@ class DpkgRootfs(DpkgOpkgRootfs): def __init__(self, d, manifest_dir): super(DpkgRootfs, self).__init__(d) self.log_check_regex = '^E:' - self.log_check_expected_errors_regexes = \ + self.log_check_expected_regexes = \ [ "^E: Unmet dependencies." ] |