You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ha...@apache.org on 2005/11/04 16:25:09 UTC

svn commit: r330826 - /webservices/axis/trunk/c/test.xml

Author: hawkeye
Date: Fri Nov  4 07:25:06 2005
New Revision: 330826

URL: http://svn.apache.org/viewcvs?rev=330826&view=rev
Log:
Added in exclusion list into tests

Modified:
    webservices/axis/trunk/c/test.xml

Modified: webservices/axis/trunk/c/test.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/test.xml?rev=330826&r1=330825&r2=330826&view=diff
==============================================================================
--- webservices/axis/trunk/c/test.xml (original)
+++ webservices/axis/trunk/c/test.xml Fri Nov  4 07:25:06 2005
@@ -90,9 +90,19 @@
 	  Create a list of tests from a properties file unless an individual test has been specified too
 	  -->
 	<target name="setFromList" if="test.list" unless="test.name">
-		<path id="test_properties">
-			<fileset dir="${dir.testproperties}" includesfile="${test.list}"/>
-		</path>
+		<if>
+			<isset property="test.exclude.list"/>
+			<then>
+				<path id="test_properties">
+					<fileset dir="${dir.testproperties}" includesfile="${test.list}" excludesfile="${test.exclude.list}"/>
+				</path>
+			</then>
+			<else>
+				<path id="test_properties">
+					<fileset dir="${dir.testproperties}" includesfile="${test.list}"/>
+				</path>
+			</else>
+		</if>
 	</target>
 
 	<!--