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

Side by Side Diff: tools/chrome_proxy/live_tests/chrome_proxy_benchmark.py

Issue 1098253004: Move top_20 tests to a separate suite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use ChromeProxyValidation in common in integration_tests Created 5 years, 7 months 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
OLDNEW
(Empty)
1 # Copyright 2014 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 from live_tests import chrome_proxy_measurements as measurements
6 from live_tests import pagesets
7 from telemetry import benchmark
8 from telemetry.core.backends.chrome import android_browser_finder
9
10
11 class ChromeProxyLatency(benchmark.Benchmark):
12 tag = 'latency'
13 test = measurements.ChromeProxyLatency
14 page_set = pagesets.Top20PageSet
15
16 @classmethod
17 def Name(cls):
18 return 'chrome_proxy_benchmark.latency.top_20'
19
20
21 class ChromeProxyLatencyDirect(benchmark.Benchmark):
22 tag = 'latency_direct'
23 test = measurements.ChromeProxyLatency
24 page_set = pagesets.Top20PageSet
25
26 @classmethod
27 def Name(cls):
28 return 'chrome_proxy_benchmark.latency_direct.top_20'
29
30
31 class ChromeProxyDataSaving(benchmark.Benchmark):
32 tag = 'data_saving'
33 test = measurements.ChromeProxyDataSaving
34 page_set = pagesets.Top20PageSet
35
36 @classmethod
37 def Name(cls):
38 return 'chrome_proxy_benchmark.data_saving.top_20'
39
40
41 class ChromeProxyDataSavingDirect(benchmark.Benchmark):
42 tag = 'data_saving_direct'
43 test = measurements.ChromeProxyDataSaving
44 page_set = pagesets.Top20PageSet
45
46 @classmethod
47 def Name(cls):
48 return 'chrome_proxy_benchmark.data_saving_direct.top_20'
49
OLDNEW
« no previous file with comments | « tools/chrome_proxy/live_tests/__init__.py ('k') | tools/chrome_proxy/live_tests/chrome_proxy_measurements.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698