summaryrefslogtreecommitdiff
path: root/cpp/test/IceSSL/configuration/Client.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-12-09 11:23:45 +0100
committerBenoit Foucher <benoit@zeroc.com>2016-12-09 11:23:45 +0100
commitcd3b8da7e09c4ad900313f9e4340eca605f7959a (patch)
tree65fc1c0ec9113a209f112f66b0933d43a75bd30e /cpp/test/IceSSL/configuration/Client.cpp
parentUpdates to support Windows binary distribution testing (diff)
downloadice-cd3b8da7e09c4ad900313f9e4340eca605f7959a.tar.bz2
ice-cd3b8da7e09c4ad900313f9e4340eca605f7959a.tar.xz
ice-cd3b8da7e09c4ad900313f9e4340eca605f7959a.zip
iOS controller fixes
Diffstat (limited to 'cpp/test/IceSSL/configuration/Client.cpp')
-rw-r--r--cpp/test/IceSSL/configuration/Client.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/IceSSL/configuration/Client.cpp b/cpp/test/IceSSL/configuration/Client.cpp
index fb42ae4efe0..765122fd874 100644
--- a/cpp/test/IceSSL/configuration/Client.cpp
+++ b/cpp/test/IceSSL/configuration/Client.cpp
@@ -47,13 +47,14 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
catch(const IceSSL::CertificateReadException& ex)
{
cout << "couldn't read certificate: " << ex.reason << endl;
+ return EXIT_FAILURE;
}
catch(const std::exception& ex)
{
cout << "unexpected exception: " << ex.what() << endl;
+ return EXIT_FAILURE;
}
return EXIT_SUCCESS;
-
}
int