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

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

Issue 1001833005: Update from https://crrev.com/320343 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Supress Created 5 years, 9 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/host_driven/test_server.py
diff --git a/build/android/pylib/host_driven/test_server.py b/build/android/pylib/host_driven/test_server.py
index 959e7a99975b8d43e5563a4e9a0e4f7572e645e7..07835000fd95e940a65ce79bb538de8aecf69b55 100644
--- a/build/android/pylib/host_driven/test_server.py
+++ b/build/android/pylib/host_driven/test_server.py
@@ -106,7 +106,8 @@ class TestServer(object):
cmd = ['python', os.path.join(src_dir, test_server_path),
'--log-to-console',
('--host=%s' % self.host),
- ('--port=%d' % self.port)] + test_server_flags
+ ('--port=%d' % self.port),
+ '--on-remote-server'] + test_server_flags
self._test_server_process = subprocess.Popen(
cmd, env={'PYTHONPATH': python_path})
test_url = 'http://%s:%d/%s' % (self.host, self.port,

Powered by Google App Engine
This is Rietveld 408576698