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

Side by Side Diff: tools/perf/benchmarks/smoothness.py

Issue 68203031: telemetry: Add tough scheduling cases (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Full test set. Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
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
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'
OLDNEW
« no previous file with comments | « no previous file | tools/perf/measurements/smoothness.py » ('j') | tools/perf/page_sets/tough_scheduling_cases/raf.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698