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