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

Unified Diff: build/android/pylib/run_python_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/run_java_tests.py ('k') | build/android/pylib/utils/apk_and_jar_info.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/run_python_tests.py
diff --git a/build/android/pylib/run_python_tests.py b/build/android/pylib/run_python_tests.py
index 7d39f482958003aa30571783eee7a39e0107c820..eebfcd63f28549ceb2015dd9c5c181bea21b466a 100644
--- a/build/android/pylib/run_python_tests.py
+++ b/build/android/pylib/run_python_tests.py
@@ -10,7 +10,6 @@ import sys
import types
import android_commands
-import apk_info
import constants
import python_test_base
from python_test_caller import CallPythonTest
@@ -19,6 +18,7 @@ import run_java_tests
from run_java_tests import FatalTestException
from test_info_collection import TestInfoCollection
from test_result import TestResults
+from utils import apk_and_jar_info
def _GetPythonFiles(root, files):
@@ -84,7 +84,8 @@ def DispatchPythonTests(options):
# Copy files to each device before running any tests.
for device_id in attached_devices:
logging.debug('Pushing files to device %s', device_id)
- apks = [apk_info.ApkInfo(options.test_apk_path, options.test_apk_jar_path)]
+ apks = [apk_and_jar_info.ApkAndJarInfo(options.test_apk_path,
+ options.test_apk_jar_path)]
test_files_copier = run_java_tests.TestRunner(options, device_id,
None, False, 0, apks, [])
test_files_copier.CopyTestFilesOnce()
« no previous file with comments | « build/android/pylib/run_java_tests.py ('k') | build/android/pylib/utils/apk_and_jar_info.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698