diff options
Diffstat (limited to 'cpp/test/Ice/info/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/info/AllTests.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/test/Ice/info/AllTests.cpp b/cpp/test/Ice/info/AllTests.cpp index f8094effbae..d671ac9b17c 100644 --- a/cpp/test/Ice/info/AllTests.cpp +++ b/cpp/test/Ice/info/AllTests.cpp @@ -165,8 +165,10 @@ allTests(const Ice::CommunicatorPtr& communicator) test(info->remoteAddress == defaultHost); test(info->localAddress == defaultHost); } +#if !defined(ICE_OS_WINRT) test(info->rcvSize >= 1024); test(info->sndSize >= 2048); +#endif ostringstream os; @@ -225,8 +227,11 @@ allTests(const Ice::CommunicatorPtr& communicator) test(info->remoteAddress == defaultHost); test(info->localAddress == defaultHost); } + +#if !defined(ICE_OS_WINRT) test(info->rcvSize >= 2048); test(info->sndSize >= 1024); +#endif } cout << "ok" << endl; |