You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ml...@apache.org on 2006/05/04 14:07:57 UTC

svn commit: r399685 [1/2] - in /incubator/harmony/enhanced/classlib/trunk: make/ modules/auth/make/common/ modules/logging/make/common/ modules/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ modules/luni/make/common/ modules/...

Author: mloenko
Date: Thu May  4 05:07:55 2006
New Revision: 399685

URL: http://svn.apache.org/viewcvs?rev=399685&view=rev
Log:
fixes for HARMONY-442
Enable more tests and update excludes list

Modified:
    incubator/harmony/enhanced/classlib/trunk/make/build-test.xml
    incubator/harmony/enhanced/classlib/trunk/modules/auth/make/common/build.xml
    incubator/harmony/enhanced/classlib/trunk/modules/logging/make/common/build.xml
    incubator/harmony/enhanced/classlib/trunk/modules/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/AllTests.java
    incubator/harmony/enhanced/classlib/trunk/modules/luni/make/common/build.xml
    incubator/harmony/enhanced/classlib/trunk/modules/nio_char/make/common/build.xml
    incubator/harmony/enhanced/classlib/trunk/support/src/test/resources/config/jcltest-excludes.xml

Modified: incubator/harmony/enhanced/classlib/trunk/make/build-test.xml
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/make/build-test.xml?rev=399685&r1=399684&r2=399685&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/build-test.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/build-test.xml Thu May  4 05:07:55 2006
@@ -36,7 +36,7 @@
 
 	<!-- this list of components to test will grow to eventually be all modules -->
 	<target name="test-all"
-		depends="clean, test-security, test-luni, test-archive, test-text, test-nio, test-xnet, test-nio_char, test-logging, test-jndi, test-sql, test-prefs, test-beans, test-math, test-crypto, test-auth, test-regex, gen-report, check-test-result">
+		depends="clean, test-archive, test-auth, test-beans, test-crypto, test-jndi, test-logging, test-luni, test-math, test-nio, test-nio_char, test-prefs, test-regex, test-security, test-sql, test-text, test-xnet, gen-report, check-test-result">
 	</target>
 
 	<target name="clean">

Modified: incubator/harmony/enhanced/classlib/trunk/modules/auth/make/common/build.xml
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/auth/make/common/build.xml?rev=399685&r1=399684&r2=399685&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/auth/make/common/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/auth/make/common/build.xml Thu May  4 05:07:55 2006
@@ -133,10 +133,6 @@
                     <exclude name="org/apache/harmony/auth/internal/SecurityTest.java"/>
 
                     <!-- Harmony exclude list -->
-
-                    <exclude name="javax/security/auth/SubjectDomainCombinerTest.java"/>
-                    <exclude name="javax/security/auth/SubjectTest.java"/>
-                    <exclude name="javax/security/auth/login/LoginContextTest.java"/>
                     <exclude name="javax/security/auth/login/serialization/SerAccountExpiredExceptionTest.java"/>
                     <exclude name="javax/security/auth/login/serialization/SerCredentialExpiredExceptionTest.java"/>
                     <exclude name="javax/security/auth/x500/X500PrincipalTest.java" />

Modified: incubator/harmony/enhanced/classlib/trunk/modules/logging/make/common/build.xml
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/logging/make/common/build.xml?rev=399685&r1=399684&r2=399685&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/logging/make/common/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/logging/make/common/build.xml Thu May  4 05:07:55 2006
@@ -124,7 +124,6 @@
                     <include name="org/apache/harmony/logging/tests/java/util/logging/*Test.java"/>
                     <exclude name="org/apache/harmony/logging/tests/java/util/logging/FileHandlerTest.java" />
                 	<exclude name="org/apache/harmony/logging/tests/java/util/logging/LogManagerTest.java" />
-                    <exclude name="org/apache/harmony/logging/tests/java/util/logging/LoggingPermissionTest.java" />
                     <exclude name="org/apache/harmony/logging/tests/java/util/logging/SocketHandlerTest.java" />
                 </fileset>
             </batchtest>

