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

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: Changes from review. 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 or git revision where the metric hadn't regressed yet.
18 'bad_revision': An svn or git revision sometime after the metric had
19 regressed.
20 'metric': The name of the metric to parse out from the results of the
21 performance test.
22
23
24 Sample config:
25
26 config = {
27 'command': './out/Release/performance_ui_tests' +
28 ' --gtest_filter=PageCyclerTest.Intl1File',
29 'good_revision': '179755',
30 'bad_revision': '179782',
31 'metric': 'times/t'
32 }
33
34 """
35
36 config = {
37 'command': '',
38 'good_revision': '',
39 'bad_revision': '',
40 'metric': '',
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698