diff options
Diffstat (limited to 'cpp/test/IceSSL/certificateAndKeyParsing/run.py')
-rwxr-xr-x | cpp/test/IceSSL/certificateAndKeyParsing/run.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/test/IceSSL/certificateAndKeyParsing/run.py b/cpp/test/IceSSL/certificateAndKeyParsing/run.py index 8694a25caf0..c06aba50d01 100755 --- a/cpp/test/IceSSL/certificateAndKeyParsing/run.py +++ b/cpp/test/IceSSL/certificateAndKeyParsing/run.py @@ -25,7 +25,11 @@ if TestUtil.protocol != "ssl" : print "This test may only be run with SSL enabled." sys.exit(0) -testOptions = " --Ice.SSL.Test.Client.CertPath=TOPLEVELDIR/test/IceSSL/certs" +testOptions = " --Ice.SSL.Test.Client.CertPath=TOPLEVELDIR/test/IceSSL/certs" + \ + " --Ice.SSL.Server.CertPath=TOPLEVELDIR/test/IceSSL/certs" + \ + " --Ice.SSL.Server.Config= " + \ + " --Ice.SSL.Client.CertPath=TOPLEVELDIR/test/IceSSL/certs" + \ + " --Ice.SSL.Client.Config= " testdir = os.path.join(toplevel,"test", "IceSSL", "certificateAndKeyParsing") client = os.path.join(testdir, "certificateAndKeyParsing") |