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: |