summaryrefslogtreecommitdiff
path: root/cpp/config/TestUtil.py
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-09-03 14:06:11 +0000
committerMarc Laukien <marc@zeroc.com>2001-09-03 14:06:11 +0000
commit4d86d6b09be5e53fba48daf184723cfa7035bb8f (patch)
tree918dc0a7e40e022ddb98e26180c172ec546bedb3 /cpp/config/TestUtil.py
parentfixes (diff)
downloadice-4d86d6b09be5e53fba48daf184723cfa7035bb8f.tar.bz2
ice-4d86d6b09be5e53fba48daf184723cfa7035bb8f.tar.xz
ice-4d86d6b09be5e53fba48daf184723cfa7035bb8f.zip
fixes
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r--cpp/config/TestUtil.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py
index d4b1040c8b3..6d7f3adf14a 100644
--- a/cpp/config/TestUtil.py
+++ b/cpp/config/TestUtil.py
@@ -34,12 +34,16 @@ def clientServerTest(toplevel, name):
client = os.path.normpath(testdir + "/client")
print "starting server...",
- serverPipe = os.popen(server + " --Ice.PrintProcessId")
+ serverPipe = os.popen(server + " --Ice.PrintProcessId --Ice.PrintAdapterReady")
output = serverPipe.readline().strip()
if not output:
print "failed!"
sys.exit(0)
serverPids.append(int(output))
+ output = serverPipe.readline().strip()
+ if not output:
+ print "failed!"
+ sys.exit(0)
print "ok"
print "starting client...",