Initial rumbler test support

This commit is contained in:
endolf 2003-12-01 23:41:20 +00:00
parent 28f05a7e9d
commit f4c4499bf3
2 changed files with 69 additions and 0 deletions

View file

@ -85,6 +85,19 @@
<!-- <arg file="myfile.txt"/> -->
</java>
</target>
<target name="rumbletest" depends="init,all" description="Try running it.">
<java classname="net.java.games.input.test.RumbleTest"
fork="true" failonerror="true" dir="src/tests">
<classpath>
<pathelement location="bin/jinput.jar"/>
<pathelement location="${utils}"/>
</classpath>
<!-- Pass some args, perhaps: -->
<!-- <arg value="-myfile"/> -->
<!-- Will be given as an absolute path: -->
<!-- <arg file="myfile.txt"/> -->
</java>
</target>
<target name="javadoc" depends="init" description="Javadoc for my API.">
<javadoc packagenames="net.java.games.input.*"