diff options
Diffstat (limited to 'scripts/oe-build-perf-test')
-rwxr-xr-x | scripts/oe-build-perf-test | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/oe-build-perf-test b/scripts/oe-build-perf-test index d6ea5ce685..390e4c9519 100755 --- a/scripts/oe-build-perf-test +++ b/scripts/oe-build-perf-test | |||
@@ -112,6 +112,9 @@ def parse_args(argv): | |||
112 | parser.add_argument('--commit-results', metavar='GIT_DIR', | 112 | parser.add_argument('--commit-results', metavar='GIT_DIR', |
113 | type=os.path.abspath, | 113 | type=os.path.abspath, |
114 | help="Commit result data to a (local) git repository") | 114 | help="Commit result data to a (local) git repository") |
115 | parser.add_argument('--commit-results-branch', metavar='BRANCH', | ||
116 | default="{git_branch}", | ||
117 | help="Commit results to branch BRANCH.") | ||
115 | 118 | ||
116 | return parser.parse_args(argv) | 119 | return parser.parse_args(argv) |
117 | 120 | ||
@@ -162,7 +165,8 @@ def main(argv=None): | |||
162 | if args.globalres_file: | 165 | if args.globalres_file: |
163 | result.update_globalres_file(args.globalres_file) | 166 | result.update_globalres_file(args.globalres_file) |
164 | if args.commit_results: | 167 | if args.commit_results: |
165 | result.git_commit_results(args.commit_results) | 168 | result.git_commit_results(args.commit_results, |
169 | args.commit_results_branch) | ||
166 | return 0 | 170 | return 0 |
167 | 171 | ||
168 | return 1 | 172 | return 1 |