diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-03-14 14:34:00 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-03-14 14:34:00 +0100 |
commit | d83b1a9548833642b0c13918880bf16af0697c9d (patch) | |
tree | 192108c34f3e6a16ab9ff740b7737d336cf9b3ba /cpp/test/Ice/proxy | |
parent | Added new ctors to Ice::CommunicatorHolder (diff) | |
download | ice-d83b1a9548833642b0c13918880bf16af0697c9d.tar.bz2 ice-d83b1a9548833642b0c13918880bf16af0697c9d.tar.xz ice-d83b1a9548833642b0c13918880bf16af0697c9d.zip |
Fixed testing of static builds
Diffstat (limited to 'cpp/test/Ice/proxy')
-rw-r--r-- | cpp/test/Ice/proxy/Client.cpp | 4 | ||||
-rw-r--r-- | cpp/test/Ice/proxy/Collocated.cpp | 2 | ||||
-rw-r--r-- | cpp/test/Ice/proxy/Server.cpp | 2 | ||||
-rw-r--r-- | cpp/test/Ice/proxy/ServerAMD.cpp | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/Ice/proxy/Client.cpp b/cpp/test/Ice/proxy/Client.cpp index 673fea82cd0..9d58f1c3279 100644 --- a/cpp/test/Ice/proxy/Client.cpp +++ b/cpp/test/Ice/proxy/Client.cpp @@ -30,9 +30,9 @@ int main(int argc, char* argv[]) { #ifdef ICE_STATIC_LIBS - Ice::registerIceSSL(); + Ice::registerIceSSL(false); # if defined(__linux) - Ice::registerIceBT(); + Ice::registerIceBT(false); # endif #endif diff --git a/cpp/test/Ice/proxy/Collocated.cpp b/cpp/test/Ice/proxy/Collocated.cpp index d39648f73d1..bba4295d3cb 100644 --- a/cpp/test/Ice/proxy/Collocated.cpp +++ b/cpp/test/Ice/proxy/Collocated.cpp @@ -33,7 +33,7 @@ int main(int argc, char* argv[]) { #ifdef ICE_STATIC_LIBS - Ice::registerIceSSL(); + Ice::registerIceSSL(false); #endif try diff --git a/cpp/test/Ice/proxy/Server.cpp b/cpp/test/Ice/proxy/Server.cpp index d84ca1400d5..bbf40844c93 100644 --- a/cpp/test/Ice/proxy/Server.cpp +++ b/cpp/test/Ice/proxy/Server.cpp @@ -31,7 +31,7 @@ int main(int argc, char* argv[]) { #ifdef ICE_STATIC_LIBS - Ice::registerIceSSL(); + Ice::registerIceSSL(false); #endif try diff --git a/cpp/test/Ice/proxy/ServerAMD.cpp b/cpp/test/Ice/proxy/ServerAMD.cpp index f2c4b68a0f6..78cff3f0e18 100644 --- a/cpp/test/Ice/proxy/ServerAMD.cpp +++ b/cpp/test/Ice/proxy/ServerAMD.cpp @@ -31,7 +31,7 @@ int main(int argc, char* argv[]) { #ifdef ICE_STATIC_LIBS - Ice::registerIceSSL(); + Ice::registerIceSSL(false); #endif try |