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 2012/02/14 20:58:56 UTC

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

Author: myrnavl
Date: Tue Feb 14 19:58:55 2012
New Revision: 1244195

URL: http://svn.apache.org/viewvc?rev=1244195&view=rev
Log:
DERBY-5601; Windows hang in NativeAuthenticationServiceTest testAll with prior interrupt error in SecureServerTest and other cascade errors and failures
DERBY-5607; Deadlock in Java 5 VM when using NATIVE authentication with a client running in the same VM as the server
  restoring running of NativeAuthenticationServiceTest under windows.

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

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/_Suite.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/_Suite.java?rev=1244195&r1=1244194&r2=1244195&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/_Suite.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/_Suite.java Tue Feb 14 19:58:55 2012
@@ -221,9 +221,7 @@ public class _Suite extends BaseTestCase
         suite.addTest(Derby5005Test.suite());
         suite.addTest(AutoIncrementTest.suite());
         suite.addTest(HalfCreatedDatabaseTest.suite());
-        //DERBY-5601 Hang in NativeAuthenticationServiceTest on Windows.
-        // Disable there for the moment.
-        if ( !getSystemProperty("os.name").startsWith("Windows") ) { suite.addTest(NativeAuthenticationServiceTest.suite()); }
+        suite.addTest(NativeAuthenticationServiceTest.suite());
         suite.addTest(NativeAuthProcs.suite());
         return suite;
 	}