summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2001-11-21 20:56:07 +0000
committerAnthony Neal <aneal@zeroc.com>2001-11-21 20:56:07 +0000
commit1ca3ca7b274286a123fe7452ea25bade46a14869 (patch)
tree0a5dddc2a5c2c0e381a0c0abc3e12e713c098742 /cpp
parentUpdates a problem regarding a null SSL_CTX*, caused by missing (diff)
downloadice-1ca3ca7b274286a123fe7452ea25bade46a14869.tar.bz2
ice-1ca3ca7b274286a123fe7452ea25bade46a14869.tar.xz
ice-1ca3ca7b274286a123fe7452ea25bade46a14869.zip
Updated the IcePack startup to use the collocted commands instead of
server.
Diffstat (limited to 'cpp')
-rwxr-xr-xcpp/test/IcePack/simple/run.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/IcePack/simple/run.py b/cpp/test/IcePack/simple/run.py
index a28925d5126..92b20842309 100755
--- a/cpp/test/IcePack/simple/run.py
+++ b/cpp/test/IcePack/simple/run.py
@@ -25,8 +25,9 @@ icePackAdmin = os.path.normpath(toplevel + "/bin/icepackadmin")
updatedServerOptions = TestUtil.serverOptions.replace("TOPLEVELDIR", toplevel)
updatedClientOptions = TestUtil.clientOptions.replace("TOPLEVELDIR", toplevel)
+updatedCollocatedOptions = TestUtil.collocatedOptions.replace("TOPLEVELDIR", toplevel)
-command = icePack + updatedServerOptions + ' --nowarn' + \
+command = icePack + updatedCollocatedOptions + ' --nowarn' + \
r' "--Ice.Adapter.Forward.Endpoints=' + TestUtil.protocol + ' -p 12346 -t 5000"' + \
r' "--Ice.Adapter.Admin.Endpoints=' + TestUtil.protocol + ' -p 12347 -t 5000"'
print "starting icepack...",