aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-08 13:38:22 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-03-25 23:12:08 +0000
commitc6351550a9bff3e0b0e3d3c0baefed4041c47b33 (patch)
tree6c7c936a4b8d91cbd84ed2e737f852b410442462
parente95277e859adb3e3ca26c8c618954ae52ec3bff4 (diff)
downloadopenembedded-core-contrib-c6351550a9bff3e0b0e3d3c0baefed4041c47b33.tar.gz
oe-build-perf-report: Allow commits from different branches
The code won't currently allow comparisions of two commits on different branches even if the commits are specified by their hashes. This updates the code to search two branches for any relavent commits, hence allowing comparisions to be made. A particularly useful case is master vs. master-next for example. (From OE-Core rev: 2d835bb1570c515ae501442f3ce19fae8e249b27) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/oe-build-perf-report5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report
index 38c0ee885d..2d64e301d2 100755
--- a/scripts/oe-build-perf-report
+++ b/scripts/oe-build-perf-report
@@ -540,6 +540,7 @@ Examine build performance test results from a Git repository"""
help="Tag name (pattern) for finding results")
group.add_argument('--hostname', '-H')
group.add_argument('--branch', '-B', default='master')
+ group.add_argument('--branch2')
group.add_argument('--machine', default='qemux86')
group.add_argument('--history-length', default=25, type=int,
help="Number of tested revisions to plot in html report")
@@ -577,6 +578,10 @@ def main(argv=None):
revs = get_test_revs(repo, args.tag_name, hostname=args.hostname,
branch=args.branch, machine=args.machine)
+ if args.branch2:
+ revs = revs + get_test_revs(repo, args.tag_name, hostname=args.hostname,
+ branch=args.branch2, machine=args.machine)
+
if len(revs) < 2:
log.error("%d tester revisions found, unable to generate report",
len(revs))