diff options
author | Jose <jose@zeroc.com> | 2012-07-13 00:18:06 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-07-13 00:18:06 +0200 |
commit | 70802b63320582f0afa8229659ea9fe4a21d02ec (patch) | |
tree | eb455947cc774cc558f96b8d7c78373d2a6f1c2b /cpp/test/Ice/udp/AllTests.cpp | |
parent | ICE-4839 - Glacier2 sessionHelper IceSSL plug-in (diff) | |
download | ice-70802b63320582f0afa8229659ea9fe4a21d02ec.tar.bz2 ice-70802b63320582f0afa8229659ea9fe4a21d02ec.tar.xz ice-70802b63320582f0afa8229659ea9fe4a21d02ec.zip |
WinRT support
Diffstat (limited to 'cpp/test/Ice/udp/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/udp/AllTests.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/test/Ice/udp/AllTests.cpp b/cpp/test/Ice/udp/AllTests.cpp index 274f4246196..f61f213f103 100644 --- a/cpp/test/Ice/udp/AllTests.cpp +++ b/cpp/test/Ice/udp/AllTests.cpp @@ -135,8 +135,6 @@ allTests(const CommunicatorPtr& communicator) cout << "ok" << endl; - - cout << "testing udp multicast... " << flush; string host; if(communicator->getProperties()->getProperty("Ice.IPv6") == "1") { @@ -148,6 +146,8 @@ allTests(const CommunicatorPtr& communicator) } base = communicator->stringToProxy("test -d:udp -h " + host + " -p 12020"); TestIntfPrx objMcast = TestIntfPrx::uncheckedCast(base); +#ifndef ICE_OS_WINRT + cout << "testing udp multicast... " << flush; nRetry = 5; while(nRetry-- > 0) @@ -170,6 +170,7 @@ allTests(const CommunicatorPtr& communicator) { cout << "ok" << endl; } +#endif cout << "testing udp bi-dir connection... " << flush; obj->ice_getConnection()->setAdapter(adapter); |