Chromium Code Reviews| 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 used by the run-bisect-perf-regression.py script. | |
|
tonyg
2013/02/14 01:03:43
Recommend beefing up this description to describe
shatch
2013/02/14 23:00:34
Done.
| |
| 8 | |
| 9 Sample config: | |
| 10 | |
| 11 config =\ | |
| 12 { | |
| 13 'command':'./out/Release/performance_ui_tests' + | |
| 14 ' --gtest_filter=PageCyclerTest.Intl1File', | |
| 15 'good_revision':'179755', | |
| 16 'bad_revision':'179782', | |
| 17 'metric':'times/t' | |
| 18 } | |
| 19 | |
| 20 """ | |
| 21 | |
| 22 config =\ | |
|
tonyg
2013/02/14 01:03:43
I think we should have a PRESUBMIT.py check that v
shatch
2013/02/14 23:00:34
Done.
| |
| 23 { | |
|
tonyg
2013/02/14 01:03:43
Recommend bringing this up to the line above here
shatch
2013/02/14 23:00:34
Done.
| |
| 24 'command':'', | |
|
tonyg
2013/02/14 01:03:43
Recommend space after colons in this block and in
shatch
2013/02/14 23:00:34
Done.
| |
| 25 'good_revision':'', | |
| 26 'bad_revision':'', | |
| 27 'metric':'', | |
| 28 } | |
| OLD | NEW |