[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/loader ...

Manik Surtani manik at jboss.org
Tue Jun 19 15:45:26 EDT 2007


  User: msurtani
  Date: 07/06/19 15:45:26

  Modified:    tests/functional/org/jboss/cache/loader 
                        CacheLoaderTestsBase.java
  Log:
  Reduced number of loops so thread safety tests dont take forever to run
  
  Revision  Changes    Path
  1.53      +2 -2      JBossCache/tests/functional/org/jboss/cache/loader/CacheLoaderTestsBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheLoaderTestsBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/loader/CacheLoaderTestsBase.java,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -b -r1.52 -r1.53
  --- CacheLoaderTestsBase.java	19 Jun 2007 18:49:32 -0000	1.52
  +++ CacheLoaderTestsBase.java	19 Jun 2007 19:45:26 -0000	1.53
  @@ -34,7 +34,7 @@
    * Commons tests for all CacheLoaders
    *
    * @author Bela Ban
  - * @version $Id: CacheLoaderTestsBase.java,v 1.52 2007/06/19 18:49:32 msurtani Exp $
  + * @version $Id: CacheLoaderTestsBase.java,v 1.53 2007/06/19 19:45:26 msurtani Exp $
    */
   abstract public class CacheLoaderTestsBase extends AbstractCacheLoaderTestBase
   {
  @@ -2084,7 +2084,7 @@
         {
            loader.put(fqn, "k", "v");
         }
  -      final int loops = 10000;
  +      final int loops = 1000;
         final Set<Exception> exceptions = new CopyOnWriteArraySet<Exception>();
   
         Thread remover1 = new Thread("Remover-1")
  
  
  



More information about the jboss-cvs-commits mailing list