You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by ho...@apache.org on 2006/11/29 19:58:27 UTC

svn commit: r480683 - in /incubator/solr/trunk: CHANGES.txt build.xml src/apps/

Author: hossman
Date: Wed Nov 29 10:58:27 2006
New Revision: 480683

URL: http://svn.apache.org/viewvc?view=rev&rev=480683
Log:
SOLR-3 Removed src/apps containing the legacy SolrTest app

Removed:
    incubator/solr/trunk/src/apps/
Modified:
    incubator/solr/trunk/CHANGES.txt
    incubator/solr/trunk/build.xml

Modified: incubator/solr/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/CHANGES.txt?view=diff&rev=480683&r1=480682&r2=480683
==============================================================================
--- incubator/solr/trunk/CHANGES.txt (original)
+++ incubator/solr/trunk/CHANGES.txt Wed Nov 29 10:58:27 2006
@@ -152,5 +152,7 @@
  7. blackslash escape * in ssh command used in snappuller for zsh compatibility, SOLR-63
  8. check solr return code in admin scripts, SOLR-62
  9. Updated to Lucene 2.0 nightly build 2006-11-15, SVN revision 475069
+10. Removed src/apps containing the legacy "SolrTest" app (hossman, SOLR-3)
 
+ 
 2006/01/17 Solr open sourced, moves to Apache Incubator

Modified: incubator/solr/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/build.xml?view=diff&rev=480683&r1=480682&r2=480683
==============================================================================
--- incubator/solr/trunk/build.xml (original)
+++ incubator/solr/trunk/build.xml Wed Nov 29 10:58:27 2006
@@ -192,7 +192,6 @@
        encoding="utf8"
        classpathref="test.compile.classpath">
       <src path="${src}/test" />
-      <src path="${src}/apps/SolrTest/src" />
     </javac>
   </target>
 
@@ -200,28 +199,11 @@
   <target name="test"
           description="Runs the unit tests."
           depends="compileTests, junit" />
-   
-  <target name="legacyTest"
-          depends="compileTests" >
-    <!-- DEPRECATED: no description so it doesn't show up in project help -->
-    <java classname="SolrTest" fork="true" dir="src/apps/SolrTest" failonerror="true">
-     <arg line="-test newtest.txt -qargs qt=test"/>
-     <classpath>
-       <path refid="test.run.classpath" />
-     </classpath>
-    </java>
-
-  </target>
   
   <target name="junit" depends="compileTests">
     <!-- no description so it doesn't show up in -projecthelp -->  
     <mkdir dir="${junit.output.dir}"/>
 
-    <!-- :TODO: either SolrCore needs a way to specify the
-         solrconfig.xml, or all test are going to need to use the same
-         conf file, either way we need a specific run directory for
-         the tests.
-      -->    
     <junit printsummary="withOutAndErr"
            haltonfailure="no"
            errorProperty="tests.failed"