Index: build/android/pylib/instrumentation/setup.py |
diff --git a/build/android/pylib/instrumentation/setup.py b/build/android/pylib/instrumentation/setup.py |
index ceaab042aa1ff788d64cfd9c91661d6835aebcfc..b40137114e3eb621cd3ee11a3c56d0148c82304f 100644 |
--- a/build/android/pylib/instrumentation/setup.py |
+++ b/build/android/pylib/instrumentation/setup.py |
@@ -75,9 +75,12 @@ def Setup(test_options, devices): |
os.path.exists(test_options.coverage_dir)): |
os.makedirs(test_options.coverage_dir) |
- test_pkg = test_package.TestPackage(test_options.test_apk_path, |
- test_options.test_apk_jar_path, |
- test_options.test_support_apk_path) |
+ test_pkg = test_package.TestPackage( |
+ test_options.test_apk_path, |
+ test_options.test_apk_jar_path, |
+ test_options.test_support_apk_path, |
+ additional_apks=test_options.additional_apks, |
+ apk_under_test=test_options.apk_under_test) |
tests = test_pkg.GetAllMatchingTests( |
test_options.annotations, |
test_options.exclude_annotations, |