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

Unified Diff: build/android/pylib/gtest/test_package.py

Issue 12317059: [Andoid] Threaded TestRunner creation and SetUp and TearDown calls. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: improved naming, comments, and simplified logic in threadsafe test collection Created 7 years, 10 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: build/android/pylib/gtest/test_package.py
diff --git a/build/android/pylib/gtest/test_package.py b/build/android/pylib/gtest/test_package.py
index be153a0ddb2f8fddc57e792ab5f33b048531eb10..5dc56e86e34c9d81b39aabff432fc24907a46f2e 100644
--- a/build/android/pylib/gtest/test_package.py
+++ b/build/android/pylib/gtest/test_package.py
@@ -44,6 +44,10 @@ class TestPackage(object):
timeout = timeout * 2
self.timeout = timeout * self.tool.GetTimeoutScale()
+ def ClearApplicationState(self):
+ """Clears the application state."""
+ raise NotImplementedError('Method must be overriden.')
+
def GetDisabledPrefixes(self):
return ['DISABLED_', 'FLAKY_', 'FAILS_']

Powered by Google App Engine
This is Rietveld 408576698