You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2009/07/04 04:18:01 UTC

svn commit: r791051 - /hadoop/hbase/trunk_on_hadoop-0.18.3/src/contrib/stargate/build.xml

Author: apurtell
Date: Sat Jul  4 02:18:01 2009
New Revision: 791051

URL: http://svn.apache.org/viewvc?rev=791051&view=rev
Log:
disable stargate tests due to jetty jar collisions

Modified:
    hadoop/hbase/trunk_on_hadoop-0.18.3/src/contrib/stargate/build.xml

Modified: hadoop/hbase/trunk_on_hadoop-0.18.3/src/contrib/stargate/build.xml
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk_on_hadoop-0.18.3/src/contrib/stargate/build.xml?rev=791051&r1=791050&r2=791051&view=diff
==============================================================================
--- hadoop/hbase/trunk_on_hadoop-0.18.3/src/contrib/stargate/build.xml (original)
+++ hadoop/hbase/trunk_on_hadoop-0.18.3/src/contrib/stargate/build.xml Sat Jul  4 02:18:01 2009
@@ -55,23 +55,25 @@
   </target>
   
   <target name="test" depends="compile-test" description="Build test jar and run tests">
-    <junit printsummary="yes" showoutput="${test.output}" haltonfailure="no" fork="yes" forkmode="once" maxmemory="1000m" errorProperty="tests.failed" failureProperty="tests.failed" >
-      <sysproperty key="test.build.data" value="${build.test}/data"/>
-      <sysproperty key="build.test" value="${build.test}"/>
-      <sysproperty key="user.dir" value="${build.test}/data"/>
-      <sysproperty key="test.log.dir" value="${hadoop.log.dir}"/>
-      <classpath refid="test.classpath.stargate"/>
-      <formatter type="${test.junit.output.format}"/>
-      <batchtest todir="${build.test}" unless="testcase">
-        <fileset dir="${src.test}" includes="**/Test*.java"/>
-      </batchtest>
-      <batchtest todir="${build.test}" if="testcase">
-        <fileset dir="${src.test}" includes="**/${testcase}.java"/>
-      </batchtest>
-    </junit>
-    <fail if="tests.failed">
-      Tests failed!
-    </fail>
+<!-- tests disabled on 0.18.3 branch: there are multiple versions of Jetty
+     on the classpath causing trouble -->
+<!--     <junit printsummary="yes" showoutput="${test.output}" haltonfailure="no" fork="yes" forkmode="once" maxmemory="1000m" errorProperty="tests.failed" failureProperty="tests.failed" > -->
+<!--       <sysproperty key="test.build.data" value="${build.test}/data"/> -->
+<!--       <sysproperty key="build.test" value="${build.test}"/> -->
+<!--       <sysproperty key="user.dir" value="${build.test}/data"/> -->
+<!--       <sysproperty key="test.log.dir" value="${hadoop.log.dir}"/> -->
+<!--       <classpath refid="test.classpath.stargate"/> -->
+<!--       <formatter type="${test.junit.output.format}"/> -->
+<!--       <batchtest todir="${build.test}" unless="testcase"> -->
+<!--         <fileset dir="${src.test}" includes="**/Test*.java"/> -->
+<!--       </batchtest> -->
+<!--       <batchtest todir="${build.test}" if="testcase"> -->
+<!--         <fileset dir="${src.test}" includes="**/${testcase}.java"/> -->
+<!--       </batchtest> -->
+<!--     </junit> -->
+<!--     <fail if="tests.failed"> -->
+<!--       Tests failed! -->
+<!--     </fail> -->
   </target>
  
   <target name="war" depends="compile-war">