Fix build break
[chromium-blink-merge.git] / tools / run-bisect-perf-regression.cfg
blob6327360068f9fc7496633787c55bff63f876ae0d
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.
5 """Config file for Run Performance Test Bisect Tool
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>.
12 Changes to this file should never be submitted.
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   'repeat_count': The number of times to repeat the performance test.
23   'max_time_minutes': The script will attempt to run the performance test
24       "repeat_count" times, unless it exceeds "max_time_minutes".
25   'truncate_percent': Discard the highest/lowest % values from performance test.
27 Sample config:
29 config = {
30   'command': './out/Release/performance_ui_tests' +
31       ' --gtest_filter=PageCyclerTest.Intl1File',
32   'good_revision': '179755',
33   'bad_revision': '179782',
34   'metric': 'times/t',
35   'repeat_count': '20',
36   'max_time_minutes': '20',
37   'truncate_percent': '25',
40 On Windows:
41   - If you're calling a python script you will need to add "python" to
42 the command:
44 config = {
45   'command': 'python tools/perf/run_multipage_benchmarks -v --browser=release'\
46       ' kraken tools/perf/page_sets/kraken.json',
47   'good_revision': '185319',
48   'bad_revision': '185364',
49   'metric': 'Total/Total',
50   'repeat_count': '20',
51   'max_time_minutes': '20',
52   'truncate_percent': '25',
55 """
57 config = {
58   'command': '',
59   'good_revision': '',
60   'bad_revision': '',
61   'metric': '',
62   'repeat_count':'',
63   'max_time_minutes': '',
64   'truncate_percent':'',