Chromium Code Reviews| Index: tools/perf/benchmarks/page_cycler.py |
| diff --git a/tools/perf/benchmarks/page_cycler.py b/tools/perf/benchmarks/page_cycler.py |
| index b9a0b8c971b3db86d998a9af4b179210338cda4b..9eb4c0dd874720189bcd4883f128f6b78c9bc45f 100644 |
| --- a/tools/perf/benchmarks/page_cycler.py |
| +++ b/tools/perf/benchmarks/page_cycler.py |
| @@ -1,6 +1,8 @@ |
| # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| +import sys |
| + |
| from telemetry import test |
| from measurements import page_cycler |
| @@ -103,6 +105,7 @@ class PageCyclerToughLayoutCases(test.Test): |
| class PageCyclerTypical25(test.Test): |
| + enabled = not sys.platform.startswith('win') |
|
tonyg
2013/12/03 22:44:12
Please mention crbug.com/273986 here and both bugs
shatch
2013/12/03 22:46:33
Done.
|
| test = page_cycler.PageCycler |
| page_set = 'page_sets/typical_25.json' |
| options = {'pageset_repeat_iters': 10} |