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

Unified Diff: build/android/pylib/instrumentation/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/gtest/test_runner.py ('k') | chrome/unit_tests.isolate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/instrumentation/test_runner.py
diff --git a/build/android/pylib/instrumentation/test_runner.py b/build/android/pylib/instrumentation/test_runner.py
index 60000bf71be0e2d871b8430e6cee4bd9ee5c5d76..0a30da6d94351ab849cea7562e1f4ca8077ee044 100644
--- a/build/android/pylib/instrumentation/test_runner.py
+++ b/build/android/pylib/instrumentation/test_runner.py
@@ -104,8 +104,10 @@ class TestRunner(base_test_runner.BaseTestRunner):
if test_data:
# Make sure SD card is ready.
self.adb.WaitForSdCardReady(20)
- for data in test_data:
- self.CopyTestData([data], self.adb.GetExternalStorage())
+ for p in test_data:
+ self.adb.PushIfNeeded(
+ os.path.join(constants.DIR_SOURCE_ROOT, p),
+ os.path.join(self.adb.GetExternalStorage(), p))
# TODO(frankf): Specify test data in this file as opposed to passing
# as command-line.
« no previous file with comments | « build/android/pylib/gtest/test_runner.py ('k') | chrome/unit_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698