diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-06-08 13:15:58 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-06-08 13:15:58 +0000 |
commit | 06452799f7dc3cacf7ab48160cb7537c64fda233 (patch) | |
tree | 5cea0ec361733ac0a40df9fa0e91549f86b57fd7 /cs/config/TestUtil.py | |
parent | Removed support for declaring direct adapters. (diff) | |
download | ice-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.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" |