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

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

Issue 192173002: [Telemetry] Disable rasterize and record and rasterize and record micro on mac. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | tools/perf/benchmarks/rasterize_and_record_micro.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/rasterize_and_record.py
diff --git a/tools/perf/benchmarks/rasterize_and_record.py b/tools/perf/benchmarks/rasterize_and_record.py
index 98b62ca8f81e3c4a002e0cef2b617f3f13daf41c..173c8affb5f1464b16ee617e2bf86645a3e37a78 100644
--- a/tools/perf/benchmarks/rasterize_and_record.py
+++ b/tools/perf/benchmarks/rasterize_and_record.py
@@ -8,10 +8,11 @@ from benchmarks import silk_flags
from measurements import rasterize_and_record
-# RasterizeAndRecord disabled on linux because no raster times are reported.
-# TODO: re-enable when unittests are happy on linux.
+# RasterizeAndRecord disabled on linux because no raster times are reported and
+# on mac because Chrome DCHECKS.
+# TODO: Re-enable when unittests are happy on linux and mac: crbug.com/350684.
-@test.Disabled('linux')
+@test.Disabled('linux', 'mac')
class RasterizeAndRecordTop25(test.Test):
"""Measures rasterize and record performance on the top 25 web pages.
@@ -20,7 +21,7 @@ class RasterizeAndRecordTop25(test.Test):
page_set = 'page_sets/top_25.json'
-@test.Disabled('linux')
+@test.Disabled('linux', 'mac')
class RasterizeAndRecordKeyMobileSites(test.Test):
"""Measures rasterize and record performance on the key mobile sites.
@@ -29,7 +30,7 @@ class RasterizeAndRecordKeyMobileSites(test.Test):
page_set = 'page_sets/key_mobile_sites.json'
-@test.Disabled('linux')
+@test.Disabled('linux', 'mac')
class RasterizeAndRecordSilk(test.Test):
"""Measures rasterize and record performance on the silk sites.
@@ -38,6 +39,7 @@ class RasterizeAndRecordSilk(test.Test):
page_set = 'page_sets/key_silk_cases.json'
+@test.Disabled('linux', 'mac')
class RasterizeAndRecordFastPathSilk(test.Test):
"""Measures rasterize and record performance on the silk sites.
« no previous file with comments | « no previous file | tools/perf/benchmarks/rasterize_and_record_micro.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698