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

Unified Diff: build/android/pylib/linker/test_runner.py

Issue 696923002: Remove the unused push_deps option from the test runners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/linker/test_runner.py
diff --git a/build/android/pylib/linker/test_runner.py b/build/android/pylib/linker/test_runner.py
index 77d0dec75dd11acd0cfd982b978c086697d10c62..35eff19e8d0e071ff13bc1f41aea79ed280aea1e 100644
--- a/build/android/pylib/linker/test_runner.py
+++ b/build/android/pylib/linker/test_runner.py
@@ -49,18 +49,16 @@ class LinkerTestRunner(base_test_runner.BaseTestRunner):
"""
#override
- def __init__(self, device, tool, push_deps, cleanup_test_files):
+ def __init__(self, device, tool, cleanup_test_files):
"""Creates a new LinkerTestRunner.
Args:
device: Attached android device.
tool: Name of the Valgrind tool.
- push_deps: If True, push all dependencies to the device.
cleanup_test_files: Whether or not to cleanup test files on device.
"""
- super(LinkerTestRunner, self).__init__(device, tool, push_deps,
- cleanup_test_files)
+ super(LinkerTestRunner, self).__init__(device, tool, cleanup_test_files)
#override
def InstallTestPackage(self):

Powered by Google App Engine
This is Rietveld 408576698