forked from I2P_Developers/i2p.i2p
add streaming lib tests to the top-level ant targets
This commit is contained in:
10
build.xml
10
build.xml
@@ -1300,6 +1300,7 @@
|
||||
<target name="junit.test" depends="buildProperties, jbigi" >
|
||||
<ant dir="core/java/" target="junit.test" />
|
||||
<ant dir="router/java/" target="junit.test" />
|
||||
<ant dir="apps/streaming/java/" target="junit.test" />
|
||||
</target>
|
||||
<target name="scalatest.test" depends="buildProperties, jbigi" >
|
||||
<ant dir="core/java/" target="scalatest.test" />
|
||||
@@ -1308,6 +1309,7 @@
|
||||
<target name="test" depends="buildProperties, jbigi" >
|
||||
<ant dir="core/java/" target="test" />
|
||||
<ant dir="router/java/" target="test" />
|
||||
<ant dir="apps/streaming/java/" target="test" />
|
||||
</target>
|
||||
<target name="scalatest.report" depends="buildProperties" >
|
||||
<ant dir="core/java/" target="scalatest.report" />
|
||||
@@ -1316,19 +1318,23 @@
|
||||
<target name="junit.report" depends="buildProperties" >
|
||||
<ant dir="core/java/" target="junit.report" />
|
||||
<ant dir="router/java/" target="junit.report" />
|
||||
<ant dir="apps/streaming/java/" target="junit.report" />
|
||||
</target>
|
||||
<target name="clover.report" depends="buildProperties" if="with.clover">
|
||||
<ant dir="core/java/" target="clover.report" />
|
||||
<ant dir="router/java/" target="clover.report" />
|
||||
<ant dir="apps/streaming/java" target="clover.report" />
|
||||
</target>
|
||||
<target name="cobertura.report" depends="buildProperties" if="with.cobertura">
|
||||
<ant dir="core/java/" target="cobertura.report" />
|
||||
<ant dir="router/java/" target="cobertura.report" />
|
||||
<ant dir="apps/streaming/java" target="cobertura.report" />
|
||||
</target>
|
||||
<target name="test.report" depends="junit.report, scalatest.report, clover.report, cobertura.report"/>
|
||||
<target name="fulltest" depends="buildProperties, jbigi" >
|
||||
<ant dir="core/java/" target="fulltest" />
|
||||
<ant dir="router/java/" target="fulltest" />
|
||||
<ant dir="apps/streaming/java" target="fulltest" />
|
||||
</target>
|
||||
<target name="jenkins.cobertura.report" depends="cobertura.report">
|
||||
<!--
|
||||
@@ -1343,6 +1349,10 @@
|
||||
match='filename="net' replace='filename="router/java/src/net'/>
|
||||
<replaceregexp byline="true" file="reports/router/cobertura/coverage.xml"
|
||||
match="<source>./src" replace="<source>router/java/src"/>
|
||||
<replaceregexp byline="true" file="reports/streaming/cobertura/coverage.xml"
|
||||
match='filename="net' replace='filename="streaming/java/src/net'/>
|
||||
<replaceregexp byline="true" file="reports/streaming/cobertura/coverage.xml"
|
||||
match="<source>./src" replace="<source>streaming/java/src"/>
|
||||
</target>
|
||||
<!-- end unit tests -->
|
||||
|
||||
|
Reference in New Issue
Block a user