diff options
author | Anthony Neal <aneal@zeroc.com> | 2001-11-21 20:56:07 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2001-11-21 20:56:07 +0000 |
commit | 1ca3ca7b274286a123fe7452ea25bade46a14869 (patch) | |
tree | 0a5dddc2a5c2c0e381a0c0abc3e12e713c098742 /cpp | |
parent | Updates a problem regarding a null SSL_CTX*, caused by missing (diff) | |
download | ice-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-x | cpp/test/IcePack/simple/run.py | 3 |
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...", |