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

Unified Diff: build/android/test_runner.py

Issue 336373004: Install support APK together with test APK (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits Created 6 years, 6 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/instrumentation/test_package.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index 05a1c2b6a28af1b0628d04db0356968d7555743a..ac6d662a88934c8279b6c22387feaaf0ddf2b379 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -277,6 +277,10 @@ def ProcessInstrumentationOptions(options, error_func):
constants.SDK_BUILD_TEST_JAVALIB_DIR,
'%s.jar' % options.test_apk)
+ options.test_support_apk_path = '%sSupport%s' % (
+ os.path.splitext(options.test_apk_path))
+
+
return instrumentation_test_options.InstrumentationOptions(
options.tool,
options.cleanup_test_files,
@@ -291,7 +295,9 @@ def ProcessInstrumentationOptions(options, error_func):
options.coverage_dir,
options.test_apk,
options.test_apk_path,
- options.test_apk_jar_path)
+ options.test_apk_jar_path,
+ options.test_support_apk_path
+ )
def AddUIAutomatorTestOptions(option_parser):
« no previous file with comments | « build/android/pylib/instrumentation/test_package.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698