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

Unified Diff: build/android/pylib/host_driven/test_case.py

Issue 1680233002: Android Add _incremental targets for instrumentation tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 10 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/host_driven/test_case.py
diff --git a/build/android/pylib/host_driven/test_case.py b/build/android/pylib/host_driven/test_case.py
index d68d47a39bd9ee31e4fa4a4fa5e2ff6576613a0a..76c738d324716be9e2cdc3ba4421ee4b6f266bad 100644
--- a/build/android/pylib/host_driven/test_case.py
+++ b/build/android/pylib/host_driven/test_case.py
@@ -146,10 +146,13 @@ class HostDrivenTestCase(object):
test_type = base_test_result.ResultType.PASS
log = ''
+ opts = self.instrumentation_options
test_pkg = test_package.TestPackage(
- self.instrumentation_options.test_apk_path,
- self.instrumentation_options.test_apk_jar_path,
- self.instrumentation_options.test_support_apk_path)
+ opts.test_apk_path,
+ opts.test_apk_jar_path,
+ opts.test_support_apk_path,
+ test_apk_incremental_install_script=
+ opts.test_apk_incremental_install_script)
start_ms = int(time.time()) * 1000
done = False

Powered by Google App Engine
This is Rietveld 408576698