Commit 9e2b6796 authored by tonyg's avatar tonyg Committed by Commit bot

[Telemetry] Make several more enable/disables match old master.cfg file.

BUG=388885

Review URL: https://codereview.chromium.org/587833003

Cr-Commit-Position: refs/heads/master@{#295814}
parent 67c253e7
...@@ -85,13 +85,14 @@ class PageCyclerNetsimTop10(benchmark.Benchmark): ...@@ -85,13 +85,14 @@ class PageCyclerNetsimTop10(benchmark.Benchmark):
self.test.clear_cache_before_each_run = True self.test.clear_cache_before_each_run = True
@benchmark.Enabled('android')
class PageCyclerTop10Mobile(benchmark.Benchmark): class PageCyclerTop10Mobile(benchmark.Benchmark):
test = page_cycler.PageCycler test = page_cycler.PageCycler
page_set = page_sets.Top10MobilePageSet page_set = page_sets.Top10MobilePageSet
options = {'pageset_repeat': 10} options = {'pageset_repeat': 10}
@benchmark.Disabled('android') @benchmark.Disabled
class PageCyclerKeyMobileSites(benchmark.Benchmark): class PageCyclerKeyMobileSites(benchmark.Benchmark):
test = page_cycler.PageCycler test = page_cycler.PageCycler
page_set = page_sets.KeyMobileSitesPageSet page_set = page_sets.KeyMobileSitesPageSet
......
...@@ -7,12 +7,14 @@ import page_sets ...@@ -7,12 +7,14 @@ import page_sets
from telemetry import benchmark from telemetry import benchmark
@benchmark.Enabled('android')
class PolymerLoadPica(benchmark.Benchmark): class PolymerLoadPica(benchmark.Benchmark):
"""Measures time to polymer-ready for Pica (News Reader).""" """Measures time to polymer-ready for Pica (News Reader)."""
test = polymer_load.PolymerLoadMeasurement test = polymer_load.PolymerLoadMeasurement
page_set = page_sets.PicaPageSet page_set = page_sets.PicaPageSet
@benchmark.Enabled('android')
class PolymerLoadTopeka(benchmark.Benchmark): class PolymerLoadTopeka(benchmark.Benchmark):
"""Measures time to polymer-ready for Topeka (Quiz App).""" """Measures time to polymer-ready for Topeka (Quiz App)."""
test = polymer_load.PolymerLoadMeasurement test = polymer_load.PolymerLoadMeasurement
......
...@@ -8,6 +8,7 @@ import page_sets ...@@ -8,6 +8,7 @@ import page_sets
from telemetry import benchmark from telemetry import benchmark
@benchmark.Enabled('android')
class RepaintKeyMobileSites(benchmark.Benchmark): class RepaintKeyMobileSites(benchmark.Benchmark):
"""Measures repaint performance on the key mobile sites. """Measures repaint performance on the key mobile sites.
...@@ -16,7 +17,7 @@ class RepaintKeyMobileSites(benchmark.Benchmark): ...@@ -16,7 +17,7 @@ class RepaintKeyMobileSites(benchmark.Benchmark):
page_set = page_sets.KeyMobileSitesPageSet page_set = page_sets.KeyMobileSitesPageSet
@benchmark.Disabled('android') # crbug.com/412001 @benchmark.Disabled # crbug.com/412001
class RepaintGpuRasterizationKeyMobileSites(benchmark.Benchmark): class RepaintGpuRasterizationKeyMobileSites(benchmark.Benchmark):
"""Measures repaint performance on the key mobile sites with forced GPU """Measures repaint performance on the key mobile sites with forced GPU
rasterization. rasterization.
......
...@@ -33,11 +33,13 @@ class SmoothnessToughWebGLCases(benchmark.Benchmark): ...@@ -33,11 +33,13 @@ class SmoothnessToughWebGLCases(benchmark.Benchmark):
page_set = page_sets.ToughWebglCasesPageSet page_set = page_sets.ToughWebglCasesPageSet
@benchmark.Enabled('android')
class SmoothnessMaps(benchmark.Benchmark): class SmoothnessMaps(benchmark.Benchmark):
test = smoothness.Smoothness test = smoothness.Smoothness
page_set = page_sets.MapsPageSet page_set = page_sets.MapsPageSet
@benchmark.Enabled('android')
class SmoothnessKeyMobileSites(benchmark.Benchmark): class SmoothnessKeyMobileSites(benchmark.Benchmark):
"""Measures rendering statistics while scrolling down the key mobile sites. """Measures rendering statistics while scrolling down the key mobile sites.
...@@ -52,6 +54,7 @@ class SmoothnessToughAnimationCases(benchmark.Benchmark): ...@@ -52,6 +54,7 @@ class SmoothnessToughAnimationCases(benchmark.Benchmark):
page_set = page_sets.ToughAnimationCasesPageSet page_set = page_sets.ToughAnimationCasesPageSet
@benchmark.Enabled('android')
class SmoothnessKeySilkCases(benchmark.Benchmark): class SmoothnessKeySilkCases(benchmark.Benchmark):
"""Measures rendering statistics for the key silk cases without GPU """Measures rendering statistics for the key silk cases without GPU
rasterization rasterization
...@@ -60,6 +63,7 @@ class SmoothnessKeySilkCases(benchmark.Benchmark): ...@@ -60,6 +63,7 @@ class SmoothnessKeySilkCases(benchmark.Benchmark):
page_set = page_sets.KeySilkCasesPageSet page_set = page_sets.KeySilkCasesPageSet
@benchmark.Enabled('android')
class SmoothnessFastPathKeySilkCases(benchmark.Benchmark): class SmoothnessFastPathKeySilkCases(benchmark.Benchmark):
"""Measures rendering statistics for the key silk cases without GPU """Measures rendering statistics for the key silk cases without GPU
rasterization using bleeding edge rendering fast paths. rasterization using bleeding edge rendering fast paths.
...@@ -71,8 +75,7 @@ class SmoothnessFastPathKeySilkCases(benchmark.Benchmark): ...@@ -71,8 +75,7 @@ class SmoothnessFastPathKeySilkCases(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForFastPath(options) silk_flags.CustomizeBrowserOptionsForFastPath(options)
# GPU rasterization does not work on J devices @benchmark.Enabled('android') # crbug.com/399125
@benchmark.Disabled('j', 'android') # crbug.com/399125
class SmoothnessGpuRasterizationTop25(benchmark.Benchmark): class SmoothnessGpuRasterizationTop25(benchmark.Benchmark):
"""Measures rendering statistics for the top 25 with GPU rasterization """Measures rendering statistics for the top 25 with GPU rasterization
""" """
...@@ -83,8 +86,7 @@ class SmoothnessGpuRasterizationTop25(benchmark.Benchmark): ...@@ -83,8 +86,7 @@ class SmoothnessGpuRasterizationTop25(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
# GPU rasterization does not work on J devices @benchmark.Enabled('android') # crbug.com/399125
@benchmark.Disabled('j', 'android') # crbug.com/399125
class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark): class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark):
"""Measures rendering statistics for the key mobile sites with GPU """Measures rendering statistics for the key mobile sites with GPU
rasterization rasterization
...@@ -96,7 +98,7 @@ class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark): ...@@ -96,7 +98,7 @@ class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
@benchmark.Disabled('android') # crbug.com/399125 @benchmark.Disabled # crbug.com/399125
class SmoothnessGpuRasterizationKeySilkCases(benchmark.Benchmark): class SmoothnessGpuRasterizationKeySilkCases(benchmark.Benchmark):
"""Measures rendering statistics for the key silk cases with GPU rasterization """Measures rendering statistics for the key silk cases with GPU rasterization
""" """
...@@ -107,7 +109,7 @@ class SmoothnessGpuRasterizationKeySilkCases(benchmark.Benchmark): ...@@ -107,7 +109,7 @@ class SmoothnessGpuRasterizationKeySilkCases(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
@benchmark.Disabled('android') # crbug.com/399125 @benchmark.Disabled # crbug.com/399125
class SmoothnessFastPathGpuRasterizationKeySilkCases( class SmoothnessFastPathGpuRasterizationKeySilkCases(
SmoothnessGpuRasterizationKeySilkCases): SmoothnessGpuRasterizationKeySilkCases):
"""Measures rendering statistics for the key silk cases with GPU rasterization """Measures rendering statistics for the key silk cases with GPU rasterization
...@@ -140,6 +142,7 @@ class SmoothnessToughPinchZoomCases(benchmark.Benchmark): ...@@ -140,6 +142,7 @@ class SmoothnessToughPinchZoomCases(benchmark.Benchmark):
page_set = page_sets.ToughPinchZoomCasesPageSet page_set = page_sets.ToughPinchZoomCasesPageSet
@benchmark.Enabled('android')
class SmoothnessPolymer(benchmark.Benchmark): class SmoothnessPolymer(benchmark.Benchmark):
"""Measures rendering statistics for Polymer cases. """Measures rendering statistics for Polymer cases.
""" """
...@@ -147,6 +150,7 @@ class SmoothnessPolymer(benchmark.Benchmark): ...@@ -147,6 +150,7 @@ class SmoothnessPolymer(benchmark.Benchmark):
page_set = page_sets.PolymerPageSet page_set = page_sets.PolymerPageSet
@benchmark.Enabled('android')
class SmoothnessFastPathPolymer(benchmark.Benchmark): class SmoothnessFastPathPolymer(benchmark.Benchmark):
"""Measures rendering statistics for the Polymer cases without GPU """Measures rendering statistics for the Polymer cases without GPU
rasterization using bleeding edge rendering fast paths. rasterization using bleeding edge rendering fast paths.
...@@ -157,8 +161,7 @@ class SmoothnessFastPathPolymer(benchmark.Benchmark): ...@@ -157,8 +161,7 @@ class SmoothnessFastPathPolymer(benchmark.Benchmark):
def CustomizeBrowserOptions(self, options): def CustomizeBrowserOptions(self, options):
silk_flags.CustomizeBrowserOptionsForFastPath(options) silk_flags.CustomizeBrowserOptionsForFastPath(options)
# GPU rasterization does not work on J devices @benchmark.Enabled('android') # crbug.com/399125
@benchmark.Disabled('j', 'android') # crbug.com/399125
class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark): class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark):
"""Measures rendering statistics for the Polymer cases with GPU rasterization """Measures rendering statistics for the Polymer cases with GPU rasterization
""" """
...@@ -169,7 +172,7 @@ class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark): ...@@ -169,7 +172,7 @@ class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
@benchmark.Disabled('android') # crbug.com/399125 @benchmark.Disabled # crbug.com/399125
class SmoothnessFastPathGpuRasterizationPolymer( class SmoothnessFastPathGpuRasterizationPolymer(
SmoothnessGpuRasterizationPolymer): SmoothnessGpuRasterizationPolymer):
"""Measures rendering statistics for the Polymer cases with GPU rasterization """Measures rendering statistics for the Polymer cases with GPU rasterization
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment