java-decompiler: build script fixed to not fail too early

master
Roman Shevchenko 10 years ago
parent 309aca1d29
commit fdc75e3c80
  1. 3
      build.xml

@ -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…
Cancel
Save