Update of /cvsroot/proxool/proxool
In directory sc8-pr-cvs1:/tmp/cvs-serv10342
Modified Files:
build.xml
Log Message:
Changed Junit class to the new GlobalTest.
Index: build.xml
===================================================================
RCS file: /cvsroot/proxool/proxool/build.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** build.xml 15 Dec 2002 19:49:04 -0000 1.17
--- build.xml 18 Dec 2002 03:18:47 -0000 1.18
***************
*** 145,148 ****
--- 145,152 ----
<classpath refid="classpath"/>
</javac>
+ <!-- Copy dtd's into the compiled classes directory. -->
+ <copy todir="${build-dir}/classes">
+ <fileset dir="src/java" includes="**/*.dtd"/>
+ </copy>
</target>
***************
*** 212,216 ****
<java fork="yes" classpathref="classpath" classname="junit.textui.TestRunner" >
<sysproperty key="log4jPath" value="${log4jPath}" />
! <arg value="org.logicalcobwebs.proxool.AllTests" />
</java>
</target>
--- 216,220 ----
<java fork="yes" classpathref="classpath" classname="junit.textui.TestRunner" >
<sysproperty key="log4jPath" value="${log4jPath}" />
! <arg value="org.logicalcobwebs.proxool.GlobalTest" />
</java>
</target>
|