Author: jfrederic.clere(a)jboss.com
Date: 2009-01-27 16:45:18 -0500 (Tue, 27 Jan 2009)
New Revision: 2230
Modified:
trunk/mod_cluster/test/java/build.xml
Log:
Allow a tests target just to run the tests.
Modified: trunk/mod_cluster/test/java/build.xml
===================================================================
--- trunk/mod_cluster/test/java/build.xml 2009-01-27 21:41:00 UTC (rev 2229)
+++ trunk/mod_cluster/test/java/build.xml 2009-01-27 21:45:18 UTC (rev 2230)
@@ -124,13 +124,18 @@
</target>
<!-- Run the tests -->
- <target name="all" depends="compile,httpd">
+ <target name="tests" depends="compile">
<copy file="conf/web.xml" todir="${test.classes}/conf"/>
<java dir="${test.classes}" classname="${test.runner}"
fork="yes" resultproperty="test.failure">
<arg value="org.jboss.mod_cluster.Maintest"/>
<jvmarg line="-Dcluster=${cluster}"/>
<classpath refid="tomcat.test.classpath"/>
</java>
+ </target>
+ <target name="all" depends="compile,httpd">
+ <antcall target="tests">
+ </antcall>
+
<antcall target="stophttpd">
</antcall>
Show replies by date