diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-25 14:41:03 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-25 14:41:13 +0200 |
commit | 0486dc24adef5caf4582f54da00b8d1ee251aae6 (patch) | |
tree | 63486569d59cd4c2ce988aca0078eafdb376e677 /autotest.sh | |
parent | 68bfcfbf77ff938fa93b7f80c991c2872b68b157 (diff) | |
download | nextcloud-server-0486dc24adef5caf4582f54da00b8d1ee251aae6.tar.gz nextcloud-server-0486dc24adef5caf4582f54da00b8d1ee251aae6.zip |
collect coverage for all databases again - ci.owncloud.org has more RAM available
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/autotest.sh b/autotest.sh index a343f6a25ab..83f184fa9c0 100755 --- a/autotest.sh +++ b/autotest.sh @@ -142,12 +142,7 @@ EOF rm -rf coverage-html-$1 mkdir coverage-html-$1 php -f enable_all.php - 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 $2 $3 - else - phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml $2 $3 - fi + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 $2 $3 } # |