mirror of https://github.com/apache/poi.git
Fail after running tests if halt.on.test.failure is set and tests are failing
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773636 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f541e98922
commit
7a021f6768
13
build.xml
13
build.xml
|
@ -1276,6 +1276,8 @@ under the License.
|
||||||
</jacoco:coverage>
|
</jacoco:coverage>
|
||||||
<delete file="${main.testokfile}"/>
|
<delete file="${main.testokfile}"/>
|
||||||
<antcall target="-test-main-write-testfile"/>
|
<antcall target="-test-main-write-testfile"/>
|
||||||
|
|
||||||
|
<fail if="main.test.failed" message="At least one test failed"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="test-report" depends="init">
|
<target name="test-report" depends="init">
|
||||||
|
@ -1385,6 +1387,8 @@ under the License.
|
||||||
</jacoco:coverage>
|
</jacoco:coverage>
|
||||||
<delete file="${scratchpad.testokfile}"/>
|
<delete file="${scratchpad.testokfile}"/>
|
||||||
<antcall target="-test-scratchpad-write-testfile"/>
|
<antcall target="-test-scratchpad-write-testfile"/>
|
||||||
|
|
||||||
|
<fail if="scratchpad.test.failed" message="At least one test failed"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="-test-scratchpad-write-testfile" unless="scratchpad.test.failed">
|
<target name="-test-scratchpad-write-testfile" unless="scratchpad.test.failed">
|
||||||
|
@ -1428,6 +1432,9 @@ under the License.
|
||||||
</batchtest>
|
</batchtest>
|
||||||
</junit>
|
</junit>
|
||||||
</jacoco:coverage>
|
</jacoco:coverage>
|
||||||
|
|
||||||
|
<fail if="ooxml.test.failed" message="At least one test failed"/>
|
||||||
|
|
||||||
<jacoco:coverage enabled="${coverage.enabled}" excludes="${coverage.excludes}" destfile="build/jacoco-@{type}-xmlsec.exec">
|
<jacoco:coverage enabled="${coverage.enabled}" excludes="${coverage.excludes}" destfile="build/jacoco-@{type}-xmlsec.exec">
|
||||||
<junit printsummary="yes" fork="yes" forkmode="once" haltonfailure="${halt.on.test.failure}"
|
<junit printsummary="yes" fork="yes" forkmode="once" haltonfailure="${halt.on.test.failure}"
|
||||||
failureproperty="ooxml.xmlsec.test.failed">
|
failureproperty="ooxml.xmlsec.test.failed">
|
||||||
|
@ -1449,6 +1456,8 @@ under the License.
|
||||||
</batchtest>
|
</batchtest>
|
||||||
</junit>
|
</junit>
|
||||||
</jacoco:coverage>
|
</jacoco:coverage>
|
||||||
|
|
||||||
|
<fail if="ooxml.xmlsec.test.failed" message="At least one test failed"/>
|
||||||
</sequential>
|
</sequential>
|
||||||
</macrodef>
|
</macrodef>
|
||||||
|
|
||||||
|
@ -1548,6 +1557,8 @@ under the License.
|
||||||
</jacoco:coverage>
|
</jacoco:coverage>
|
||||||
<delete file="${integration.testokfile}"/>
|
<delete file="${integration.testokfile}"/>
|
||||||
<antcall target="-test-integration-write-testfile"/>
|
<antcall target="-test-integration-write-testfile"/>
|
||||||
|
|
||||||
|
<fail if="integration.test.failed" message="At least one test failed"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="-test-integration-write-testfile" unless="integration.test.failed">
|
<target name="-test-integration-write-testfile" unless="integration.test.failed">
|
||||||
|
@ -1641,6 +1652,8 @@ under the License.
|
||||||
</jacoco:coverage>
|
</jacoco:coverage>
|
||||||
<delete file="${excelant.testokfile}"/>
|
<delete file="${excelant.testokfile}"/>
|
||||||
<antcall target="-test-excelant-write-testfile"/>
|
<antcall target="-test-excelant-write-testfile"/>
|
||||||
|
|
||||||
|
<fail if="excelant.test.failed" message="At least one test failed"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- GENERATE DOCUMENTATION -->
|
<!-- GENERATE DOCUMENTATION -->
|
||||||
|
|
Loading…
Reference in New Issue