diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-02-26 13:29:49 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-02-26 13:32:44 +0100 |
commit | 62d54e4c2a4140d77450c538b66cbf35a1045332 (patch) | |
tree | cd5dfee61cbdef26261b1ef0051e7633f96eba96 /autotest-external.sh | |
parent | adc986f3e4b83670f69e2ce48044595193be4e69 (diff) | |
download | nextcloud-server-62d54e4c2a4140d77450c538b66cbf35a1045332.tar.gz nextcloud-server-62d54e4c2a4140d77450c538b66cbf35a1045332.zip |
fix files external test run and add common-tests option
Diffstat (limited to 'autotest-external.sh')
-rwxr-xr-x | autotest-external.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/autotest-external.sh b/autotest-external.sh index 74acddfd7a0..8254defc9ca 100755 --- a/autotest-external.sh +++ b/autotest-external.sh @@ -24,6 +24,7 @@ function print_syntax { echo -e "\nExample: ./autotest.sh sqlite webdav-ownCloud" >&2 echo "will run the external suite from \"apps/files_external/tests/env/start-webdav-ownCloud.sh\"" >&2 echo -e "\nIf no arguments are specified, all available external backends will be run with all database configs" >&2 + echo -e "\nIf you specify 'common-tests' as startfile it will just run the tests that are independent from the backends" >&2 } if ! [ -x "$PHPUNIT" ]; then @@ -219,14 +220,18 @@ EOF # just enable files_external php ../occ app:enable files_external if [ -z "$NOCOVERAGE" ]; then - #"$PHPUNIT" --configuration phpunit-autotest-external.xml --log-junit "autotest-external-results-$1.xml" --coverage-clover "autotest-external-clover-$1.xml" --coverage-html "coverage-external-html-$1" + "$PHPUNIT" --configuration phpunit-autotest-external.xml --log-junit "autotest-external-results-$1.xml" --coverage-clover "autotest-external-clover-$1.xml" --coverage-html "coverage-external-html-$1" RESULT=$? else echo "No coverage" - #"$PHPUNIT" --configuration phpunit-autotest-external.xml --log-junit "autotest-external-results-$1.xml" + "$PHPUNIT" --configuration phpunit-autotest-external.xml --log-junit "autotest-external-results-$1.xml" RESULT=$? fi + if [ -n "$2" -a "$2" == "common-tests" ]; then + return; + fi + FILES_EXTERNAL_BACKEND_PATH=../apps/files_external/tests/backends FILES_EXTERNAL_BACKEND_ENV_PATH=../apps/files_external/tests/env |