diff options
author | Jose <jose@zeroc.com> | 2012-07-17 16:53:05 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-07-17 16:53:05 +0200 |
commit | 9e833a51504b14ac852863dcad59a51e6025ce79 (patch) | |
tree | 6ca0297b6e6575fe4c6b2d48b606fef8132b9e5a /cpp/test/Ice/proxy/AllTests.cpp | |
parent | implementing optional params in Java (diff) | |
parent | WinRT support (diff) | |
download | ice-9e833a51504b14ac852863dcad59a51e6025ce79.tar.bz2 ice-9e833a51504b14ac852863dcad59a51e6025ce79.tar.xz ice-9e833a51504b14ac852863dcad59a51e6025ce79.zip |
Merge branch 'master' into encoding11
Conflicts:
CHANGES
cpp/src/Ice/EndpointI.cpp
cpp/src/Ice/TcpConnector.cpp
cpp/src/Ice/TcpConnector.h
cpp/src/Ice/UdpConnector.cpp
cpp/src/Ice/UdpConnector.h
Diffstat (limited to 'cpp/test/Ice/proxy/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/proxy/AllTests.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/test/Ice/proxy/AllTests.cpp b/cpp/test/Ice/proxy/AllTests.cpp index 7b1165dc40a..4773088850d 100644 --- a/cpp/test/Ice/proxy/AllTests.cpp +++ b/cpp/test/Ice/proxy/AllTests.cpp @@ -856,7 +856,11 @@ allTests(const Ice::CommunicatorPtr& communicator) if(communicator->getProperties()->getPropertyAsInt("Ice.IPv6") == 0) { // Working? +#ifndef ICE_OS_WINRT bool ssl = communicator->getProperties()->getProperty("Ice.Default.Protocol") == "ssl"; +#else + bool ssl = true; +#endif if(!ssl) { p1->ice_encodingVersion(Ice::Encoding_1_0)->ice_ping(); |