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

Unified Diff: tools/perf/benchmarks/smoothness.py

Issue 2744723003: Adding owners to benchmark tests (Closed)
Patch Set: rebasing Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/benchmarks/skpicture_printer.py ('k') | tools/perf/benchmarks/spaceport.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/smoothness.py
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
index fe9f50b5c423113a38d2307f28ef16444b602c58..733eb121c073789b7da524dc4c050f701fd5b780 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -37,6 +37,7 @@ class _Smoothness(perf_benchmark.PerfBenchmark):
return True
+@benchmark.Owner(emails=['vmiura@chromium.org'])
class SmoothnessTop25(_Smoothness):
"""Measures rendering statistics while scrolling down the top 25 web pages.
@@ -61,6 +62,7 @@ class SmoothnessTop25(_Smoothness):
return False
+@benchmark.Owner(emails=['senorblanco@chromium.org'])
class SmoothnessToughFiltersCases(_Smoothness):
"""Measures frame rate and a variety of other statistics.
@@ -84,6 +86,7 @@ class SmoothnessToughFiltersCases(_Smoothness):
return False
+@benchmark.Owner(emails=['senorblanco@chromium.org'])
class SmoothnessToughPathRenderingCases(_Smoothness):
"""Tests a selection of pages with SVG and 2D Canvas paths.
@@ -96,6 +99,7 @@ class SmoothnessToughPathRenderingCases(_Smoothness):
@benchmark.Disabled('android') # crbug.com/526901
+@benchmark.Owner(emails=['junov@chromium.org'])
class SmoothnessToughCanvasCases(_Smoothness):
"""Measures frame rate and a variety of other statistics.
@@ -113,6 +117,7 @@ class SmoothnessToughCanvasCases(_Smoothness):
@benchmark.Disabled('android') # crbug.com/373812
@benchmark.Disabled('win-reference') # crbug.com/612810
+@benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org'])
class SmoothnessToughWebGLCases(_Smoothness):
page_set = page_sets.ToughWebglCasesPageSet
@@ -123,6 +128,7 @@ class SmoothnessToughWebGLCases(_Smoothness):
@benchmark.Disabled('win') # http://crbug.com/692663
@benchmark.Disabled('android-webview') # http://crbug.com/653933
+@benchmark.Owner(emails=['kbr@chromium.org', 'zmo@chromium.org'])
class SmoothnessMaps(perf_benchmark.PerfBenchmark):
page_set = page_sets.MapsPageSet
@@ -133,6 +139,7 @@ class SmoothnessMaps(perf_benchmark.PerfBenchmark):
@benchmark.Disabled('android',
'mac') # crbug.com/567802
+@benchmark.Owner(emails=['ssid@chromium.org'])
class SmoothnessKeyDesktopMoveCases(_Smoothness):
page_set = page_sets.KeyDesktopMoveCasesPageSet
@@ -147,6 +154,7 @@ class SmoothnessKeyDesktopMoveCases(_Smoothness):
@benchmark.Enabled('android')
+@benchmark.Owner(emails=['vmiura@chromium.org', 'tdresser@chromium.org'])
class SmoothnessKeyMobileSites(_Smoothness):
"""Measures rendering statistics while scrolling down the key mobile sites.
@@ -166,6 +174,7 @@ class SmoothnessKeyMobileSites(_Smoothness):
@benchmark.Disabled('android') # crbug.com/589580
@benchmark.Disabled('android-reference') # crbug.com/588786
@benchmark.Disabled('mac') # crbug.com/563615
+@benchmark.Owner(emails=['alancutter@chromium.org'])
class SmoothnessToughAnimationCases(_Smoothness):
test = smoothness.SmoothnessWithRestart
page_set = page_sets.ToughAnimationCasesPageSet
@@ -182,6 +191,7 @@ class SmoothnessToughAnimationCases(_Smoothness):
@benchmark.Enabled('android')
+@benchmark.Owner(emails=['ajuma@chromium.org'])
class SmoothnessKeySilkCases(_Smoothness):
"""Measures rendering statistics for the key silk cases without GPU
rasterization.
@@ -203,6 +213,7 @@ class SmoothnessKeySilkCases(_Smoothness):
@benchmark.Enabled('android')
+@benchmark.Owner(emails=['vmiura@chromium.org'])
class SmoothnessGpuRasterizationTop25(_Smoothness):
"""Measures rendering statistics for the top 25 with GPU rasterization.
"""
@@ -225,6 +236,7 @@ class SmoothnessGpuRasterizationTop25(_Smoothness):
# Although GPU rasterization is enabled on Mac, it is blacklisted for certain
# path cases, so it is still valuable to run both the GPU and non-GPU versions
# of this benchmark on Mac.
+@benchmark.Owner(emails=['senorblanco@chromium.org'])
class SmoothnessGpuRasterizationToughPathRenderingCases(_Smoothness):
"""Tests a selection of pages with SVG and 2D canvas paths with GPU
rasterization.
@@ -243,6 +255,7 @@ class SmoothnessGpuRasterizationToughPathRenderingCases(_Smoothness):
# With GPU Raster enabled on Mac, there's no reason to run this benchmark in
# addition to SmoothnessFiltersCases.
@benchmark.Disabled('mac')
+@benchmark.Owner(emails=['senorblanco@chromium.org'])
class SmoothnessGpuRasterizationFiltersCases(_Smoothness):
"""Tests a selection of pages with SVG and CSS filter effects with GPU
rasterization.
@@ -264,6 +277,7 @@ class SmoothnessGpuRasterizationFiltersCases(_Smoothness):
@benchmark.Enabled('android')
+@benchmark.Owner(emails=['tdresser@chromium.org', 'rbyers@chromium.org'])
class SmoothnessSyncScrollKeyMobileSites(_Smoothness):
"""Measures rendering statistics for the key mobile sites with synchronous
(main thread) scrolling.
@@ -285,6 +299,7 @@ class SmoothnessSyncScrollKeyMobileSites(_Smoothness):
@benchmark.Enabled('android')
+@benchmark.Owner(emails=['vmiura@chromium.org'])
class SmoothnessSimpleMobilePages(_Smoothness):
"""Measures rendering statistics for simple mobile sites page set.
"""
@@ -296,6 +311,7 @@ class SmoothnessSimpleMobilePages(_Smoothness):
@benchmark.Disabled('all') # http://crbug.com/631015
+@benchmark.Owner(emails=['bokan@chromium.org'])
class SmoothnessToughPinchZoomCases(_Smoothness):
"""Measures rendering statistics for pinch-zooming in the tough pinch zoom
cases.
@@ -316,6 +332,7 @@ class SmoothnessToughPinchZoomCases(_Smoothness):
@benchmark.Enabled('mac')
+@benchmark.Owner(emails=['ericrk@chromium.org'])
class SmoothnessDesktopToughPinchZoomCases(_Smoothness):
"""Measures rendering statistics for pinch-zooming in the tough pinch zoom
cases. Uses lower zoom levels customized for desktop limits.
@@ -331,6 +348,7 @@ class SmoothnessDesktopToughPinchZoomCases(_Smoothness):
# because of http://crbug.com/610021
# @benchmark.Enabled('android')
@benchmark.Disabled('all')
+@benchmark.Owner(emails=['ericrk@chromium.org'])
class SmoothnessGpuRasterizationToughPinchZoomCases(_Smoothness):
"""Measures rendering statistics for pinch-zooming in the tough pinch zoom
cases with GPU rasterization.
@@ -352,6 +370,7 @@ class SmoothnessGpuRasterizationToughPinchZoomCases(_Smoothness):
@benchmark.Enabled('android')
+@benchmark.Owner(emails=['vmiura@chromium.org'])
class SmoothnessGpuRasterizationPolymer(_Smoothness):
"""Measures rendering statistics for the Polymer cases with GPU rasterization.
"""
@@ -366,6 +385,7 @@ class SmoothnessGpuRasterizationPolymer(_Smoothness):
return 'smoothness.gpu_rasterization.polymer'
+@benchmark.Owner(emails=['reveman@chromium.org'])
class SmoothnessToughScrollingCases(_Smoothness):
page_set = page_sets.ToughScrollingCasesPageSet
@@ -382,6 +402,7 @@ class SmoothnessToughScrollingCases(_Smoothness):
return 'smoothness.tough_scrolling_cases'
@benchmark.Disabled('all') # crbug.com/667489
+@benchmark.Owner(emails=['ericrk@chromium.org'])
class SmoothnessGpuRasterizationToughScrollingCases(_Smoothness):
tag = 'gpu_rasterization'
test = smoothness.Smoothness
@@ -406,6 +427,7 @@ class SmoothnessToughImageDecodeCases(_Smoothness):
@benchmark.Disabled('android') # http://crbug.com/610015
+@benchmark.Owner(emails=['cblume@chromium.org'])
class SmoothnessImageDecodingCases(_Smoothness):
"""Measures decoding statistics for jpeg images.
"""
@@ -425,6 +447,7 @@ class SmoothnessImageDecodingCases(_Smoothness):
@benchmark.Disabled('android') # http://crbug.com/513699
+@benchmark.Owner(emails=['cblume@chromium.org'])
class SmoothnessGpuImageDecodingCases(_Smoothness):
"""Measures decoding statistics for jpeg images with GPU rasterization.
"""
@@ -442,6 +465,7 @@ class SmoothnessGpuImageDecodingCases(_Smoothness):
@benchmark.Enabled('android')
+@benchmark.Owner(emails=['picksi@chromium.org'])
class SmoothnessPathologicalMobileSites(_Smoothness):
"""Measures task execution statistics while scrolling pathological sites.
"""
@@ -459,6 +483,7 @@ class SmoothnessPathologicalMobileSites(_Smoothness):
return False
+@benchmark.Owner(emails=['vmiura@chromium.org'])
class SmoothnessToughTextureUploadCases(_Smoothness):
page_set = page_sets.ToughTextureUploadCasesPageSet
@@ -467,6 +492,7 @@ class SmoothnessToughTextureUploadCases(_Smoothness):
return 'smoothness.tough_texture_upload_cases'
+@benchmark.Owner(emails=['skyostil@chromium.org'])
class SmoothnessToughAdCases(_Smoothness):
"""Measures rendering statistics while displaying advertisements."""
page_set = page_sets.SyntheticToughAdCasesPageSet
@@ -489,6 +515,7 @@ class SmoothnessToughAdCases(_Smoothness):
# http://crbug.com/522619 (mac/win)
# http://crbug.com/683247 (android/linux)
@benchmark.Disabled('win', 'mac', 'android', 'linux')
+@benchmark.Owner(emails=['skyostil@chromium.org'])
class SmoothnessScrollingToughAdCases(_Smoothness):
"""Measures rendering statistics while scrolling advertisements."""
page_set = page_sets.ScrollingToughAdCasesPageSet
@@ -503,6 +530,7 @@ class SmoothnessScrollingToughAdCases(_Smoothness):
return 'smoothness.scrolling_tough_ad_cases'
+@benchmark.Owner(emails=['skyostil@chromium.org'])
class SmoothnessToughWebGLAdCases(_Smoothness):
"""Measures rendering statistics while scrolling advertisements."""
page_set = page_sets.SyntheticToughWebglAdCasesPageSet
« no previous file with comments | « tools/perf/benchmarks/skpicture_printer.py ('k') | tools/perf/benchmarks/spaceport.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698