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

Unified Diff: build/android/pylib/uiautomator/test_runner.py

Issue 689293002: Add option to push files to device using isolate for instrumentation tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved shared functions into new base_setup module. Created 6 years, 1 month 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/uiautomator/test_runner.py
diff --git a/build/android/pylib/uiautomator/test_runner.py b/build/android/pylib/uiautomator/test_runner.py
index fa0725d34a48f2979abedd7354de75ad07cf2299..26c40a8925250646b0dfd022f24a0b1a40275981 100644
--- a/build/android/pylib/uiautomator/test_runner.py
+++ b/build/android/pylib/uiautomator/test_runner.py
@@ -41,7 +41,8 @@ class TestRunner(instr_test_runner.TestRunner):
test_apk_jar_path=None,
test_runner=None,
test_support_apk_path=None,
- device_flags=None)
+ device_flags=None,
+ isolate_file_path=None)
super(TestRunner, self).__init__(instrumentation_options, device,
shard_index, test_pkg)
@@ -57,10 +58,6 @@ class TestRunner(instr_test_runner.TestRunner):
self.test_pkg.Install(self.device)
#override
- def PushDataDeps(self):
- pass
-
- #override
def _RunTest(self, test, timeout):
self.device.ClearApplicationState(self._package)
if self.flags:

Powered by Google App Engine
This is Rietveld 408576698