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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/build-ci.xml')
-rw-r--r--tests/build-ci.xml12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/build-ci.xml b/tests/build-ci.xml
index 4afb9738b7..61c5f35539 100644
--- a/tests/build-ci.xml
+++ b/tests/build-ci.xml
@@ -96,17 +96,13 @@
<echo>SchemaSpy finished</echo>
</target>
- <target name="all">
- <antcall target="test-pdo-mysql"/>
- <antcall target="test-mysqli"/>
- <antcall target="webtest"/>
- <antcall target="schemaspy"/>
+ <target name="all" depends="test-pdo-mysql,test-mysqli,webtest,schemaspy">
<fail>
<condition>
<or>
- <equals arg1="${result-mysqli}" arg2="1"/>
- <equals arg1="${result-pdo-mysql}" arg2="1"/>
- <equals arg1="${result-schemaspy}" arg2="1"/>
+ <isfailure code="${result-mysqli}"/>
+ <isfailure code="${result-pdo-mysql}"/>
+ <isfailure code="${result-schemaspy}"/>
</or>
</condition>
</fail>