diff options
author | simonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-15 19:29:50 +0000 |
---|---|---|
committer | simonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-15 19:29:50 +0000 |
commit | 2deb10df4b5547e74f4ff89652421f7ab780f018 (patch) | |
tree | 527f63ab984f058e8722f3811c75d202a09fb5b5 /tools/run-bisect-perf-regression.cfg | |
parent | 7bfc16ace99007fd1f2d75096651110be691c693 (diff) | |
download | chromium_src-2deb10df4b5547e74f4ff89652421f7ab780f018.zip chromium_src-2deb10df4b5547e74f4ff89652421f7ab780f018.tar.gz chromium_src-2deb10df4b5547e74f4ff89652421f7ab780f018.tar.bz2 |
Added windows support for bisect script. Added build_preference parameter to bisect script to specify build system.
BUG=
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/12712009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188451 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/run-bisect-perf-regression.cfg')
-rw-r--r-- | tools/run-bisect-perf-regression.cfg | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/tools/run-bisect-perf-regression.cfg b/tools/run-bisect-perf-regression.cfg index ea39f5e..792083c 100644 --- a/tools/run-bisect-perf-regression.cfg +++ b/tools/run-bisect-perf-regression.cfg @@ -22,7 +22,6 @@ Args: 'repeat_count': The number of times to repeat the performance test. 'truncate_percent': Discard the highest/lowest % values from performance test. - Sample config: config = { @@ -32,7 +31,21 @@ config = { 'bad_revision': '179782', 'metric': 'times/t', 'repeat_count': '10', - 'truncate_percent': 10, + 'truncate_percent': '10', +} + +On Windows: + - If you're calling a python script you will need to add "python" to +the command: + +config = { + 'command': 'python tools/perf/run_multipage_benchmarks -v --browser=release'\ + ' kraken tools/perf/page_sets/kraken.json', + 'good_revision': '185319', + 'bad_revision': '185364', + 'metric': 'Total/Total', + 'repeat_count': '10', + 'truncate_percent': '10', } """ @@ -43,5 +56,5 @@ config = { 'bad_revision': '', 'metric': '', 'repeat_count':'', - 'truncate_percent':'' + 'truncate_percent':'', } |