Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(435)

Side by Side Diff: tools/auto_bisect/bisect.cfg

Issue 564663002: Move bisect-perf-regression.py into auto_bisect directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Upload a config for doing a test run. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Config file read by run-bisect-perf-regression.py. 5 """Config file read by run-bisect-perf-regression.py.
6 6
7 This script is intended for use by anyone that wants to run a remote bisection 7 This script is intended for use by anyone that wants to run a remote bisection
8 on a range of revisions to look for a performance regression. Modify the config 8 on a range of revisions to look for a performance regression. Modify the config
9 below and add the revision range, performance command, and metric. You can then 9 below and add the revision range, performance command, and metric. You can then
10 run a git try <bot>. 10 run a git try <bot>.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 config = { 52 config = {
53 'command': ('./tools/perf/run_measurement -v --browser=cros-chrome-guest ' 53 'command': ('./tools/perf/run_measurement -v --browser=cros-chrome-guest '
54 'dromaeo.jslibstylejquery') 54 'dromaeo.jslibstylejquery')
55 'good_revision': '4086.0.0', 55 'good_revision': '4086.0.0',
56 'bad_revision': '4087.0.0', 56 'bad_revision': '4087.0.0',
57 'metric': 'jslib/jslib', 57 'metric': 'jslib/jslib',
58 } 58 }
59 """ 59 """
60 60
61 config = { 61 config = {
62 'command': '', 62 'command': 'tools/perf/run_benchmark -v --browser=release jetstream',
63 'good_revision': '', 63 'good_revision': '291857',
64 'bad_revision': '', 64 'bad_revision': '291858',
65 'metric': '', 65 'metric': 'Score/Score',
66 'repeat_count': '', 66 'repeat_count': '10',
67 'max_time_minutes': '', 67 'max_time_minutes': '20',
68 'truncate_percent': '', 68 'truncate_percent': '25',
69 'bug_id': '407639',
70 'gs_bucket': 'chrome-perf',
71 'builder_host': 'master4.golo.chromium.org',
72 'builder_port': '8341',
qyearsley 2014/09/11 16:38:38 This shouldn't be submitted, it's only just for te
69 } 73 }
70 74
71 # Workaround git try issue, see crbug.com/257689 75 # Workaround git try issue, see crbug.com/257689
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698