You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by re...@apache.org on 2011/10/24 15:06:45 UTC

svn commit: r1188138 - /jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/TestAll.java

Author: reschke
Date: Mon Oct 24 13:06:45 2011
New Revision: 1188138

URL: http://svn.apache.org/viewvc?rev=1188138&view=rev
Log:
JCR-3069: add optional consistency checks to test suite

Start re-enabling previously disabled concurrent tests

Modified:
    jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/TestAll.java

Modified: jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/TestAll.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/TestAll.java?rev=1188138&r1=1188137&r2=1188138&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/TestAll.java (original)
+++ jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/TestAll.java Mon Oct 24 13:06:45 2011
@@ -57,12 +57,12 @@ public class TestAll extends TestCase {
         suite.addTestSuite(ConcurrentReorderTest.class);
         suite.addTestSuite(ConcurrentAddRemoveNodeTest.class);
 
-// TODO: These tests pass, but they cause some instability in other
-//       parts of the test suite, most likely due to uncleaned test data
-//        if (Boolean.getBoolean("org.apache.jackrabbit.test.integration")) {
-//            suite.addTestSuite(ConcurrencyTest.class);
+        // TODO: These tests pass, but they cause some instability in other
+        // parts of the test suite, most likely due to uncleaned test data
+        if (Boolean.getBoolean("org.apache.jackrabbit.test.integration")) {
+            suite.addTestSuite(ConcurrencyTest.class);
 //            // suite.addTestSuite(ConcurrencyTest3.class);
-//            suite.addTestSuite(ConcurrentVersioningTest.class);
+            suite.addTestSuite(ConcurrentVersioningTest.class);
 //            // suite.addTestSuite(ConcurrentVersioningWithTransactionsTest.class);
 //            suite.addTestSuite(ConcurrentCheckinMixedTransactionTest.class);
 //            suite.addTestSuite(ConcurrentLoginTest.class);
@@ -71,7 +71,7 @@ public class TestAll extends TestCase {
 //            suite.addTestSuite(ConcurrentRenameTest.class);
 //            suite.addTestSuite(ConcurrentSaveTest.class);
 //            suite.addTestSuite(ConcurrentWorkspaceCopyTest.class);
-//        }
+        }
 
         suite.addTestSuite(UserPerWorkspaceSecurityManagerTest.class);