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
12 Changes to this file should never be submitted.
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
20 'metric': The name of the metric to parse out from the results of the
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.
30 'command': './out/Release/performance_ui_tests' +
31 ' --gtest_filter=PageCyclerTest.Intl1File',
32 'good_revision': '179755',
33 'bad_revision': '179782',
36 'max_time_minutes': '20',
37 'truncate_percent': '25',
41 - If you're calling a python script you will need to add "python" to
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',
51 'max_time_minutes': '20',
52 'truncate_percent': '25',
63 'max_time_minutes': '',
64 'truncate_percent':'',