summaryrefslogtreecommitdiffstats
path: root/build/android
diff options
context:
space:
mode:
authorgkanwar@chromium.org <gkanwar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-21 16:26:03 +0000
committergkanwar@chromium.org <gkanwar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-21 16:26:03 +0000
commit570012ea964608d9cb148fd729a8ac05de6733f5 (patch)
tree8c704739d9de7c89c63d868dfed05f832f2b576a /build/android
parent787e977c6d96da8099acd04a5d40b82af55a1205 (diff)
downloadchromium_src-570012ea964608d9cb148fd729a8ac05de6733f5.zip
chromium_src-570012ea964608d9cb148fd729a8ac05de6733f5.tar.gz
chromium_src-570012ea964608d9cb148fd729a8ac05de6733f5.tar.bz2
[Android] Removes _RunJavaTests
Host-driven tests should use _RunJavaTestFilters instead now. NOTRY=True BUG=268683 Review URL: https://chromiumcodereview.appspot.com/22929017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218751 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android')
-rw-r--r--build/android/pylib/host_driven/test_case.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/build/android/pylib/host_driven/test_case.py b/build/android/pylib/host_driven/test_case.py
index f5bb803..3387c94 100644
--- a/build/android/pylib/host_driven/test_case.py
+++ b/build/android/pylib/host_driven/test_case.py
@@ -15,8 +15,9 @@ which the test method will run against. The test runner runs the test method
itself, collecting the result, and calls TearDown.
Tests can perform arbitrary Python commands and asserts in test methods. Tests
-that run instrumentation tests can make use of the _RunJavaTests helper function
-to trigger Java tests and convert results into a single host-driven test result.
+that run instrumentation tests can make use of the _RunJavaTestFilters helper
+function to trigger Java tests and convert results into a single host-driven
+test result.
"""
import logging
@@ -96,11 +97,6 @@ class HostDrivenTestCase(object):
finally:
java_test_runner.TearDown()
- # TODO(gkanwar): Remove old method once downstream tests are updated
- def _RunJavaTests(self, package_name, tests):
- """Calls a list of tests and stops at the first test failure."""
- return self._RunJavaTestFilters(tests)
-
def _RunJavaTestFilters(self, test_filters):
"""Calls a list of tests and stops at the first test failure.