You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2006/01/24 20:48:13 UTC

svn commit: r371999 - /xerces/java/trunk/build.xml

Author: mrglavas
Date: Tue Jan 24 11:48:11 2006
New Revision: 371999

URL: http://svn.apache.org/viewcvs?rev=371999&view=rev
Log:
Adding schema.config tests to the 'test' target. Patch thanks to Peter McCracken.

Modified:
    xerces/java/trunk/build.xml

Modified: xerces/java/trunk/build.xml
URL: http://svn.apache.org/viewcvs/xerces/java/trunk/build.xml?rev=371999&r1=371998&r2=371999&view=diff
==============================================================================
--- xerces/java/trunk/build.xml (original)
+++ xerces/java/trunk/build.xml Tue Jan 24 11:48:11 2006
@@ -56,6 +56,7 @@
     <property name='jar.samples' value='xercesSamples.jar'/>
     <property name='jar.dv' value='xercesDV.jar'/>
     <property name='jar.resolver' value='resolver.jar'/>
+    <property name='jar.junit' value='junit.jar'/>
     
     <property name='default.parser.config.name' value='XIncludeAwareParserConfiguration'/>
     <property name='default.parser.config.qualified' value='org.apache.xerces.parsers.XIncludeAwareParserConfiguration'/>
@@ -796,6 +797,16 @@
           classpath="${tools.dir}/${jar.apis}:${tools.dir}/${jar.resolver}:${build.dir}/classes"
           classname="schema.Test"
           failOnError="yes">
+    </java>
+    <echo message="Running schema.config.AllTests ..." />
+  	<java fork="yes"
+          classname="schema.config.AllTests"
+          failOnError="yes">
+        <classpath>
+            <pathelement path="${tools.dir}/${jar.apis}:${tools.dir}/${jar.resolver}:${build.dir}/classes" />
+            <pathelement path="${tools.dir}/${jar.junit}" />
+            <pathelement path="${build.dir}/tests" />
+        </classpath>
     </java>
     <echo message="Running jaxp.PropertyTest ..." />
     <java fork="yes"



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org