diff options
author | Michi Henning <michi@zeroc.com> | 2003-10-20 23:04:04 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-10-20 23:04:04 +0000 |
commit | cde85c02a26501a9394d797719877f644fb3dd77 (patch) | |
tree | 90ed4a4e0ffc996d1c8851f61c6cae27085940c7 /java/config/TestUtil.py | |
parent | Bug fix (diff) | |
download | ice-cde85c02a26501a9394d797719877f644fb3dd77.tar.bz2 ice-cde85c02a26501a9394d797719877f644fb3dd77.tar.xz ice-cde85c02a26501a9394d797719877f644fb3dd77.zip |
merging changes from garbage collector
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 74d22ae7148..c3e79a79717 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -135,12 +135,12 @@ def clientServerTestWithOptions(additionalServerOptions, additionalClientOptions server = "java -ea Server --Ice.ProgramName=Server " client = "java -ea Client --Ice.ProgramName=Client " - print "starting server ...", + print "starting server...", serverPipe = os.popen(server + serverOptions + additionalServerOptions) getAdapterReady(serverPipe) print "ok" - print "starting client ...", + print "starting client...", clientPipe = os.popen(client + clientOptions + additionalClientOptions) print "ok" |