You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ju...@apache.org on 2013/05/22 13:29:39 UTC

svn commit: r1485156 - /jackrabbit/oak/trunk/oak-lucene/src/test/java/org/apache/jackrabbit/oak/jcr/query/MultiSessionQueryTest.java

Author: jukka
Date: Wed May 22 11:29:38 2013
New Revision: 1485156

URL: http://svn.apache.org/r1485156
Log:
OAK-837: Lucene: colliding concurrency node creation

This is an JUnit 3.x test, so the JUnit 4.x @Ignore annotation won't work

Modified:
    jackrabbit/oak/trunk/oak-lucene/src/test/java/org/apache/jackrabbit/oak/jcr/query/MultiSessionQueryTest.java

Modified: jackrabbit/oak/trunk/oak-lucene/src/test/java/org/apache/jackrabbit/oak/jcr/query/MultiSessionQueryTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-lucene/src/test/java/org/apache/jackrabbit/oak/jcr/query/MultiSessionQueryTest.java?rev=1485156&r1=1485155&r2=1485156&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-lucene/src/test/java/org/apache/jackrabbit/oak/jcr/query/MultiSessionQueryTest.java (original)
+++ jackrabbit/oak/trunk/oak-lucene/src/test/java/org/apache/jackrabbit/oak/jcr/query/MultiSessionQueryTest.java Wed May 22 11:29:38 2013
@@ -21,7 +21,6 @@ import javax.jcr.Session;
 import javax.jcr.SimpleCredentials;
 
 import org.apache.jackrabbit.core.query.AbstractQueryTest;
-import org.junit.Ignore;
 
 /**
  * Tests the Lucene index using multiple threads.
@@ -30,8 +29,7 @@ public class MultiSessionQueryTest exten
 
     final static int THREAD_COUNT = 3;
 
-    @Ignore
-    public void testConcurrent() throws Exception {
+    public void disabledTestConcurrent() throws Exception {
         final Exception[] ex = new Exception[1];
         Thread[] threads = new Thread[THREAD_COUNT];
         for (int i = 0; i < THREAD_COUNT; i++) {