| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Config file for Run Performance Test Bisect Tool | 5 """Config file for Run Performance Test Bisect Tool |
| 6 | 6 |
| 7 This script is intended for use by anyone that wants to run a remote bisection | 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 | 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 | 9 below and add the revision range, performance command, and metric. You can then |
| 10 run a git try <bot>. | 10 run a git try <bot>. |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 'bad_revision': '4087.0.0', | 69 'bad_revision': '4087.0.0', |
| 70 'metric': 'jslib/jslib', | 70 'metric': 'jslib/jslib', |
| 71 'repeat_count': '20', | 71 'repeat_count': '20', |
| 72 'max_time_minutes': '20', | 72 'max_time_minutes': '20', |
| 73 'truncate_percent': '25', | 73 'truncate_percent': '25', |
| 74 } | 74 } |
| 75 | 75 |
| 76 """ | 76 """ |
| 77 | 77 |
| 78 config = { | 78 config = { |
| 79 'command': '', | 79 'command': 'tools/perf/run_benchmark -v --browser=release indexeddb_perf', |
| 80 'good_revision': '', | 80 'good_revision': '244048', |
| 81 'bad_revision': '', | 81 'bad_revision': '244080', |
| 82 'metric': '', | 82 'metric': 'testCursorReadsAndRandomWrites_true_true_false_false/testCursorRead
sAndRandomWrites_true_true_false_false', |
| 83 'repeat_count':'', | 83 'repeat_count': '20', |
| 84 'max_time_minutes': '', | 84 'max_time_minutes': '20', |
| 85 'truncate_percent':'', | 85 'truncate_percent': '25', |
| 86 'bug_id': '334025', |
| 86 } | 87 } |
| 87 | 88 |
| 88 # Workaround git try issue, see crbug.com/257689 | 89 # Workaround git try issue, see crbug.com/257689 |
| OLD | NEW |