OLD | NEW |
---|---|
(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 } | |
OLD | NEW |