You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ee...@apache.org on 2011/06/09 16:29:32 UTC

svn commit: r1133889 - /cassandra/branches/cassandra-0.8/build.xml

Author: eevans
Date: Thu Jun  9 14:29:31 2011
New Revision: 1133889

URL: http://svn.apache.org/viewvc?rev=1133889&view=rev
Log:
don't try to run tests that are no longer there

Modified:
    cassandra/branches/cassandra-0.8/build.xml

Modified: cassandra/branches/cassandra-0.8/build.xml
URL: http://svn.apache.org/viewvc/cassandra/branches/cassandra-0.8/build.xml?rev=1133889&r1=1133888&r2=1133889&view=diff
==============================================================================
--- cassandra/branches/cassandra-0.8/build.xml (original)
+++ cassandra/branches/cassandra-0.8/build.xml Thu Jun  9 14:29:31 2011
@@ -58,7 +58,6 @@
     <property name="test.data" value="${test.dir}/data"/>
     <property name="test.name" value="*Test"/>
     <property name="test.unit.src" value="${test.dir}/unit"/>
-    <property name="test.src.driver" value="${basedir}/drivers/java/test"/>
     <property name="test.long.src" value="${test.dir}/long"/>
     <property name="test.distributed.src" value="${test.dir}/distributed"/>
     <property name="dist.dir" value="${build.dir}/dist"/>
@@ -914,7 +913,6 @@ url=${svn.entry.url}?pathrev=${svn.entry
       </classpath>
       <src path="${test.unit.src}"/>
       <src path="${test.long.src}"/>
-      <src path="${test.src.driver}"/>
     </javac>
 
     <!-- Non-java resources needed by the test suite -->
@@ -991,9 +989,6 @@ url=${svn.entry.url}?pathrev=${svn.entry
       <jvmarg value="-Dlegacy-sstable-root=${test.data}/legacy-sstables"/>
       <jvmarg value="-Dcorrupt-sstable-root=${test.data}/corrupt-sstables"/>
     </testmacro>
-    <testmacro suitename="driverunit" inputdir="${test.src.driver}" timeout="60000">
-      <jvmarg value="-Dlegacy-sstable-root=${test.data}/legacy-sstables"/>
-    </testmacro>
   </target>
     
   <target name="msg-ser-gen-test" depends="build-test" description="Generates message serializations">