diff options
author | 2019-02-11 17:45:25 +0000 | |
---|---|---|
committer | 2019-03-26 15:38:28 +0000 | |
commit | 14e86a29689b06384e7a6d91d04d558c7d231f6e (patch) | |
tree | 930658607e9c4ef5b290e8898de3b209a1c6d097 | |
parent | b25e586458d94bfaaa6c7baffa8480153dfdd70d (diff) | |
download | poky-14e86a29689b06384e7a6d91d04d558c7d231f6e.tar.gz poky-14e86a29689b06384e7a6d91d04d558c7d231f6e.tar.bz2 poky-14e86a29689b06384e7a6d91d04d558c7d231f6e.zip |
oe-build-perf-report: Fix missing buildstats comparisions
Integers were being compared to strings leading to missing buildstats comparision
data. Fix this.
(From OE-Core rev: 2dbbf598192ae2b3aa488df042f56aa6c6634a00)
(From OE-Core rev: e8651b2e01db0777b23a0359f9413c3b27bae77f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/oe-build-perf-report | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report index f17d932716..1e0b55100a 100755 --- a/scripts/oe-build-perf-report +++ b/scripts/oe-build-perf-report @@ -425,8 +425,8 @@ def print_html_report(data, id_comp, buildstats): # Compare buildstats bs_key = test + '.' + meas - rev = metadata['commit_num']['value'] - comp_rev = metadata['commit_num']['value_old'] + rev = str(metadata['commit_num']['value']) + comp_rev = str(metadata['commit_num']['value_old']) if (rev in buildstats and bs_key in buildstats[rev] and comp_rev in buildstats and bs_key in buildstats[comp_rev]): new_meas['buildstats'] = BSSummary(buildstats[comp_rev][bs_key], |