| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 Bot | 5 """Config file for Run Performance Test Bot |
| 6 | 6 |
| 7 This script is intended for use by anyone that wants to run a remote performance | 7 This script is intended for use by anyone that wants to run a remote performance |
| 8 test. Modify the config below and add the command to run the performance test, | 8 test. Modify the config below and add the command to run the performance test, |
| 9 the metric you're interested in, and repeat/discard parameters. You can then | 9 the metric you're interested in, and repeat/discard parameters. You can then |
| 10 run a git try <bot>. | 10 run a git try <bot>. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'smoothness.key_mobile_sites', | 60 'smoothness.key_mobile_sites', |
| 61 'metric': 'mean_frame_time/mean_frame_time', | 61 'metric': 'mean_frame_time/mean_frame_time', |
| 62 'repeat_count': '20', | 62 'repeat_count': '20', |
| 63 'max_time_minutes': '20', | 63 'max_time_minutes': '20', |
| 64 'truncate_percent': '25', | 64 'truncate_percent': '25', |
| 65 } | 65 } |
| 66 | 66 |
| 67 """ | 67 """ |
| 68 | 68 |
| 69 config = { | 69 config = { |
| 70 'command': '', | 70 'command': './tools/perf/run_benchmark --browser=android-chromium --pageset-re
peat=10 blink_style.top_25', |
| 71 'metric': '', | 71 'repeat_count': '1', |
| 72 'repeat_count': '', | 72 'max_time_minutes': '120', |
| 73 'max_time_minutes': '', | 73 'truncate_percent': '0', |
| 74 'truncate_percent': '', | |
| 75 } | 74 } |
| 76 | 75 |
| 77 # Workaround git try issue, see crbug.com/257689 | 76 # Workaround git try issue, see crbug.com/257689 |
| OLD | NEW |