Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(474)

Side by Side Diff: tools/run-perf-test.cfg

Issue 2315923002: Lazy Parse CSS (Closed)
Patch Set: plug leaks Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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=release page_cycler_v2.typica l_25 --verbose',
Timothy Loh 2016/09/26 05:18:01 Not sure you meant to change this file -- that sai
Charlie Harrison 2016/09/26 22:14:45 Removed this edit from the CL (though might re-add
71 'metric': '', 71 'repeat_count': '10',
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698