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

Unified Diff: tools/telemetry/telemetry/page/page_test.py

Issue 100443007: telemetry: handle tests that are not supported on a platform. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and fixes for run_benchmark case. 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
Index: tools/telemetry/telemetry/page/page_test.py
diff --git a/tools/telemetry/telemetry/page/page_test.py b/tools/telemetry/telemetry/page/page_test.py
index 72493b73398615ad28f8650676db9f68e973f52f..9d31cda2d5c47d4fccee698a170d1f1af39e0702 100644
--- a/tools/telemetry/telemetry/page/page_test.py
+++ b/tools/telemetry/telemetry/page/page_test.py
@@ -53,6 +53,11 @@ class Failure(Exception):
pass
+class TestNotSupportedOnPlatformFailure(Failure):
tonyg 2014/03/14 01:32:49 Dave know this better, and I'm not exactly sure, b
+ def __init__(self, message):
+ super(TestNotSupportedOnPlatformFailure, self).__init__(message)
+
+
class PageTest(object):
"""A class styled on unittest.TestCase for creating page-specific tests."""

Powered by Google App Engine
This is Rietveld 408576698