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

Side by Side Diff: build/util/run-bisect-perf-regression.cfg

Issue 12261026: Added separate checkout and config file generation to bisect script (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Misc fixes and changes. Created 7 years, 10 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
(Empty)
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
3 # found in the LICENSE file.
4
5 """Config file for Run Performance Test Bisect Tool
6
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
9 below and add the revision range, performance command, and metric. You can then
10 run a git try <bot>.
11
12 Changes to this file should never be submitted.
13
14 Args:
15 'command': This is the full command line to pass to the
16 bisect-perf-regression.py script in order to execute the test.
17 'good_revision': An svn revision where the metric hadn't regressed yet.
18 'bad_revision': An svn revision sometime after the metric had regressed.
tonyg 2013/02/14 23:30:06 Aren't these svn or git?
shatch 2013/02/14 23:59:46 Done.
19 'metric': The name of the metric to parse out from the results of the
20 performance test.
21
22
23 Sample config:
24
25 config = {
26 'command': './out/Release/performance_ui_tests' +
27 ' --gtest_filter=PageCyclerTest.Intl1File',
28 'good_revision': '179755',
29 'bad_revision': '179782',
30 'metric': 'times/t'
31 }
32
33 """
34
35 config = {
36 'command': '',
37 'good_revision': '',
38 'bad_revision': '',
39 'metric': '',
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698