diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-03-06 09:29:56 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-03-06 09:29:56 -0330 |
commit | 4cc256a911180b0bbe5318f812c334e36fdcbed5 (patch) | |
tree | 49d5c030528d56bb12ef240c6b6db8054c0c8891 /cpp | |
parent | ICE-6358 fixed java test failure (diff) | |
download | ice-4cc256a911180b0bbe5318f812c334e36fdcbed5.tar.bz2 ice-4cc256a911180b0bbe5318f812c334e36fdcbed5.tar.xz ice-4cc256a911180b0bbe5318f812c334e36fdcbed5.zip |
ICE-6356 java info test failure
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; |