diff options
author | Jose <jose@zeroc.com> | 2014-08-07 01:00:42 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-08-07 01:00:42 +0200 |
commit | d86ef31c63190285dda3233b8ee2cb5d381c7686 (patch) | |
tree | 653d33813fef2d5997916d8462f516646af919c3 /cpp/test/IceSSL/configuration/Client.cpp | |
parent | updating .depend files (diff) | |
download | ice-d86ef31c63190285dda3233b8ee2cb5d381c7686.tar.bz2 ice-d86ef31c63190285dda3233b8ee2cb5d381c7686.tar.xz ice-d86ef31c63190285dda3233b8ee2cb5d381c7686.zip |
Windows SSL SChannel implementation & OS X Secure Transport fixes.
Diffstat (limited to 'cpp/test/IceSSL/configuration/Client.cpp')
-rw-r--r-- | cpp/test/IceSSL/configuration/Client.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/test/IceSSL/configuration/Client.cpp b/cpp/test/IceSSL/configuration/Client.cpp index 6ecc87b3561..e99831bdee8 100644 --- a/cpp/test/IceSSL/configuration/Client.cpp +++ b/cpp/test/IceSSL/configuration/Client.cpp @@ -8,6 +8,7 @@ // ********************************************************************** #include <Ice/Ice.h> +#include <IceSSL/IceSSL.h> using namespace std; @@ -20,9 +21,12 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) return 1; } - void allTests(const Ice::CommunicatorPtr&, const string&); + void allTests(const Ice::CommunicatorPtr&, const string&, bool, bool); - allTests(communicator, argv[1]); + cerr << "testing with PKCS12 certificates..." << endl; + allTests(communicator, argv[1], true, false); + cerr << "testing with PEM certificates..." << endl; + allTests(communicator, argv[1], false, true); return EXIT_SUCCESS; } |