diff options
Diffstat (limited to 'cpp/test/IceSSL/certificateVerification/Client.cpp')
-rw-r--r-- | cpp/test/IceSSL/certificateVerification/Client.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/cpp/test/IceSSL/certificateVerification/Client.cpp b/cpp/test/IceSSL/certificateVerification/Client.cpp index cd5e2708f76..5cfc538380f 100644 --- a/cpp/test/IceSSL/certificateVerification/Client.cpp +++ b/cpp/test/IceSSL/certificateVerification/Client.cpp @@ -104,8 +104,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { cout << "ok" << endl; } - catch(const Ice::LocalException&) + catch(const Ice::LocalException& ex) { + cout << ex << endl; km->shutdown(); test(false); } @@ -125,8 +126,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { cout << "ok" << endl; } - catch(const Ice::LocalException&) + catch(const Ice::LocalException& ex) { + cout << ex << endl; km->shutdown(); test(false); } @@ -155,8 +157,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) // generating this exception. cout << "ok" << endl; } - catch(const Ice::LocalException&) + catch(const Ice::LocalException& ex) { + cout << ex << endl; km->shutdown(); test(false); } @@ -172,8 +175,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) pinger5->ping(); cout << "ok" << endl; } - catch(const Ice::LocalException&) + catch(const Ice::LocalException& ex) { + cout << ex << endl; km->shutdown(); test(false); } |