Jon Aquino's Mental Garden

Engineering beautiful software jon aquino labs | personal blog

Wednesday, September 22, 2004

<?xml version="1.0"?>
<project name="JCoverage Buildfile" default="main" basedir=".">
<taskdef classpath="c:\jcoverage-1.0.5\jcoverage.jar" resource="tasks.properties"/>

<target name="instrument">
<delete dir="instrumented-classes"/>
<instrument todir="instrumented-classes">
<fileset dir="c:\eclipse-deprecated-2004-05-25\workspace\jts">
<include name="**/*.class"/>
<exclude name="test/**/*.*"/>
</fileset>
</instrument>
</target>

<target name="main">

<junit fork="on">
<classpath location="c:\jcoverage-1.0.5\jcoverage.jar"/>
<classpath location="w:\dev_run\JTS\current\lib\Acme.jar"/>
<classpath location="w:\dev_run\JTS\current\lib\jdom.jar"/>
<classpath location="u:\jaquino\cvs\conflate\lib\xercesImpl.jar"/>
<classpath location="u:\jaquino\cvs\conflate\lib\xml-apis.jar"/>
<classpath location="c:\jakarta-log4j-1.2.8\dist\lib\log4j-1.2.8.jar"/>
<classpath location="instrumented-classes"/>
<classpath location="c:\eclipse-deprecated-2004-05-25\workspace\jts"/>
<classpath location="c:\eclipse-deprecated-2004-05-25\workspace\jts\test"/>
<formatter type="plain" usefile="false"/>
<test name="test.jts.junit.MasterTester"/>
</junit>

<java fork="on" classname="com.vividsolutions.jtstest.testrunner.TopologyTestApp">
<arg line="-Files w:\dev_run\JTS\current\test\validate"/>
<classpath location="c:\jcoverage-1.0.5\jcoverage.jar"/>
<classpath location="w:\dev_run\JTS\current\lib\Acme.jar"/>
<classpath location="w:\dev_run\JTS\current\lib\jdom.jar"/>
<classpath location="u:\jaquino\cvs\conflate\lib\xercesImpl.jar"/>
<classpath location="u:\jaquino\cvs\conflate\lib\xml-apis.jar"/>
<classpath location="c:\jakarta-log4j-1.2.8\dist\lib\log4j-1.2.8.jar"/>
<classpath location="instrumented-classes"/>
<classpath location="c:\eclipse-deprecated-2004-05-25\workspace\jts"/>
<classpath location="c:\eclipse-deprecated-2004-05-25\workspace\jts\test"/>
</java>

<java fork="on" classname="com.vividsolutions.jtstest.testrunner.TopologyTestApp">
<arg line="-Files w:\dev_run\JTS\current\test\vivid"/>
<classpath location="c:\jcoverage-1.0.5\jcoverage.jar"/>
<classpath location="w:\dev_run\JTS\current\lib\Acme.jar"/>
<classpath location="w:\dev_run\JTS\current\lib\jdom.jar"/>
<classpath location="u:\jaquino\cvs\conflate\lib\xercesImpl.jar"/>
<classpath location="u:\jaquino\cvs\conflate\lib\xml-apis.jar"/>
<classpath location="c:\jakarta-log4j-1.2.8\dist\lib\log4j-1.2.8.jar"/>
<classpath location="instrumented-classes"/>
<classpath location="c:\eclipse-deprecated-2004-05-25\workspace\jts"/>
<classpath location="c:\eclipse-deprecated-2004-05-25\workspace\jts\test"/>
</java>

<report srcdir="c:\eclipse-deprecated-2004-05-25\workspace\jts" destdir="coverage"/>
</target>

</project>

0 Comments:

Post a Comment

<< Home