diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-05-24 21:50:34 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-05-24 21:50:34 +0200 |
commit | 1f9ac7850d7cc992b712fa99fd3d4f92a219f9d8 (patch) | |
tree | a62f73f5ee14d7fee68ad74b07a00efbddc05b6a /autotest.sh | |
parent | ae9adcaf8cc1f2b279494cfdd30a1d62d41f5060 (diff) | |
download | nextcloud-server-1f9ac7850d7cc992b712fa99fd3d4f92a219f9d8.tar.gz nextcloud-server-1f9ac7850d7cc992b712fa99fd3d4f92a219f9d8.zip |
meanwhile phpunit is seq faulting with mysql as well
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autotest.sh b/autotest.sh index 0c59ee51a05..4562b3ed08a 100755 --- a/autotest.sh +++ b/autotest.sh @@ -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 } |