summaryrefslogtreecommitdiffstats
path: root/tools/auto_bisect
diff options
context:
space:
mode:
authorqyearsley <qyearsley@chromium.org>2015-02-17 11:48:55 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-17 19:49:26 +0000
commit2cb1d3f30a08db3c6880248e5162dcfd9983e101 (patch)
treeacfec6574ebbeb4a4e46bbfbe690e20198d22850 /tools/auto_bisect
parent56523f7177432c670a0ef448d9651388375f7fda (diff)
downloadchromium_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-xtools/auto_bisect/bisect_perf_regression.py5
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):