From 3f5848ecbf2775e35ba5ea404fba37469ab03bd0 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Wed, 18 Jul 2012 01:48:25 +0000 Subject: [PATCH] Increase number of loops to try again to cause Continuum to fail git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@1362740 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/logging/WeakHashTableTestCase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/org/apache/commons/logging/WeakHashTableTestCase.java b/src/test/org/apache/commons/logging/WeakHashTableTestCase.java index a5af7d7..8c1274c 100644 --- a/src/test/org/apache/commons/logging/WeakHashTableTestCase.java +++ b/src/test/org/apache/commons/logging/WeakHashTableTestCase.java @@ -24,8 +24,8 @@ import org.apache.commons.logging.impl.WeakHashtable; public class WeakHashTableTestCase extends TestCase { private static final int WAIT_FOR_THREAD_COMPLETION = 5000; // 5 seconds - private static final int RUN_LOOPS = 1500; - private static final int OUTER_LOOP = 200; + private static final int RUN_LOOPS = 3000; + private static final int OUTER_LOOP = 400; private static final int THREAD_COUNT = 10; private static WeakHashtable hashtable;