diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/test/Ice/info/AllTests.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/info/AllTests.cpp b/cpp/test/Ice/info/AllTests.cpp index 81dcb89239d..80a3bd258de 100644 --- a/cpp/test/Ice/info/AllTests.cpp +++ b/cpp/test/Ice/info/AllTests.cpp @@ -165,8 +165,8 @@ allTests(const Ice::CommunicatorPtr& communicator) test(info->remoteAddress == defaultHost); test(info->localAddress == defaultHost); } - test(info->rcvSize = 1024); - test(info->sndSize = 2048); + test(info->rcvSize >= 1024); + test(info->sndSize >= 2048); ostringstream os; @@ -212,8 +212,8 @@ allTests(const Ice::CommunicatorPtr& communicator) test(info->remoteAddress == defaultHost); test(info->localAddress == defaultHost); } - test(info->rcvSize = 2048); - test(info->sndSize = 1024); + test(info->rcvSize >= 2048); + test(info->sndSize >= 1024); } cout << "ok" << endl; |