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

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

Issue 19799003: [android] Instumentation tests determine whether to install test apk based on Md5Sum. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: automatically install package to be tested 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
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 a2692faf65e6c1608765fcb6bff815639150b2c0..2efec0e5090b3872ee0a2bb32975fa5464c7d5dd 100644
--- a/build/android/pylib/instrumentation/test_runner.py
+++ b/build/android/pylib/instrumentation/test_runner.py
@@ -58,7 +58,6 @@ class TestRunner(base_test_runner.BaseTestRunner):
Args:
options: An options object with the following required attributes:
- build_type: 'Release' or 'Debug'.
- - install_apk: Re-installs the apk if opted.
- save_perf_json: Whether or not to save the JSON file from UI perf
tests.
- screenshot_failures: Take a screenshot for a test failure
@@ -86,12 +85,10 @@ class TestRunner(base_test_runner.BaseTestRunner):
self.disable_assertions = options.disable_assertions
self.test_pkg = test_pkg
self.ports_to_forward = ports_to_forward
- self.install_apk = options.install_apk
frankf 2013/07/20 02:18:35 Rebase
craigdh 2013/07/22 19:03:14 Done.
#override
def InstallTestPackage(self):
- if self.install_apk:
- self.test_pkg.Install(self.adb)
+ self.test_pkg.Install(self.adb)
#override
def PushDataDeps(self):

Powered by Google App Engine
This is Rietveld 408576698