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

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

Issue 51103014: telemetry: re-enable smoothness.tough_canvas_cases on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/measurements/smoothness.py
diff --git a/tools/perf/measurements/smoothness.py b/tools/perf/measurements/smoothness.py
index f7626e8d8e9bf7199f5d3a979e4fbaf81f478974..3bfd0ce5b63104f905f8d6a0563ff12a4bab6887 100644
--- a/tools/perf/measurements/smoothness.py
+++ b/tools/perf/measurements/smoothness.py
@@ -2,8 +2,6 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import sys
-
from metrics import smoothness
from metrics import timeline
from telemetry.page import page_test
@@ -33,13 +31,6 @@ class Smoothness(page_measurement.PageMeasurement):
def CustomizeBrowserOptions(self, options):
options.AppendExtraBrowserArgs('--enable-gpu-benchmarking')
- # smoothness.tough_canvas_cases fails on Android.
- # TODO(ernstm): Re-enable this test when crbug.com/311582 is fixed.
- if (sys.platform == 'android' and
- (sys.argv[-1].endswith('tough_canvas_cases'))):
- print '%s is currently disabled on Android. Skipping test.' % sys.argv[-1]
- sys.exit(0)
-
def CanRunForPage(self, page):
return hasattr(page, 'smoothness')
« 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