diff options
Diffstat (limited to 'cs/config/TestUtil.py')
-rw-r--r-- | cs/config/TestUtil.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cs/config/TestUtil.py b/cs/config/TestUtil.py index 52e13e18456..a92c844559f 100644 --- a/cs/config/TestUtil.py +++ b/cs/config/TestUtil.py @@ -338,13 +338,17 @@ def mixedClientServerTestWithOptions(mono, name, additionalServerOptions, additi client = os.path.join(testdir, "client") print createMsg(mono, "server"), - serverPipe = os.popen(createCmd(mono, server) + clientServerOptions + " " + additionalServerOptions) + " 2>&1" + serverCmd = createCmd(mono, server) + clientServerOptions + " " + additionalServerOptions + " 2>&1" + #print "serverCmd = " + serverCmd + serverPipe = os.popen(serverCmd) getServerPid(serverPipe) getAdapterReady(serverPipe) print "ok" print createMsg(mono, "client"), - clientPipe = os.popen(createCmd(mono, client) + clientServerOptions + " " + additionalClientOptions) + " 2>&1" + clientCmd = createCmd(mono, client) + clientServerOptions + " " + additionalClientOptions + " 2>&1" + #print "clientCmd = " + clientCmd + clientPipe = os.popen(clientCmd) ignorePid(clientPipe) getAdapterReady(clientPipe) print "ok" |