diff options
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/buildhistory_analysis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py index a5da7d9944..7dec6c1342 100644 --- a/meta/lib/oe/buildhistory_analysis.py +++ b/meta/lib/oe/buildhistory_analysis.py | |||
@@ -308,7 +308,7 @@ def compare_dict_blobs(path, ablob, bblob, report_all): | |||
308 | percentchg = ((bval - aval) / float(aval)) * 100 | 308 | percentchg = ((bval - aval) / float(aval)) * 100 |
309 | else: | 309 | else: |
310 | percentchg = 100 | 310 | percentchg = 100 |
311 | if percentchg < monitor_numeric_threshold: | 311 | if abs(percentchg) < monitor_numeric_threshold: |
312 | continue | 312 | continue |
313 | elif (not report_all) and key in list_fields: | 313 | elif (not report_all) and key in list_fields: |
314 | if key == "FILELIST" and path.endswith("-dbg") and bstr.strip() != '': | 314 | if key == "FILELIST" and path.endswith("-dbg") and bstr.strip() != '': |