mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-22 01:02:22 -05:00
java-decompiler: build script fixed to not fail too early
This commit is contained in:
parent
309aca1d29
commit
fdc75e3c80
@ -46,13 +46,14 @@
|
|||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="test" depends="init,test-compile">
|
<target name="test" depends="init,test-compile">
|
||||||
<junit printsummary="true" haltonfailure="true">
|
<junit printsummary="true" failureproperty="tests.failed">
|
||||||
<classpath path="${test-out}:${out}"/>
|
<classpath path="${test-out}:${out}"/>
|
||||||
<classpath refid="junit"/>
|
<classpath refid="junit"/>
|
||||||
<batchtest>
|
<batchtest>
|
||||||
<fileset dir="${test-src}" includes="**/*Test.java"/>
|
<fileset dir="${test-src}" includes="**/*Test.java"/>
|
||||||
</batchtest>
|
</batchtest>
|
||||||
</junit>
|
</junit>
|
||||||
|
<fail if="tests.failed" message="Tests failed."/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
Reference in New Issue
Block a user