You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by le...@apache.org on 2012/09/16 01:06:34 UTC

svn commit: r1385199 - in /nutch/branches/2.x: CHANGES.txt build.xml

Author: lewismc
Date: Sat Sep 15 23:06:34 2012
New Revision: 1385199

URL: http://svn.apache.org/viewvc?rev=1385199&view=rev
Log:
NUTCH-1470 Ensure test files are included for runtime testing

Modified:
    nutch/branches/2.x/CHANGES.txt
    nutch/branches/2.x/build.xml

Modified: nutch/branches/2.x/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/CHANGES.txt?rev=1385199&r1=1385198&r2=1385199&view=diff
==============================================================================
--- nutch/branches/2.x/CHANGES.txt (original)
+++ nutch/branches/2.x/CHANGES.txt Sat Sep 15 23:06:34 2012
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Release 2.1 - Current Development
 
+* NUTCH-1470 Ensure test files are included for runtime testing (lewismc)
+
 * NUTCH-1162 Write JUnit tests for parse-js (lewismc)
 
 * NUTCH-1161 Write JUnit tests for microformats-reltag plugin (lewismc)

Modified: nutch/branches/2.x/build.xml
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/build.xml?rev=1385199&r1=1385198&r2=1385199&view=diff
==============================================================================
--- nutch/branches/2.x/build.xml (original)
+++ nutch/branches/2.x/build.xml Sat Sep 15 23:06:34 2012
@@ -395,6 +395,15 @@
   <copy file="${test.src.dir}/gora.properties" 
   	todir="${test.build.classes}" />
 
+  <copy file="${test.src.dir}/crawl-tests.xml"
+        todir="${test.build.classes}"/>
+        
+  <copy file="${test.src.dir}/domain-urlfilter.txt"
+        todir="${test.build.classes}"/>
+
+  <copy file="${test.src.dir}/filter-all.txt"
+        todir="${test.build.classes}"/>
+
   <junit printsummary="yes" haltonfailure="no" fork="yes" dir="${basedir}"
    errorProperty="tests.failed" failureProperty="tests.failed" maxmemory="1000m">
    <sysproperty key="test.build.data" value="${test.build.data}" />