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

Unified Diff: build/android/pylib/run_python_tests.py

Issue 11780003: [Android] Revert 175082 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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
===================================================================
--- build/android/pylib/run_python_tests.py (revision 175217)
+++ build/android/pylib/run_python_tests.py (working copy)
@@ -10,6 +10,7 @@
import types
import android_commands
+import apk_info
import constants
import python_test_base
from python_test_caller import CallPythonTest
@@ -18,7 +19,6 @@
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,8 +84,7 @@
# 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_and_jar_info.ApkAndJarInfo(options.test_apk_path,
- options.test_apk_jar_path)]
+ apks = [apk_info.ApkInfo(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