Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2013-08-12 19:13:05 +0400
committerMichal Čihař <michal@cihar.com>2013-08-12 19:13:12 +0400
commit0dd6a9aa4af5a0727fa078e62e47ffb91e5748ad (patch)
tree48ee3df01816ae8fb4d97922686126e7d58d14b9 /build.xml
parent85b45b560391283bbbf16447ddaa786c276172ce (diff)
Make ant fail on testsuite failure
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 0bc0cf1a34..9defe2707c 100644
--- a/build.xml
+++ b/build.xml
@@ -19,13 +19,13 @@
</target>
<target name="phpunit" description="Run unit tests using PHPUnit and generates junit.xml and clover.xml">
- <exec executable="phpunit">
+ <exec executable="phpunit" failonerror="true">
<arg line="--configuration phpunit.xml.dist"/>
</exec>
</target>
<target name="phpunit-nocoverage" description="Run unit tests using PHPUnit and generates junit.xml">
- <exec executable="phpunit">
+ <exec executable="phpunit" failonerror="true">
<arg line="--configuration phpunit.xml.nocoverage"/>
</exec>
</target>