diff options
author | Marc Laukien <marc@zeroc.com> | 2001-11-22 18:02:44 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-11-22 18:02:44 +0000 |
commit | 97319abcf46cd3a1f0a389073b73360a1c5c03c8 (patch) | |
tree | e6dd1ccd23468e55e4b34f5a609022bf25dc5b33 /cpp/config/TestUtil.py | |
parent | Removed reference to --Ice.Address - Shouldn't have been checked in in the (diff) | |
download | ice-97319abcf46cd3a1f0a389073b73360a1c5c03c8.tar.bz2 ice-97319abcf46cd3a1f0a389073b73360a1c5c03c8.tar.xz ice-97319abcf46cd3a1f0a389073b73360a1c5c03c8.zip |
preparation for blobification
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 3f2557c07ce..034e5f0decf 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -13,15 +13,16 @@ import sys, os protocol = "ssl" -serverOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.ServerIdleTime=30" + \ - " --Ice.Ssl.CertPath=TOPLEVELDIR/certs --Ice.Ssl.Config=server_sslconfig.xml" + \ - " --Ice.Protocol=" + protocol +serverOptions = \ +" --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.WarnAboutServerExceptions=1 --Ice.ServerIdleTime=30" + \ +" --Ice.Ssl.CertPath=TOPLEVELDIR/certs --Ice.Ssl.Config=server_sslconfig.xml --Ice.Protocol=" + protocol -clientOptions = " --Ice.Ssl.CertPath=TOPLEVELDIR/certs --Ice.Ssl.Config=client_sslconfig.xml" + \ - " --Ice.Protocol=" + protocol +clientOptions = \ +" --Ice.Ssl.CertPath=TOPLEVELDIR/certs --Ice.Ssl.Config=client_sslconfig.xml --Ice.Protocol=" + protocol -collocatedOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.Ssl.CertPath=TOPLEVELDIR/certs --Ice.Ssl.Config=sslconfig.xml" + \ - " --Ice.Protocol=" + protocol +collocatedOptions = \ +" --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.WarnAboutServerExceptions=1 --Ice.ServerIdleTime=30" + \ +" --Ice.Ssl.CertPath=TOPLEVELDIR/certs --Ice.Ssl.Config=sslconfig.xml --Ice.Protocol=" + protocol serverPids = [] |