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

Unified Diff: tools/telemetry/telemetry/test_runner.py

Issue 48793006: [Telemetry] Disable blink_perf.web_animations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | « tools/perf/benchmarks/blink_perf.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/test_runner.py
diff --git a/tools/telemetry/telemetry/test_runner.py b/tools/telemetry/telemetry/test_runner.py
index e19902f340df6a755a75f64a11ce2c99e95ccd59..045fc5ae76632adf1d62932d24cdaff38e09fc84 100644
--- a/tools/telemetry/telemetry/test_runner.py
+++ b/tools/telemetry/telemetry/test_runner.py
@@ -138,6 +138,9 @@ class Run(Command):
self._test = matching_tests.popitem()[1]
def Run(self, options, args):
+ if not self._test.enabled:
+ print >> sys.stderr, 'TEST IS DISABLIED. SKIPPING.'
dtu 2013/10/29 17:52:45 DISABLED
+ return 0
return min(255, self._test().Run(copy.copy(options)))
« no previous file with comments | « tools/perf/benchmarks/blink_perf.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698