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

Unified Diff: build/android/pylib/base/base_test_runner.py

Issue 18233018: [Android] Use isolate remap instead of check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: webkit_unit_tests depend on third_party/hyphen/hyph_en_US.dic Created 7 years, 5 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 | « build/android/pylib/android_commands.py ('k') | build/android/pylib/gtest/dispatch.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/base/base_test_runner.py
diff --git a/build/android/pylib/base/base_test_runner.py b/build/android/pylib/base/base_test_runner.py
index 3fb6c269c787b9888748890ab556ed77dc3349be..171e6fc3a318f554e9f06887cc8e7287d1b169b7 100644
--- a/build/android/pylib/base/base_test_runner.py
+++ b/build/android/pylib/base/base_test_runner.py
@@ -111,20 +111,6 @@ class BaseTestRunner(object):
"""Run once after all tests are run."""
self.ShutdownHelperToolsForTestSuite()
- def CopyTestData(self, test_data_paths, dest_dir):
- """Copies |test_data_paths| list of files/directories to |dest_dir|.
-
- Args:
- test_data_paths: A list of files or directories relative to |dest_dir|
- which should be copied to the device. The paths must exist in
- |DIR_SOURCE_ROOT|.
- dest_dir: Absolute path to copy to on the device.
- """
- for p in test_data_paths:
- self.adb.PushIfNeeded(
- os.path.join(constants.DIR_SOURCE_ROOT, p),
- os.path.join(dest_dir, p))
-
def LaunchTestHttpServer(self, document_root, port=None,
extra_config_contents=None):
"""Launches an HTTP server to serve HTTP tests.
« no previous file with comments | « build/android/pylib/android_commands.py ('k') | build/android/pylib/gtest/dispatch.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698