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 my...@apache.org on 2008/05/29 18:39:02 UTC

svn commit: r661388 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java

Author: myrnavl
Date: Thu May 29 09:39:01 2008
New Revision: 661388

URL: http://svn.apache.org/viewvc?rev=661388&view=rev
Log:
DERBY-2644; reactivating the encryption tests; DERBY-2644 should be fixed

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java?rev=661388&r1=661387&r2=661388&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java Thu May 29 09:39:01 2008
@@ -57,11 +57,9 @@
         // J2ME (JSR169) does not support encryption.
         if (JDBC.vmSupportsJDBC3()) {
             // Add tests of basic functionality on encrypted databases.
-	    // DERBY-2644 disable encryption tests until permissions failures 
-	    // are resolved.
-            //suite.addTest(EncryptionKeyAESTest.suite());
-            //suite.addTest(EncryptionKeyBlowfishTest.suite());
-            //suite.addTest(EncryptionKeyDESTest.suite());
+            suite.addTest(EncryptionKeyAESTest.suite());
+            suite.addTest(EncryptionKeyBlowfishTest.suite());
+            suite.addTest(EncryptionKeyDESTest.suite());
         }
         
         return suite;