2015-05-05 14:05:39 -07:00

19 lines
897 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">
<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' />
</target>
</project>