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:
authorDaniel Kesselberg <mail@danielkesselberg.de>2020-07-14 22:43:19 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2020-07-14 22:43:19 +0300
commitfc8566b253f2522541f6334bca0b2d0402a4ebc5 (patch)
treee0bebf9a2d38bf0b8e453604f50936da68529af7
parent8f78205be076aab99e3ce7e848b1e31541df6b7c (diff)
Move check for missing since tag to autotest-checkers.sh
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
-rwxr-xr-xautotest-checkers.sh2
-rwxr-xr-xautotest.sh3
2 files changed, 2 insertions, 3 deletions
diff --git a/autotest-checkers.sh b/autotest-checkers.sh
index 105cf95c534..cfa70a764b0 100755
--- a/autotest-checkers.sh
+++ b/autotest-checkers.sh
@@ -12,6 +12,8 @@ php ./build/htaccess-checker.php
RESULT=$(($RESULT+$?))
bash ./build/ca-bundle-checker.sh
RESULT=$(($RESULT+$?))
+php ./build/OCPSinceChecker.php
+RESULT=$(($RESULT+$?))
dataDirCreated=0
if ! [ -e data/ ]; then
diff --git a/autotest.sh b/autotest.sh
index a43e05f9334..7214df18b14 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -109,9 +109,6 @@ else
PRIMARY_STORAGE_CONFIG="local"
fi
-# check for the presence of @since in all OCP methods
-$PHP build/OCPSinceChecker.php
-
# Back up existing (dev) config if one exists and backup not already there
if [ -f config/config.php ] && [ ! -f config/config-autotest-backup.php ]; then
mv config/config.php config/config-autotest-backup.php