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

Unified Diff: build/android/pylib/python_test_base.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/apk_info.py ('k') | build/android/pylib/run_java_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/python_test_base.py
diff --git a/build/android/pylib/python_test_base.py b/build/android/pylib/python_test_base.py
index d2cdfb09321051549eb1662c42f00bd8f796c9c2..1b7f76cc97f821d4b055816ce39c7036ffe8705d 100644
--- a/build/android/pylib/python_test_base.py
+++ b/build/android/pylib/python_test_base.py
@@ -24,9 +24,9 @@ import os
import time
import android_commands
-import apk_info
from run_java_tests import TestRunner
from test_result import SingleTestResult, TestResults
+from utils import apk_and_jar_info
# aka the parent of com.google.android
@@ -75,8 +75,8 @@ class PythonTestBase(object):
TestResults object with a single test result.
"""
test = self._ComposeFullTestName(fname, suite, test)
- apks = [apk_info.ApkInfo(self.options.test_apk_path,
- self.options.test_apk_jar_path)]
+ apks = [apk_and_jar_info.ApkAndJarInfo(self.options.test_apk_path,
+ self.options.test_apk_jar_path)]
java_test_runner = TestRunner(self.options, self.device_id, [test], False,
self.shard_index,
apks,
« no previous file with comments | « build/android/pylib/apk_info.py ('k') | build/android/pylib/run_java_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698