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

Unified Diff: build/android/pylib/host_driven/test_case.py

Issue 693943003: Update from https://crrev.com/302630 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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/host_driven/setup.py ('k') | build/android/pylib/host_driven/test_runner.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/host_driven/test_case.py
diff --git a/build/android/pylib/host_driven/test_case.py b/build/android/pylib/host_driven/test_case.py
index fe8c3630cd8f2c15aa5986009e297a42e21c17fb..8c372cda54d9c62c7e222e08275902f8fdec7f39 100644
--- a/build/android/pylib/host_driven/test_case.py
+++ b/build/android/pylib/host_driven/test_case.py
@@ -57,7 +57,6 @@ class HostDrivenTestCase(object):
self.has_forwarded_ports = False
self.instrumentation_options = instrumentation_options
self.ports_to_forward = []
- self.push_deps = False
self.shard_index = 0
# Use tagged_name when creating results, so that we can identify host-driven
@@ -68,7 +67,7 @@ class HostDrivenTestCase(object):
# TODO(bulach): make ports_to_forward not optional and move the Forwarder
# mapping here.
- def SetUp(self, device, shard_index, push_deps,
+ def SetUp(self, device, shard_index,
cleanup_test_files, ports_to_forward=None):
if not ports_to_forward:
ports_to_forward = []
@@ -76,7 +75,6 @@ class HostDrivenTestCase(object):
self.shard_index = shard_index
self.device = device_utils.DeviceUtils(self.device_id)
self.adb = self.device.old_interface
- self.push_deps = push_deps
self.cleanup_test_files = cleanup_test_files
if ports_to_forward:
self.ports_to_forward = ports_to_forward
« no previous file with comments | « build/android/pylib/host_driven/setup.py ('k') | build/android/pylib/host_driven/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698