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): |