1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From: Markus Koschany <apo@debian.org>
Date: Fri, 24 Sep 2021 16:29:54 +0200
Subject: exclude TestJNDIRealmIntegration
Exclude TestJNDIRealmIntegration.java because it FTBFS due to missing
dependencies.
Forwarded: not-needed
build.xml | 1 +
1 file changed, 1 insertion(+)
@@ -1929,6 +1929,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 @@
tests. See below for more details.
-->
<exclude name="**/*SecurityManager.java" />
+ <exclude name="**/TestJNDIRealmIntegration.java"/>
</fileset>
</batchtest>
<!--
|