| 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 | 4 |
| 5 from measurements import page_cycler | 5 from measurements import page_cycler |
| 6 from telemetry import test | 6 from telemetry import test |
| 7 | 7 |
| 8 | 8 |
| 9 class PageCyclerBloat(test.Test): | 9 class PageCyclerBloat(test.Test): |
| 10 test = page_cycler.PageCycler | 10 test = page_cycler.PageCycler |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 page_set = 'page_sets/page_cycler/morejs.py' | 54 page_set = 'page_sets/page_cycler/morejs.py' |
| 55 options = {'pageset_repeat': 10} | 55 options = {'pageset_repeat': 10} |
| 56 | 56 |
| 57 | 57 |
| 58 class PageCyclerMoz(test.Test): | 58 class PageCyclerMoz(test.Test): |
| 59 test = page_cycler.PageCycler | 59 test = page_cycler.PageCycler |
| 60 page_set = 'page_sets/page_cycler/moz.py' | 60 page_set = 'page_sets/page_cycler/moz.py' |
| 61 options = {'pageset_repeat': 10} | 61 options = {'pageset_repeat': 10} |
| 62 | 62 |
| 63 | 63 |
| 64 @test.Disabled('win') # crbug.com/353260 |
| 64 class PageCyclerNetsimTop10(test.Test): | 65 class PageCyclerNetsimTop10(test.Test): |
| 65 """Measures load time of the top 10 sites under simulated cable network.""" | 66 """Measures load time of the top 10 sites under simulated cable network.""" |
| 66 tag = 'netsim' | 67 tag = 'netsim' |
| 67 test = page_cycler.PageCycler | 68 test = page_cycler.PageCycler |
| 68 page_set = 'page_sets/top_10.py' | 69 page_set = 'page_sets/top_10.py' |
| 69 options = { | 70 options = { |
| 70 'cold_load_percent': 100, | 71 'cold_load_percent': 100, |
| 71 'extra_wpr_args': [ | 72 'extra_wpr_args': [ |
| 72 '--shaping_type=proxy', | 73 '--shaping_type=proxy', |
| 73 '--net=cable' | 74 '--net=cable' |
| (...skipping 26 matching lines...) Expand all Loading... |
| 100 options = {'pageset_repeat': 10} | 101 options = {'pageset_repeat': 10} |
| 101 | 102 |
| 102 | 103 |
| 103 # crbug.com/273986: This test is really flakey on xp. | 104 # crbug.com/273986: This test is really flakey on xp. |
| 104 # cabug.com/341843: This test is always timing out on Android. | 105 # cabug.com/341843: This test is always timing out on Android. |
| 105 @test.Disabled('android', 'win') | 106 @test.Disabled('android', 'win') |
| 106 class PageCyclerTypical25(test.Test): | 107 class PageCyclerTypical25(test.Test): |
| 107 test = page_cycler.PageCycler | 108 test = page_cycler.PageCycler |
| 108 page_set = 'page_sets/typical_25.py' | 109 page_set = 'page_sets/typical_25.py' |
| 109 options = {'pageset_repeat': 10} | 110 options = {'pageset_repeat': 10} |
| OLD | NEW |