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

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

Issue 2558893002: [Telemetry] Disable android media test on non android platforms. (Closed)
Patch Set: Created 4 years 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/media.py
diff --git a/tools/perf/benchmarks/media.py b/tools/perf/benchmarks/media.py
index 7e9f6c6d27657189cd93497ad9ab4960fc1c16c8..f1675a4dfc71fea5164f22b06376a4e764528f60 100644
--- a/tools/perf/benchmarks/media.py
+++ b/tools/perf/benchmarks/media.py
@@ -85,6 +85,9 @@ class MediaAndroid(perf_benchmark.PerfBenchmark):
@classmethod
def ShouldDisable(cls, possible_browser):
+ # crbug.com/672059
+ if possible_browser.platform.GetOSName() != "android":
+ return True
# crbug.com/448092
if cls.IsSvelte(possible_browser):
return True
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698