You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by xa...@apache.org on 2007/01/07 18:36:15 UTC

svn commit: r493800 - /incubator/ivy/trunk/build.xml

Author: xavier
Date: Sun Jan  7 10:36:14 2007
New Revision: 493800

URL: http://svn.apache.org/viewvc?view=rev&rev=493800
Log:
exclude Abstract* classes from tests

Modified:
    incubator/ivy/trunk/build.xml

Modified: incubator/ivy/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/trunk/build.xml?view=diff&rev=493800&r1=493799&r2=493800
==============================================================================
--- incubator/ivy/trunk/build.xml (original)
+++ incubator/ivy/trunk/build.xml Sun Jan  7 10:36:14 2007
@@ -153,6 +153,7 @@
 	<target name="init-tests-offline" if="offline">
  		    <fileset id="test.fileset" dir="${test.dir}">
  		    	<include name="**/*Test.java"/>
+ 		    	<exclude name="**/Abstract*Test.java"/>
  		    	<contains text="junit"/>
  		    	<not><contains text="remote.test"/></not>
  		    </fileset>
@@ -161,6 +162,7 @@
 	<target name="init-tests-online" unless="offline">
  		    <fileset id="test.fileset" dir="${test.dir}">
  		    	<include name="**/*Test.java"/>
+ 		    	<exclude name="**/Abstract*Test.java"/>
  		    	<contains text="junit"/>
  		    </fileset>
 	</target>