diff options
Diffstat (limited to 'cpp/test/Ice/facets/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/facets/AllTests.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/facets/AllTests.cpp b/cpp/test/Ice/facets/AllTests.cpp index fc9a76105ba..fd3299dcd38 100644 --- a/cpp/test/Ice/facets/AllTests.cpp +++ b/cpp/test/Ice/facets/AllTests.cpp @@ -22,10 +22,10 @@ class EmptyI : public virtual Empty GPrxPtr allTests(const Ice::CommunicatorPtr& communicator) { -#ifdef ICE_OS_WINRT - bool winrt = true; +#ifdef ICE_OS_UWP + bool uwp = true; #else - bool winrt = false; + bool uwp = false; #endif cout << "testing Ice.Admin.Facets property... " << flush; @@ -64,7 +64,7 @@ allTests(const Ice::CommunicatorPtr& communicator) localOAEndpoint = ostr.str(); } communicator->getProperties()->setProperty("FacetExceptionTestAdapter.Endpoints", localOAEndpoint); - if(winrt || (communicator->getProperties()->getProperty("Ice.Default.Protocol") != "ssl" && + if(uwp || (communicator->getProperties()->getProperty("Ice.Default.Protocol") != "ssl" && communicator->getProperties()->getProperty("Ice.Default.Protocol") != "wss")) { Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("FacetExceptionTestAdapter"); |