[infinispan-commits] Infinispan SVN: r1207 - trunk/core/src/test/java/org/infinispan/stress.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Mon Nov 23 14:07:28 EST 2009


Author: mircea.markus
Date: 2009-11-23 14:07:27 -0500 (Mon, 23 Nov 2009)
New Revision: 1207

Modified:
   trunk/core/src/test/java/org/infinispan/stress/PutIfAbsentStressTest.java
Log:
Disabled test

Modified: trunk/core/src/test/java/org/infinispan/stress/PutIfAbsentStressTest.java
===================================================================
--- trunk/core/src/test/java/org/infinispan/stress/PutIfAbsentStressTest.java	2009-11-23 19:06:31 UTC (rev 1206)
+++ trunk/core/src/test/java/org/infinispan/stress/PutIfAbsentStressTest.java	2009-11-23 19:07:27 UTC (rev 1207)
@@ -61,7 +61,6 @@
     * Purpose is not testing JDK's ConcurrentHashMap but ensuring the test is correct. It's also
     * interesting to compare performance.
     */
-   @Test
    protected void testonConcurrentHashMap() throws Exception {
       ConcurrentMap<String, String> map = new ConcurrentHashMap<String, String>();
       testConcurrentLocking(map);
@@ -70,7 +69,6 @@
    /**
     * Testing putIfAbsent's behaviour on a Local cache.
     */
-   @Test
    protected void testonInfinispanLocal() throws Exception {
       CacheManager cm = TestCacheManagerFactory.createLocalCacheManager(false);
       ConcurrentMap<String, String> map = cm.getCache();
@@ -84,7 +82,6 @@
    /**
     * Testing putIfAbsent's behaviour in DIST_SYNC cache.
     */
-   @Test
    protected void testonInfinispanDIST() throws Exception {
       Configuration c = new Configuration();
       c.setCacheMode(Configuration.CacheMode.DIST_SYNC);
@@ -94,7 +91,6 @@
    /**
     * Testing putIfAbsent's behaviour in REPL_SYNC cache.
     */
-   @Test
    protected void testonInfinispanREPL() throws Exception {
       Configuration c = new Configuration();
       c.setCacheMode(Configuration.CacheMode.REPL_SYNC);



More information about the infinispan-commits mailing list