summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/operations/BatchOneways.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-11-18 16:55:42 +0100
committerBenoit Foucher <benoit@zeroc.com>2014-11-18 16:55:42 +0100
commit01d5859a84cce5ad552bac8ec465ee2de0f84d76 (patch)
treec3574f644bf01447592814c5267e9e32d7c40d15 /cpp/test/Ice/operations/BatchOneways.cpp
parentFixed distribution script to include makecerts.py, minor makecerts.py fix (diff)
downloadice-01d5859a84cce5ad552bac8ec465ee2de0f84d76.tar.bz2
ice-01d5859a84cce5ad552bac8ec465ee2de0f84d76.tar.xz
ice-01d5859a84cce5ad552bac8ec465ee2de0f84d76.zip
Fixed ICE-5918: batch oneway test hang
Diffstat (limited to 'cpp/test/Ice/operations/BatchOneways.cpp')
-rw-r--r--cpp/test/Ice/operations/BatchOneways.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/operations/BatchOneways.cpp b/cpp/test/Ice/operations/BatchOneways.cpp
index 62baee3653b..b52d00bc015 100644
--- a/cpp/test/Ice/operations/BatchOneways.cpp
+++ b/cpp/test/Ice/operations/BatchOneways.cpp
@@ -54,7 +54,7 @@ batchOneways(const Test::MyClassPrx& p)
}
int count = 0;
- while(count != 27) // 3 * 9 requests auto-flushed.
+ while(count < 27) // 3 * 9 requests auto-flushed.
{
count += p->opByteSOnewayCallCount();
IceUtil::ThreadControl::sleep(IceUtil::Time::milliSeconds(10));