- Add separate top-level junit.test and scalatest.test targets, so

you can run whichever you have the libs for
 - Add router to test target (if we don't run it, it won't get fixed)
This commit is contained in:
zzz
2013-01-02 23:46:14 +00:00
parent cdc3682baa
commit e4ec046363

View File

@@ -1284,8 +1284,17 @@
<copy file="core/java/build/i2ptest.jar" todir="pkg-temp/lib" />
<zip destfile="i2pupdate.zip" basedir="pkg-temp" />
</target>
<target name="junit.test" depends="buildProperties, jbigi" >
<ant dir="core/java/" target="junit.test" />
<ant dir="router/java/" target="junit.test" />
</target>
<target name="scalatest.test" depends="buildProperties, jbigi" >
<ant dir="core/java/" target="scalatest.test" />
<ant dir="router/java/" target="scalatest.test" />
</target>
<target name="test" depends="buildProperties, jbigi" >
<ant dir="core/java/" target="test" />
<ant dir="router/java/" target="test" />
</target>
<target name="scalatest.report" depends="buildProperties" >
<ant dir="core/java/" target="scalatest.report" />