| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 """Run all system health stories used by system health benchmarks. | 5 """Run all system health stories used by system health benchmarks. |
| 6 | 6 |
| 7 Only memory benchmarks are used when running these stories to make the total | 7 Only memory benchmarks are used when running these stories to make the total |
| 8 cycle time manageable. Other system health benchmarks should be using the same | 8 cycle time manageable. Other system health benchmarks should be using the same |
| 9 stories as memory ones, only with fewer actions (no memory dumping). | 9 stories as memory ones, only with fewer actions (no memory dumping). |
| 10 """ | 10 """ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 _DISABLED_TESTS = frozenset({ | 34 _DISABLED_TESTS = frozenset({ |
| 35 # crbug.com/662003 | 35 # crbug.com/662003 |
| 36 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.browse:social:twitter', # pylint: disable=line-too-long | 36 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.browse:social:twitter', # pylint: disable=line-too-long |
| 37 # crbug.com/662021 | 37 # crbug.com/662021 |
| 38 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.browse:news:flipboard', # pylint: disable=line-too-long | 38 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.browse:news:flipboard', # pylint: disable=line-too-long |
| 39 # crbug.com/629123 | 39 # crbug.com/629123 |
| 40 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.browse:news:hackernews', # pylint: disable=line-too-long | 40 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.browse:news:hackernews', # pylint: disable=line-too-long |
| 41 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.browse:news:nytimes', # pylint: disable=line-too-long | 41 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.browse:news:nytimes', # pylint: disable=line-too-long |
| 42 # crbug.com/637230 | 42 # crbug.com/637230 |
| 43 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.browse:news:cnn', # pylint: disable=line-too-long | 43 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.browse:news:cnn', # pylint: disable=line-too-long |
| 44 | 44 # crbug.com/666293 |
| 45 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.browse:media:youtube', # pylint: disable=line-too-long |
| 45 # Permenently disabled from smoke test for being long-running. | 46 # Permenently disabled from smoke test for being long-running. |
| 46 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.long_running:tools:gmail-foreground', # pylint: disable=line-
too-long | 47 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.long_running:tools:gmail-foreground', # pylint: disable=line-
too-long |
| 47 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.long_running:tools:gmail-background', # pylint: disable=line-
too-long | 48 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_mobile.long_running:tools:gmail-background', # pylint: disable=line-
too-long |
| 48 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.long_running:tools:gmail-foreground', # pylint: disable=line
-too-long | 49 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.long_running:tools:gmail-foreground', # pylint: disable=line
-too-long |
| 49 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.long_running:tools:gmail-background', # pylint: disable=line
-too-long | 50 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.long_running:tools:gmail-background', # pylint: disable=line
-too-long |
| 50 | 51 |
| 51 # Disable media tests in CQ. crbug.com/649392 | 52 # Disable media tests in CQ. crbug.com/649392 |
| 52 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.play:media:soundcloud', # pylint: disable=line-too-long | 53 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.play:media:soundcloud', # pylint: disable=line-too-long |
| 53 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.play:media:google_play_music', # pylint: disable=line-too-lo
ng | 54 'benchmarks.system_health_smoke_test.SystemHealthBenchmarkSmokeTest.system_hea
lth.memory_desktop.play:media:google_play_music', # pylint: disable=line-too-lo
ng |
| 54 }) | 55 }) |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 # parsed during test time which happens after load_tests are called. | 140 # parsed during test time which happens after load_tests are called. |
| 140 # Since none of our system health benchmarks creates stories based on | 141 # Since none of our system health benchmarks creates stories based on |
| 141 # command line options, it should be ok to pass options=None to | 142 # command line options, it should be ok to pass options=None to |
| 142 # CreateStorySet. | 143 # CreateStorySet. |
| 143 for story_to_smoke_test in ( | 144 for story_to_smoke_test in ( |
| 144 benchmark_class().CreateStorySet(options=None).stories): | 145 benchmark_class().CreateStorySet(options=None).stories): |
| 145 suite.addTest( | 146 suite.addTest( |
| 146 _GenerateSmokeTestCase(benchmark_class, story_to_smoke_test)) | 147 _GenerateSmokeTestCase(benchmark_class, story_to_smoke_test)) |
| 147 | 148 |
| 148 return suite | 149 return suite |
| OLD | NEW |