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

Unified Diff: build/android/pylib/instrumentation/setup.py

Issue 19799003: [android] Instumentation tests determine whether to install test apk based on Md5Sum. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unnecessary import Created 7 years, 5 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
Index: build/android/pylib/instrumentation/setup.py
diff --git a/build/android/pylib/instrumentation/setup.py b/build/android/pylib/instrumentation/setup.py
index 628adbcb52e997aa0975ef43be54a7e5d637b275..1c09acfd4fc15b3fe39e2ca099d7f57add9b5fde 100644
--- a/build/android/pylib/instrumentation/setup.py
+++ b/build/android/pylib/instrumentation/setup.py
@@ -17,7 +17,7 @@ import test_runner
def Setup(test_apk_path, test_apk_jar_path, annotations, exclude_annotations,
- test_filter, build_type, test_data, install_apk, save_perf_json,
+ test_filter, build_type, test_data, save_perf_json,
screenshot_failures, tool, wait_for_debugger, disable_assertions,
push_deps, cleanup_test_files):
"""Create and return the test runner factory and tests.
@@ -30,7 +30,6 @@ def Setup(test_apk_path, test_apk_jar_path, annotations, exclude_annotations,
test_filter: Filter string for tests.
build_type: 'Release' or 'Debug'.
test_data: Location of the test data.
- install_apk: Re-installs the apk if opted.
save_perf_json: Whether or not to save the JSON file from UI perf tests.
screenshot_failures: Take a screenshot for a test failure
tool: Name of the Valgrind tool.
@@ -50,7 +49,7 @@ def Setup(test_apk_path, test_apk_jar_path, annotations, exclude_annotations,
def TestRunnerFactory(device, shard_index):
return test_runner.TestRunner(
- build_type, test_data, install_apk, save_perf_json, screenshot_failures,
+ build_type, test_data, save_perf_json, screenshot_failures,
tool, wait_for_debugger, disable_assertions, push_deps,
cleanup_test_files, device, shard_index, test_pkg, [])
« no previous file with comments | « build/android/pylib/host_driven/run_python_tests.py ('k') | build/android/pylib/instrumentation/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698