summaryrefslogtreecommitdiff
path: root/cpp/config/TestUtil.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r--cpp/config/TestUtil.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py
index b6dde9fe40f..80285768c39 100644
--- a/cpp/config/TestUtil.py
+++ b/cpp/config/TestUtil.py
@@ -69,14 +69,12 @@ def clientServerTest(toplevel, name):
updatedClientOptions = clientOptions.replace("TOPLEVELDIR", toplevel)
print "starting server...",
- print server + updatedServerOptions
serverPipe = os.popen(server + updatedServerOptions)
getServerPid(serverPipe)
getAdapterReady(serverPipe)
print "ok"
print "starting client...",
- print client + updatedClientOptions
clientPipe = os.popen(client + updatedClientOptions)
output = clientPipe.readline()
if not output: