diff options
author | qyearsley <qyearsley@chromium.org> | 2015-02-17 11:48:55 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-17 19:49:26 +0000 |
commit | 2cb1d3f30a08db3c6880248e5162dcfd9983e101 (patch) | |
tree | acfec6574ebbeb4a4e46bbfbe690e20198d22850 /tools/auto_bisect | |
parent | 56523f7177432c670a0ef448d9651388375f7fda (diff) | |
download | chromium_src-2cb1d3f30a08db3c6880248e5162dcfd9983e101.zip chromium_src-2cb1d3f30a08db3c6880248e5162dcfd9983e101.tar.gz chromium_src-2cb1d3f30a08db3c6880248e5162dcfd9983e101.tar.bz2 |
Add "" as a valid value for --builder_type in bisect_perf_regression.py.
BUG=
Review URL: https://codereview.chromium.org/916543002
Cr-Commit-Position: refs/heads/master@{#316630}
Diffstat (limited to 'tools/auto_bisect')
-rwxr-xr-x | tools/auto_bisect/bisect_perf_regression.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/auto_bisect/bisect_perf_regression.py b/tools/auto_bisect/bisect_perf_regression.py index e4d876f..7799944 100755 --- a/tools/auto_bisect/bisect_perf_regression.py +++ b/tools/auto_bisect/bisect_perf_regression.py @@ -2640,10 +2640,11 @@ class BisectOptions(object): '(default), or "Debug".') group.add_argument('--builder_type', default=fetch_build.PERF_BUILDER, choices=[fetch_build.PERF_BUILDER, - fetch_build.FULL_BUILDER], + fetch_build.FULL_BUILDER, ''], help='Type of builder to get build from. This ' 'determines both the bot that builds and the ' - 'place where archived builds are downloaded from.') + 'place where archived builds are downloaded from. ' + 'For local builds, an empty string can be passed.') @staticmethod def _AddDebugOptionsGroup(parser): |