Modified: incubator/harmony/enhanced/classlib/trunk/modules/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/AllTests.java
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/AllTests.java?rev=399685&r1=399684&r2=399685&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/AllTests.java (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/AllTests.java Thu May  4 05:07:55 2006
@@ -40,9 +40,9 @@
 		suite.addTestSuite(ConsoleHandlerTest.class);
 
 		suite.addTestSuite(MemoryHandlerTest.class);
-		// suite.addTestSuite(FileHandlerTest.class);
+		suite.addTestSuite(FileHandlerTest.class);
 		suite.addTestSuite(XMLFormatterTest.class);
-		// suite.addTestSuite(SocketHandlerTest.class);
+		suite.addTestSuite(SocketHandlerTest.class);
 
 		// $JUnit-END$
 		return suite;

Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni/make/common/build.xml
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/luni/make/common/build.xml?rev=399685&r1=399684&r2=399685&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/luni/make/common/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/luni/make/common/build.xml Thu May  4 05:07:55 2006
@@ -110,12 +110,10 @@
                     <exclude name="tests/api/java/io/ObjectOutputStreamTest.java" />
                     <exclude name="tests/api/java/io/OutputStreamWriterTest.java" />
                     <exclude name="tests/api/java/io/PipedInputStreamTest.java" />
-                    <exclude name="tests/api/java/lang/ArrayIndexOutOfBoundsExceptionTest.java" />
                     <exclude name="tests/api/java/lang/AssertionErrorTest.java" />
                     <exclude name="tests/api/java/lang/ClassTest.java" />
                     <exclude name="tests/api/java/lang/ProcessTest.java" />
                     <exclude name="tests/api/java/lang/StringTest.java" />
-                    <exclude name="tests/api/java/lang/ThreadTest.java" />
                     <exclude name="tests/api/java/net/DatagramSocketTest.java" />
                     <exclude name="tests/api/java/net/HttpURLConnectionTest.java" />
                     <exclude name="tests/api/java/net/InetAddressTest.java" />
@@ -125,13 +123,11 @@
                     <exclude name="tests/api/java/net/SocketImplTest.java" />
                     <exclude name="tests/api/java/net/SocketPermissionTest.java" />
                     <exclude name="tests/api/java/net/SocketTest.java" />
-                    <exclude name="tests/api/java/net/URISyntaxExceptionTest.java" />
                     <exclude name="tests/api/java/net/URLClassLoaderTest.java" />
                     <exclude name="tests/api/java/net/URLConnectionTest.java" />
                     <exclude name="tests/api/java/net/URLTest.java" />
                     <exclude name="tests/api/java/util/CalendarTest.java" />
                     <exclude name="tests/api/java/util/LocaleTest.java" />
-                    <exclude name="tests/impl/com/ibm/misc/util/NYITest.java" />
                 </fileset>
             </batchtest>
         </junit>

Modified: incubator/harmony/enhanced/classlib/trunk/modules/nio_char/make/common/build.xml
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/nio_char/make/common/build.xml?rev=399685&r1=399684&r2=399685&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/nio_char/make/common/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/nio_char/make/common/build.xml Thu May  4 05:07:55 2006
@@ -107,13 +107,11 @@
                     <exclude name="tests/api/java/nio/charset/ConcreteCharsetTest.java"/>
                     <exclude name="tests/api/java/nio/charset/GBCharsetEncoderTest.java"/>
                     <exclude name="tests/api/java/nio/charset/ISOCharsetEncoderTest.java"/>
-                    <exclude name="tests/api/java/nio/charset/IllegalCharsetNameExceptionTest.java"/>
                     <exclude name="tests/api/java/nio/charset/UTF16BECharsetEncoderTest.java"/>
                     <exclude name="tests/api/java/nio/charset/UTF16CharsetDecoderTest.java"/>
                     <exclude name="tests/api/java/nio/charset/UTF16CharsetEncoderTest.java"/>
                     <exclude name="tests/api/java/nio/charset/UTF16LECharsetEncoderTest.java"/>
                     <exclude name="tests/api/java/nio/charset/UTFCharsetEncoderTest.java"/>
-                    <exclude name="tests/api/java/nio/charset/UnsupportedCharsetExceptionTest.java"/>
                 </fileset>
             </batchtest>
         </junit>