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

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

Issue 11360248: Use the new forwarder2's Daemon implementation in device_forwarder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
Index: build/android/pylib/base_test_runner.py
diff --git a/build/android/pylib/base_test_runner.py b/build/android/pylib/base_test_runner.py
index 5355633282658f15820e5890e704b89b67419f42..433913a7def2726edb11dd4041046df0cc4962eb 100644
--- a/build/android/pylib/base_test_runner.py
+++ b/build/android/pylib/base_test_runner.py
@@ -82,7 +82,7 @@ class BaseTestRunner(object):
def SetUp(self):
"""Called before tests run."""
- Forwarder.KillDevice(self.adb)
+ Forwarder.KillDevice(self.adb, self.build_type)
def HasTests(self):
"""Whether the test suite has tests to run."""
@@ -169,7 +169,7 @@ class BaseTestRunner(object):
# Forwarders should be killed before the actual servers they're forwarding
# to as they are clients potentially with open connections and to allow for
# proper hand-shake/shutdown.
- Forwarder.KillDevice(self.adb)
+ Forwarder.KillDevice(self.adb, self.build_type)
if self._http_server:
self._http_server.ShutdownHttpServer()
if self._spawning_server:

Powered by Google App Engine
This is Rietveld 408576698