Browse Source

meanwhile phpunit is seq faulting with mysql as well

tags/v6.0.0alpha2
Thomas Mueller 11 years ago
parent
commit
1f9ac7850d
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      autotest.sh

+ 4
- 4
autotest.sh View File

@@ -130,11 +130,11 @@ EOF
rm -rf coverage-html-$1
mkdir coverage-html-$1
php -f enable_all.php
if [ "$1" == "pgsql" ] ; then
# no coverage with pg - causes segfault on ci.tmit.eu - reason unknown
phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml
else
if [ "$1" == "sqlite" ] ; then
# coverage only with sqlite - causes segfault on ci.tmit.eu - reason unknown
phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1
else
phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml
fi
}


Loading…
Cancel
Save