summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cpp/test/Ice/acm/AllTests.cpp4
-rw-r--r--cs/test/Ice/acm/AllTests.cs2
-rw-r--r--java/test/Ice/acm/AllTests.java2
-rw-r--r--js/test/Ice/acm/Client.js2
4 files changed, 5 insertions, 5 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);
diff --git a/cs/test/Ice/acm/AllTests.cs b/cs/test/Ice/acm/AllTests.cs
index b62ddf43665..ec4ada93122 100644
--- a/cs/test/Ice/acm/AllTests.cs
+++ b/cs/test/Ice/acm/AllTests.cs
@@ -459,7 +459,7 @@ public class AllTests : TestCommon.TestApp
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
- for(int i = 0; i < 10; i++)
+ for(int i = 0; i < 12; i++)
{
proxy.ice_ping();
Thread.Sleep(200);
diff --git a/java/test/Ice/acm/AllTests.java b/java/test/Ice/acm/AllTests.java
index 8645f828f53..d5f0e968ced 100644
--- a/java/test/Ice/acm/AllTests.java
+++ b/java/test/Ice/acm/AllTests.java
@@ -521,7 +521,7 @@ public class AllTests
public void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
- for(int i = 0; i < 10; i++)
+ for(int i = 0; i < 12; i++)
{
proxy.ice_ping();
try
diff --git a/js/test/Ice/acm/Client.js b/js/test/Ice/acm/Client.js
index 472eb465387..21872fbf4c1 100644
--- a/js/test/Ice/acm/Client.js
+++ b/js/test/Ice/acm/Client.js
@@ -381,7 +381,7 @@
{
var self = this;
var p = new Ice.Promise().succeed();
- for(var i = 0; i < 10; ++i)
+ for(var i = 0; i < 12; ++i)
{
p = p.then(function()
{