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:04:17 UTC

svn commit: r1385197 - in /nutch/trunk: CHANGES.txt build.xml

Author: lewismc
Date: Sat Sep 15 23:04:16 2012
New Revision: 1385197

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

Modified:
    nutch/trunk/CHANGES.txt
    nutch/trunk/build.xml

Modified: nutch/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/trunk/CHANGES.txt?rev=1385197&r1=1385196&r2=1385197&view=diff
==============================================================================
--- nutch/trunk/CHANGES.txt (original)
+++ nutch/trunk/CHANGES.txt Sat Sep 15 23:04:16 2012
@@ -2,6 +2,8 @@ Nutch Change Log
 
 (trunk) Current Development:
 
+* NUTCH-1470 Ensure test files are included for runtime testing (lewismc)
+
 * NUTCH-1434 Indexer to delete robots noindex (markus)
 
 * NUTCH-1443 Solr schema version is invalid (markus)

Modified: nutch/trunk/build.xml
URL: http://svn.apache.org/viewvc/nutch/trunk/build.xml?rev=1385197&r1=1385196&r2=1385197&view=diff
==============================================================================
--- nutch/trunk/build.xml (original)
+++ nutch/trunk/build.xml Sat Sep 15 23:04:16 2012
@@ -392,12 +392,22 @@
     <copy todir="${test.build.data}">
       <fileset dir="src/testresources" includes="**/*"/>
     </copy>
+    
     <copy file="${test.src.dir}/nutch-site.xml"
           todir="${test.build.classes}"/>
 
     <copy file="${test.src.dir}/log4j.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}"/>