Merge pull request #1691 from SiboVG/unstable
Add no-junit-report unit test targets in root
This commit is contained in:
commit
fef90fdb34
13
build.xml
13
build.xml
@ -45,12 +45,23 @@
|
|||||||
<target name="unittest" depends="unittest-core, unittest-swing">
|
<target name="unittest" depends="unittest-core, unittest-swing">
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="unittest-no-junit-report" depends="unittest-core, unittest-swing">
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="unittest-core" depends="jar-core">
|
<target name="unittest-core" depends="jar-core">
|
||||||
<ant dir="core" target="unittest" inheritAll="false" />
|
<ant dir="core" target="unittest" inheritAll="false" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="unittest-core-no-junit-report" depends="jar-core">
|
||||||
|
<ant dir="core" target="unittest" inheritAll="false" />
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="unittest-swing" depends="jar-swing">
|
<target name="unittest-swing" depends="jar-swing">
|
||||||
<ant dir="swing" target="unittest" inheritAll="false" />
|
<ant dir="swing" target="unittest-no-junit-report" inheritAll="false" />
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="unittest-swing-no-junit-report" depends="jar-swing">
|
||||||
|
<ant dir="swing" target="unittest-no-junit-report" inheritAll="false" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- CHECK -->
|
<!-- CHECK -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user