1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Exclude TestJNDIRealmIntegration because it fails to build due to missing dependencies
Author: Markus Koschany <apo@debian.org>
Forwarded: not-needed
--- a/build.xml
+++ b/build.xml
@@ -1928,6 +1928,7 @@
<!-- Exclude these by default as Gump can't run them because the -->
<!-- classes on which they depend are not in any output JAR. -->
<exclude name="org/apache/tomcat/buildutil/**"/>
+ <exclude name="org/apache/catalina/realm/TestJNDIRealmIntegration.java"/>
</javac>
<copy todir="${test.classes}">
<fileset dir="test">
@@ -2118,6 +2119,7 @@
<exclude name="org/apache/tomcat/buildutil/**" />
<!-- Exclude tests that require large heaps -->
<exclude name="**/*LargeHeap.java" unless="${test.includeLargeHeap}" />
+ <exclude name="**/TestJNDIRealmIntegration.java"/>
</fileset>
</batchtest>
</junit>
|