2015-05-05 11:20:13 -07:00

21 lines
956 B
XML

<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="network"/>
<property name="excludedfiles" value=""/>
<import file="../Ant-Common.xml"/>
<target name="run" description="Compile and run" depends="build">
<touch file="failures"/>
<jrun cls="ChatterClient" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="ChatterServer" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="MultiSimpleClient" failOnError='false' msg='* Exception was Expected *' />
<jrun cls="MultiSimpleServer" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="SimpleClient" failOnError='false' msg='* Exception was Expected *' />
<jrun cls="SimpleServer" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="WhoAmI" arguments='MindviewToshibaLaptop' />
<delete file="failures"/>
</target>
</project>