You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by kr...@apache.org on 2012/07/31 08:52:47 UTC

svn commit: r1367428 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/AllPackages.java

Author: kristwaa
Date: Tue Jul 31 06:52:47 2012
New Revision: 1367428

URL: http://svn.apache.org/viewvc?rev=1367428&view=rev
Log:
DERBY-2076: Rewrite junitTests/derbyNet/CompatibilityTest to conform to current JUnit usage

Enabled the test as part of suites.All (the minimal / MATS variant).

Patch file: derby-2076-2a-enable_test.diff

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/AllPackages.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/AllPackages.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/AllPackages.java?rev=1367428&r1=1367427&r2=1367428&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/AllPackages.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/AllPackages.java Tue Jul 31 06:52:47 2012
@@ -132,6 +132,9 @@ public class AllPackages extends BaseTes
         // Not supp. by JSR169
         classes.add(ReplicationSuite.class);
 
+        // Compatibility tests (MATS)
+        classes.add("org.apache.derbyTesting.functionTests.tests.compatibility._Suite");
+
         return classes;
     }