diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-26 15:33:35 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-26 15:33:35 +0200 |
commit | bc61a9c09743eda0ffc18542d6bda2ed34d8553a (patch) | |
tree | 67303feeec89241048e6cb41f010fd09e5891a97 /autotest.sh | |
parent | 6fcee1ee117a167aa0c526ca39effbf086d10991 (diff) | |
download | nextcloud-server-bc61a9c09743eda0ffc18542d6bda2ed34d8553a.tar.gz nextcloud-server-bc61a9c09743eda0ffc18542d6bda2ed34d8553a.zip |
enable testing individual tests
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autotest.sh b/autotest.sh index 4562b3ed08a..59f0240d99b 100755 --- a/autotest.sh +++ b/autotest.sh @@ -132,9 +132,9 @@ EOF 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 + 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 + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml $2 $3 fi } @@ -149,7 +149,7 @@ if [ -z "$1" ] # we will add oci as soon as it's stable #execute_tests 'oci' else - execute_tests $1 + execute_tests $1 $2 $3 fi # |