diff options
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 6e0de3a7ac9..0a416ee8057 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -11,14 +11,17 @@ import sys, os -protocol = "tcp" +protocol = "ssl" serverOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.ServerIdleTime=30" + \ - " --Ice.Ssl.Config=TOPLEVELDIR/Certs/server_sslconfig.xml --Ice.Protocol=" + protocol + " --Ice.Ssl.CertPath=TOPLEVELDIR/Certs --Ice.Ssl.Config=server_sslconfig.xml --Ice.Protocol=" + \ + protocol -clientOptions = " --Ice.Ssl.Config=TOPLEVELDIR/Certs/client_sslconfig.xml --Ice.Protocol=" + protocol +clientOptions = " --Ice.Ssl.CertPath=TOPLEVELDIR/Certs --Ice.Ssl.Config=client_sslconfig.xml --Ice.Protocol=" + \ + protocol -collocatedOptions = " --Ice.Ssl.Config=TOPLEVELDIR/Certs/sslconfig.xml --Ice.Protocol=" + protocol +collocatedOptions = " --Ice.Ssl.CertPath=TOPLEVELDIR/Certs --Ice.Ssl.Config=sslconfig.xml --Ice.Protocol=" + \ + protocol serverPids = [] |