diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-05-23 14:32:34 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-05-23 14:32:34 +0200 |
commit | b67b45deb5cd40e40df78f068d391a488f90b503 (patch) | |
tree | b0987ac78951f9a2c4a61505f98e851927ffdc43 /cpp/test/Glacier2/router/Client.cpp | |
parent | Fix (ICE-7900) - VC100 distribution testing fails (diff) | |
download | ice-b67b45deb5cd40e40df78f068d391a488f90b503.tar.bz2 ice-b67b45deb5cd40e40df78f068d391a488f90b503.tar.xz ice-b67b45deb5cd40e40df78f068d391a488f90b503.zip |
Fixed ICE-7886 - IceSSL/configuration failure, disabled testing of DSA keys on Windows
Diffstat (limited to 'cpp/test/Glacier2/router/Client.cpp')
-rw-r--r-- | cpp/test/Glacier2/router/Client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/Glacier2/router/Client.cpp b/cpp/test/Glacier2/router/Client.cpp index 14ee079e71e..e759edf9135 100644 --- a/cpp/test/Glacier2/router/Client.cpp +++ b/cpp/test/Glacier2/router/Client.cpp @@ -874,8 +874,9 @@ CallbackClient::run(int argc, char* argv[]) { router->destroySession(); } - catch(const Ice::LocalException&) + catch(const Ice::LocalException& ex) { + cerr << ex << endl; test(false); } cout << "ok" << endl; |