summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-07-24 14:53:06 +0200
committerBenoit Foucher <benoit@zeroc.com>2014-07-24 14:53:06 +0200
commitd25beb63798ee5db5c4efc02cb16b7dd2faeb7d0 (patch)
tree09d8b86d5ea60b6486531ccfc3425ad682ae363e /cpp
parentFixed bug with system exceptions not being propagated correctly with collocat... (diff)
downloadice-d25beb63798ee5db5c4efc02cb16b7dd2faeb7d0.tar.bz2
ice-d25beb63798ee5db5c4efc02cb16b7dd2faeb7d0.tar.xz
ice-d25beb63798ee5db5c4efc02cb16b7dd2faeb7d0.zip
Fixed potential ACM test failure
Diffstat (limited to 'cpp')
-rw-r--r--cpp/test/Ice/acm/AllTests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/acm/AllTests.cpp b/cpp/test/Ice/acm/AllTests.cpp
index 1cba2ba6f45..e95c43bf607 100644
--- a/cpp/test/Ice/acm/AllTests.cpp
+++ b/cpp/test/Ice/acm/AllTests.cpp
@@ -478,10 +478,10 @@ allTests(const Ice::CommunicatorPtr& communicator)
virtual void runTestCase(const RemoteObjectAdapterPrx& adapter, const TestIntfPrx& proxy)
{
- for(int i = 0; i < 20; ++i)
+ for(int i = 0; i < 12; ++i)
{
proxy->ice_ping();
- IceUtil::ThreadControl::sleep(IceUtil::Time::milliSeconds(100));
+ IceUtil::ThreadControl::sleep(IceUtil::Time::milliSeconds(200));
}
Lock sync(*this);