summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-03-06 09:29:56 -0330
committerDwayne Boone <dwayne@zeroc.com>2015-03-06 09:29:56 -0330
commit4cc256a911180b0bbe5318f812c334e36fdcbed5 (patch)
tree49d5c030528d56bb12ef240c6b6db8054c0c8891 /cpp
parentICE-6358 fixed java test failure (diff)
downloadice-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.cpp8
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;