Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 | 4 |
| 5 from integration_tests import chrome_proxy_measurements as measurements | 5 from integration_tests import chrome_proxy_measurements as measurements |
| 6 from integration_tests import chrome_proxy_pagesets as pagesets | 6 from integration_tests import chrome_proxy_pagesets as pagesets |
| 7 from telemetry import benchmark | 7 from telemetry import benchmark |
| 8 | 8 |
| 9 | 9 |
| 10 @benchmark.Enabled('android') | 10 @benchmark.Enabled('android') |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 63 class ChromeProxyDataSavingSyntheticDirect(ChromeProxyDataSavingDirect): | 63 class ChromeProxyDataSavingSyntheticDirect(ChromeProxyDataSavingDirect): |
| 64 page_set = pagesets.SyntheticPageSet | 64 page_set = pagesets.SyntheticPageSet |
| 65 | 65 |
| 66 | 66 |
| 67 @benchmark.Enabled('android') | 67 @benchmark.Enabled('android') |
| 68 class ChromeProxyHeaderValidation(benchmark.Benchmark): | 68 class ChromeProxyHeaderValidation(benchmark.Benchmark): |
| 69 tag = 'header_validation' | 69 tag = 'header_validation' |
| 70 test = measurements.ChromeProxyHeaders | 70 test = measurements.ChromeProxyHeaders |
| 71 page_set = pagesets.Top20PageSet | 71 page_set = pagesets.Top20PageSet |
| 72 | 72 |
| 73 @benchmark.Enabled('android') | |
| 74 class ChromeProxyVersionTest(benchmark.Benchmark): | |
|
bolian
2014/09/04 02:09:02
The name "Test" is implicit. Can you rename this a
bolian
2014/09/04 02:09:02
FYI: In a separate CL, if you want have this test
bengr
2014/09/04 18:42:23
Done.
bengr
2014/09/04 18:42:23
Acknowledged.
| |
| 75 tag = 'version_test' | |
| 76 test = measurements.ChromeProxyVersionTest | |
| 77 page_set = pagesets.SyntheticPageSet | |
| 73 | 78 |
| 74 @benchmark.Enabled('android') | 79 @benchmark.Enabled('android') |
| 75 class ChromeProxyBypass(benchmark.Benchmark): | 80 class ChromeProxyBypass(benchmark.Benchmark): |
| 76 tag = 'bypass' | 81 tag = 'bypass' |
| 77 test = measurements.ChromeProxyBypass | 82 test = measurements.ChromeProxyBypass |
| 78 page_set = pagesets.BypassPageSet | 83 page_set = pagesets.BypassPageSet |
| 79 | 84 |
| 80 | 85 |
| 81 @benchmark.Enabled('android') | 86 @benchmark.Enabled('android') |
| 82 class ChromeProxySafeBrowsing(benchmark.Benchmark): | 87 class ChromeProxySafeBrowsing(benchmark.Benchmark): |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 97 tag = 'fallback-viaheader' | 102 tag = 'fallback-viaheader' |
| 98 test = measurements.ChromeProxyHTTPFallbackViaHeader | 103 test = measurements.ChromeProxyHTTPFallbackViaHeader |
| 99 page_set = pagesets.FallbackViaHeaderPageSet | 104 page_set = pagesets.FallbackViaHeaderPageSet |
| 100 | 105 |
| 101 | 106 |
| 102 @benchmark.Enabled('android') | 107 @benchmark.Enabled('android') |
| 103 class ChromeProxySmoke(benchmark.Benchmark): | 108 class ChromeProxySmoke(benchmark.Benchmark): |
| 104 tag = 'smoke' | 109 tag = 'smoke' |
| 105 test = measurements.ChromeProxySmoke | 110 test = measurements.ChromeProxySmoke |
| 106 page_set = pagesets.SmokePageSet | 111 page_set = pagesets.SmokePageSet |
| OLD | NEW |