Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'autotest-checkers.sh')
-rwxr-xr-xautotest-checkers.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/autotest-checkers.sh b/autotest-checkers.sh
index cfa70a764b0..a539b598ded 100755
--- a/autotest-checkers.sh
+++ b/autotest-checkers.sh
@@ -15,39 +15,6 @@ RESULT=$(($RESULT+$?))
php ./build/OCPSinceChecker.php
RESULT=$(($RESULT+$?))
-dataDirCreated=0
-if ! [ -e data/ ]; then
- dataDirCreated=1
- echo "Create directory 'data/'"
- mkdir data/
-fi
-for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;); do
- echo "Testing $app"
- if
- [ "$app" == "dav" ] || \
- [ "$app" == "encryption" ] || \
- [ "$app" == "federatedfilesharing" ] || \
- [ "$app" == "files" ] || \
- [ "$app" == "files_external" ] || \
- [ "$app" == "files_sharing" ] || \
- [ "$app" == "files_trashbin" ] || \
- [ "$app" == "files_versions" ] || \
- [ "$app" == "provisioning_api" ] || \
- [ "$app" == "settings" ] || \
- [ "$app" == "updatenotification" ] || \
- [ "$app" == "user_ldap" ]
- then
- ./occ app:check-code --skip-checkers "$app"
- else
- ./occ app:check-code "$app"
- fi
- RESULT=$(($RESULT+$?))
-done;
-if [ $dataDirCreated == 1 ]; then
- echo "Delete created directory 'data/'"
- rm -rf data/
-fi
-
php ./build/files-checker.php
RESULT=$(($RESULT+$?))