diff options
author | simonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-16 16:39:34 +0000 |
---|---|---|
committer | simonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-16 16:39:34 +0000 |
commit | 3bcde2fa05f6c960de2142ba39ed0fdfbaabf58e (patch) | |
tree | 46371e2e6fd6ec3368854afd171e321ce9cf987c /tools/run-bisect-perf-regression.py | |
parent | ff2fe10e641055fc2b668dc9d29b99ef9c4af479 (diff) | |
download | chromium_src-3bcde2fa05f6c960de2142ba39ed0fdfbaabf58e.zip chromium_src-3bcde2fa05f6c960de2142ba39ed0fdfbaabf58e.tar.gz chromium_src-3bcde2fa05f6c960de2142ba39ed0fdfbaabf58e.tar.bz2 |
Refactored options parsing into BisectOptions. This makes it easier for the perf try bot to pass a set of options to BisectPerformanceMetrics, since it can just create a BisectOptions and set the few values it's interested in.
BUG=
NOTRY=true
Review URL: https://codereview.chromium.org/27176003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228931 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/run-bisect-perf-regression.py')
-rwxr-xr-x | tools/run-bisect-perf-regression.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run-bisect-perf-regression.py b/tools/run-bisect-perf-regression.py index c3332cb..0181ef7 100755 --- a/tools/run-bisect-perf-regression.py +++ b/tools/run-bisect-perf-regression.py @@ -79,7 +79,7 @@ def RunBisectionScript(config, working_directory, path_to_file, path_to_goma): cmd.extend(['-t', config['truncate_percent']]) if config['max_time_minutes']: - cmd.extend(['--repeat_test_max_time', config['max_time_minutes']]) + cmd.extend(['--max_time_minutes', config['max_time_minutes']]) cmd.extend(['--build_preference', 'ninja']) |