diff --git a/autotest-checkers.sh b/autotest-checkers.sh index cfa70a764b..a539b598de 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+$?))