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

Unified Diff: tools/perf/benchmarks/blink_perf.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/battor.py ('k') | tools/perf/benchmarks/dromaeo.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/blink_perf.py
diff --git a/tools/perf/benchmarks/blink_perf.py b/tools/perf/benchmarks/blink_perf.py
index 9fb9e097c9b3f7d4d70cddbf36c199783f9758c3..1c676846fa561aa87c53cae5a0a21cd2d45cbd2f 100644
--- a/tools/perf/benchmarks/blink_perf.py
+++ b/tools/perf/benchmarks/blink_perf.py
@@ -184,6 +184,9 @@ class _SharedPywebsocketPageState(shared_page_state.SharedPageState):
self.platform.StartLocalServer(pywebsocket_server.PywebsocketServer())
+@benchmark.Owner(emails=['yukishiino@chromium.org',
+ 'bashi@chromium.org',
+ 'haraken@chromium.org'])
class BlinkPerfBindings(_BlinkPerfBenchmark):
tag = 'bindings'
subdir = 'Bindings'
@@ -203,6 +206,7 @@ class BlinkPerfBlinkGC(_BlinkPerfBenchmark):
subdir = 'BlinkGC'
+@benchmark.Owner(emails=['rune@opera.com'])
class BlinkPerfCSS(_BlinkPerfBenchmark):
tag = 'css'
subdir = 'CSS'
@@ -211,6 +215,7 @@ class BlinkPerfCSS(_BlinkPerfBenchmark):
@benchmark.Disabled('android', # http://crbug.com/685320
'android-webview', # http://crbug.com/593200
'reference') # http://crbug.com/576779
+@benchmark.Owner(emails=['junov@chromium.org'])
class BlinkPerfCanvas(_BlinkPerfBenchmark):
tag = 'canvas'
subdir = 'Canvas'
@@ -232,17 +237,22 @@ class BlinkPerfCanvas(_BlinkPerfBenchmark):
return story_set
+@benchmark.Owner(emails=['yukishiino@chromium.org',
+ 'bashi@chromium.org',
+ 'haraken@chromium.org'])
class BlinkPerfDOM(_BlinkPerfBenchmark):
tag = 'dom'
subdir = 'DOM'
+@benchmark.Owner(emails=['hayato@chromium.org'])
class BlinkPerfEvents(_BlinkPerfBenchmark):
tag = 'events'
subdir = 'Events'
@benchmark.Disabled('win8') # http://crbug.com/462350
+@benchmark.Owner(emails=['eae@chromium.org'])
class BlinkPerfLayout(_BlinkPerfBenchmark):
tag = 'layout'
subdir = 'Layout'
@@ -252,6 +262,7 @@ class BlinkPerfLayout(_BlinkPerfBenchmark):
return cls.IsSvelte(possible_browser) # http://crbug.com/551950
+@benchmark.Owner(emails=['wangxianzhu@chromium.org'])
class BlinkPerfPaint(_BlinkPerfBenchmark):
test = _BlinkPerfPaintMeasurement
tag = 'paint'
@@ -263,16 +274,21 @@ class BlinkPerfPaint(_BlinkPerfBenchmark):
@benchmark.Disabled('win') # crbug.com/488493
+@benchmark.Owner(emails=['yukishiino@chromium.org',
+ 'bashi@chromium.org',
+ 'haraken@chromium.org'])
class BlinkPerfParser(_BlinkPerfBenchmark):
tag = 'parser'
subdir = 'Parser'
+@benchmark.Owner(emails=['kouhei@chromium.org', 'fs@opera.com'])
class BlinkPerfSVG(_BlinkPerfBenchmark):
tag = 'svg'
subdir = 'SVG'
+@benchmark.Owner(emails=['hayato@chromium.org'])
class BlinkPerfShadowDOM(_BlinkPerfBenchmark):
tag = 'shadow_dom'
subdir = 'ShadowDOM'
@@ -280,6 +296,7 @@ class BlinkPerfShadowDOM(_BlinkPerfBenchmark):
# This benchmark is for local testing, doesn't need to run on bots.
@benchmark.Disabled('all')
+@benchmark.Owner(emails=['tyoshino@chromium.org', 'hiroshige@chromium.org'])
class BlinkPerfXMLHttpRequest(_BlinkPerfBenchmark):
tag = 'xml_http_request'
subdir = 'XMLHttpRequest'
@@ -289,6 +306,7 @@ class BlinkPerfXMLHttpRequest(_BlinkPerfBenchmark):
#@benchmark.Disabled('win', 'chromeos')
# Disabling on remaining platforms due to heavy flake https://crbug.com/646938
@benchmark.Disabled('all')
+@benchmark.Owner(emails=['tyoshino@chromium.org', 'yhirano@chromium.org'])
class BlinkPerfPywebsocket(_BlinkPerfBenchmark):
"""The blink_perf.pywebsocket tests measure turn-around-time of 10MB
send/receive for XHR, Fetch API and WebSocket. We might ignore < 10%
« no previous file with comments | « tools/perf/benchmarks/battor.py ('k') | tools/perf/benchmarks/dromaeo.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698