Making sure we notice if stuff broke when running from ant (i.e. on the build VM)
Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/200e2a12 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/200e2a12 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/200e2a12 Branch: refs/heads/feature/flexmojos-tests Commit: 200e2a12518845e69514aa06cb1865e8a9b0c33b Parents: 6961f0f Author: Erik de Bruin <[email protected]> Authored: Fri Oct 24 12:11:55 2014 +0200 Committer: Erik de Bruin <[email protected]> Committed: Fri Oct 24 12:11:55 2014 +0200 ---------------------------------------------------------------------- compiler.tests/build.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/200e2a12/compiler.tests/build.xml ---------------------------------------------------------------------- diff --git a/compiler.tests/build.xml b/compiler.tests/build.xml index 6801404..96b384f 100644 --- a/compiler.tests/build.xml +++ b/compiler.tests/build.xml @@ -96,7 +96,7 @@ <junit dir="${compiler.tests}" fork="yes" forkMode="perBatch" maxmemory="${maxmem}m" timeout="${test.timeout}" printsummary="true" showoutput="true" - haltonerror="false" haltonfailure="false" + haltonerror="true" haltonfailure="true" failureproperty="tests.unit.failed"> <classpath> <pathelement location="${compiler.tests}/classes"/> @@ -134,7 +134,7 @@ <junit dir="${compiler.tests}" fork="yes" forkMode="perBatch" maxmemory="${maxmem}m" timeout="${test.timeout}" printsummary="true" showoutput="true" - haltonerror="false" haltonfailure="false" + haltonerror="true" haltonfailure="true" failureproperty="tests.unit.failed"> <classpath> <pathelement location="${compiler.tests}/classes"/> @@ -172,7 +172,7 @@ <junit dir="${compiler.tests}" fork="yes" forkMode="perBatch" maxmemory="${maxmem}m" timeout="${test.timeout}" printsummary="true" showoutput="true" - haltonerror="false" haltonfailure="false" + haltonerror="true" haltonfailure="true" failureproperty="tests.functional.failed"> <classpath> <pathelement location="${compiler.tests}/classes"/>
