summaryrefslogtreecommitdiff
path: root/cs/config/TestUtil.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-06-08 13:15:58 +0000
committerMark Spruiell <mes@zeroc.com>2006-06-08 13:15:58 +0000
commit06452799f7dc3cacf7ab48160cb7537c64fda233 (patch)
tree5cea0ec361733ac0a40df9fa0e91549f86b57fd7 /cs/config/TestUtil.py
parentRemoved support for declaring direct adapters. (diff)
downloadice-06452799f7dc3cacf7ab48160cb7537c64fda233.tar.bz2
ice-06452799f7dc3cacf7ab48160cb7537c64fda233.tar.xz
ice-06452799f7dc3cacf7ab48160cb7537c64fda233.zip
bug fix in mixedClientServerTest...
Diffstat (limited to 'cs/config/TestUtil.py')
-rw-r--r--cs/config/TestUtil.py8
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"