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

Unified Diff: build/android/run_instrumentation_tests.py

Issue 11741025: Seperate apk_info and jar_info. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added TOO Created 7 years, 12 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/utils/jar_info.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/run_instrumentation_tests.py
diff --git a/build/android/run_instrumentation_tests.py b/build/android/run_instrumentation_tests.py
index f484dac9d5759b67fc15b18f7f529f818b759f5a..1a686265256d33cb6a03b6d392a0eed5ebf466dc 100755
--- a/build/android/run_instrumentation_tests.py
+++ b/build/android/run_instrumentation_tests.py
@@ -11,7 +11,6 @@ import os
import sys
import time
-from pylib import apk_info
from pylib import buildbot_report
from pylib import constants
from pylib import ports
@@ -20,6 +19,7 @@ from pylib import run_python_tests
from pylib import run_tests_helper
from pylib import test_options_parser
from pylib.test_result import TestResults
+from pylib.utils import apk_and_jar_info
def DispatchInstrumentationTests(options):
@@ -49,7 +49,8 @@ def DispatchInstrumentationTests(options):
if options.run_java_tests:
java_results = run_java_tests.DispatchJavaTests(
options,
- [apk_info.ApkInfo(options.test_apk_path, options.test_apk_jar_path)])
+ [apk_and_jar_info.ApkAndJarInfo(options.test_apk_path,
+ options.test_apk_jar_path)])
if options.run_python_tests:
python_results = run_python_tests.DispatchPythonTests(options)
« no previous file with comments | « build/android/pylib/utils/jar_info.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698