Merge pull request #3857 from owncloud/enable_single_autotest
enable testing individual tests
This commit is contained in:
commit
180faa24a1
|
@ -132,9 +132,9 @@ EOF
|
||||||
php -f enable_all.php
|
php -f enable_all.php
|
||||||
if [ "$1" == "sqlite" ] ; then
|
if [ "$1" == "sqlite" ] ; then
|
||||||
# coverage only with sqlite - causes segfault on ci.tmit.eu - reason unknown
|
# 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
|
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
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,7 +149,7 @@ if [ -z "$1" ]
|
||||||
# we will add oci as soon as it's stable
|
# we will add oci as soon as it's stable
|
||||||
#execute_tests 'oci'
|
#execute_tests 'oci'
|
||||||
else
|
else
|
||||||
execute_tests $1
|
execute_tests $1 $2 $3
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue