aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-25 09:56:52 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-25 09:56:52 -0700
commitdd693422189801404514ef6f118256ec8f19728a (patch)
tree6d8989b18bd2b4a7f3b4d4f4b341059851ebb0a7 /tools/run_tests/run_tests.py
parentd383b0f7e79220966e65b55342ec37f3fbba0be6 (diff)
parentff60024eaf67dea0faf899f80c099460d87fa3ad (diff)
Merge github.com:grpc/grpc into clang_format
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index e971aaf9c3..d271137ca1 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -727,7 +727,10 @@ def _start_port_server(port_server_port):
while True:
if waits > 10:
port_server.kill()
+ if port_server.poll() is not None:
print "port_server failed to start"
+ port_log = open('portlog.txt', 'r').read()
+ print port_log
sys.exit(1)
try:
urllib2.urlopen('http://localhost:%d/get' % port_server_port,