OLD | NEW |
---|---|
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 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 import sys | 4 import sys |
5 from telemetry import test | 5 from telemetry import test |
6 | 6 |
7 from measurements import smoothness | 7 from measurements import smoothness |
8 | 8 |
9 | 9 |
10 class SmoothnessTop25(test.Test): | 10 class SmoothnessTop25(test.Test): |
(...skipping 10 matching lines...) Expand all Loading... | |
21 | 21 |
22 | 22 |
23 class SmoothnessKeyMobileSites(test.Test): | 23 class SmoothnessKeyMobileSites(test.Test): |
24 """Measures rendering statistics while scrolling down the key mobile sites. | 24 """Measures rendering statistics while scrolling down the key mobile sites. |
25 | 25 |
26 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 26 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
27 # TODO(ernstm): remove when crbug.com/313753 is fixed. | 27 # TODO(ernstm): remove when crbug.com/313753 is fixed. |
28 enabled = sys.platform != 'linux2' | 28 enabled = sys.platform != 'linux2' |
29 test = smoothness.Smoothness | 29 test = smoothness.Smoothness |
30 page_set = 'page_sets/key_mobile_sites.json' | 30 page_set = 'page_sets/key_mobile_sites.json' |
31 | |
32 | |
33 class SmoothnessToughSchedulingCases(test.Test): | |
34 """Measures rendering statistics while interacting with pages that have | |
nduca
2013/11/24 19:22:46
why is restart required after every run?
Sami
2013/11/29 19:29:17
Fixed, now I reset all the delays before applying
| |
35 challenging scheduling properties. | |
36 | |
37 https://docs.google.com/a/chromium.org/document/d/ | |
38 17yhE5Po9By0sCdM1yZT3LiUECaUr_94rQt9j-4tOQIM/view""" | |
39 test = smoothness.SmoothnessWithRestart | |
40 page_set = 'page_sets/tough_scheduling_cases.json' | |
OLD | NEW |