| 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 "bad_revision": "503953", |
| 71 'metric': '', | 71 "command": "src/tools/perf/run_benchmark -v --browser=android-chromium --outpu
t-format=chartjson --upload-results --pageset-repeat=1 --also-run-disabled-tests
--extra-chrome-categories=toplevel,disabled-by-default-toplevel.flow,*,disabled
-by-default-cc.debug,disabled-by-default-cc.debug.scheduler media.android.tough_
video_cases_tbmv2", |
| 72 'repeat_count': '', | 72 "good_revision": "503949", |
| 73 'max_time_minutes': '', | 73 "max_time_minutes": "60", |
| 74 'truncate_percent': '', | 74 "repeat_count": "1", |
| 75 "try_job_id": 5213185744830464 |
| 75 } | 76 } |
| 76 | 77 |
| 77 # Workaround git try issue, see crbug.com/257689 | 78 # Workaround git try issue, see crbug.com/257689 |
| OLD | NEW |