diff options
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; } |