diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/oe-build-perf-report | 5 |
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""" | |||
| 540 | help="Tag name (pattern) for finding results") | 540 | help="Tag name (pattern) for finding results") |
| 541 | group.add_argument('--hostname', '-H') | 541 | group.add_argument('--hostname', '-H') |
| 542 | group.add_argument('--branch', '-B', default='master') | 542 | group.add_argument('--branch', '-B', default='master') |
| 543 | group.add_argument('--branch2') | ||
| 543 | group.add_argument('--machine', default='qemux86') | 544 | group.add_argument('--machine', default='qemux86') |
| 544 | group.add_argument('--history-length', default=25, type=int, | 545 | group.add_argument('--history-length', default=25, type=int, |
| 545 | help="Number of tested revisions to plot in html report") | 546 | help="Number of tested revisions to plot in html report") |
| @@ -577,6 +578,10 @@ def main(argv=None): | |||
| 577 | 578 | ||
| 578 | revs = get_test_revs(repo, args.tag_name, hostname=args.hostname, | 579 | revs = get_test_revs(repo, args.tag_name, hostname=args.hostname, |
| 579 | branch=args.branch, machine=args.machine) | 580 | branch=args.branch, machine=args.machine) |
| 581 | if args.branch2: | ||
| 582 | revs = revs + get_test_revs(repo, args.tag_name, hostname=args.hostname, | ||
| 583 | branch=args.branch2, machine=args.machine) | ||
| 584 | |||
| 580 | if len(revs) < 2: | 585 | if len(revs) < 2: |
| 581 | log.error("%d tester revisions found, unable to generate report", | 586 | log.error("%d tester revisions found, unable to generate report", |
| 582 | len(revs)) | 587 | len(revs)) |
