diff options
author | Jose <jose@zeroc.com> | 2016-11-24 10:11:45 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-11-24 10:11:45 +0100 |
commit | cd0a9e3caeeb5ef8cee34a3f87a9566fc1a3ff8e (patch) | |
tree | b3b2d10411a29ae8f584f3f349d34547dab0fe49 /cpp/test/IceSSL/configuration/Client.cpp | |
parent | Check PCCERT_CHAIN_CONTEXT TrustStatus rather than CERT_SIMPLE_CHAIN TrustStatus (diff) | |
download | ice-cd0a9e3caeeb5ef8cee34a3f87a9566fc1a3ff8e.tar.bz2 ice-cd0a9e3caeeb5ef8cee34a3f87a9566fc1a3ff8e.tar.xz ice-cd0a9e3caeeb5ef8cee34a3f87a9566fc1a3ff8e.zip |
Port IceSSL/configuration test to UWP and fixes to UWP IceSSL implementation
Diffstat (limited to 'cpp/test/IceSSL/configuration/Client.cpp')
-rw-r--r-- | cpp/test/IceSSL/configuration/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceSSL/configuration/Client.cpp b/cpp/test/IceSSL/configuration/Client.cpp index 68d3ad936e1..44acba98ffb 100644 --- a/cpp/test/IceSSL/configuration/Client.cpp +++ b/cpp/test/IceSSL/configuration/Client.cpp @@ -35,7 +35,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { cerr << "testing with PKCS12 certificates..." << endl; Test::ServerFactoryPrxPtr factory = allTests(communicator, testdir, true); -#if !defined(__APPLE__) || TARGET_OS_IPHONE == 0 +#if TARGET_OS_IPHONE == 0 && !defined(ICE_OS_WINRT) cerr << "testing with PEM certificates..." << endl; factory = allTests(communicator, testdir, false); #endif |