You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/08/16 20:00:49 UTC

svn commit: r1514825 - /tomcat/tc7.0.x/trunk/build.xml

Author: markt
Date: Fri Aug 16 18:00:48 2013
New Revision: 1514825

URL: http://svn.apache.org/r1514825
Log:
Fix unit test failures after changes to SSL tests to use class loader to locate resources.

Modified:
    tomcat/tc7.0.x/trunk/build.xml

Modified: tomcat/tc7.0.x/trunk/build.xml
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/build.xml?rev=1514825&r1=1514824&r2=1514825&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/build.xml (original)
+++ tomcat/tc7.0.x/trunk/build.xml Fri Aug 16 18:00:48 2013
@@ -1146,6 +1146,15 @@
       <include name="org/apache/**" />
       <include name="javax/**" />
     </javac>
+    <!-- Copy static resource files the tests need to load via the class     -->
+    <!-- loader.                                                             -->
+    <copy todir="${test.classes}" encoding="ISO-8859-1">
+      <filterset refid="version.filters"/>
+      <fileset dir="test">
+        <include name="**/*.jks"/>
+        <include name="**/*.pem"/>
+      </fileset>
+    </copy>
   </target>
 
   <!-- Default JUnit log output formatter -->



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org