From: Michal Nowak Date: Mon, 15 Feb 2021 10:59:33 +0000 (+0100) Subject: Check for "file not removed" in system test output X-Git-Tag: v9.17.11~44^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a2778abdff4b91bde3cdc5cf28e22a77494b206;p=thirdparty%2Fbind9.git Check for "file not removed" in system test output Run this check only when in Git repository, because the run.sh function which produces the "file not removed" warning is run only when build directory is the same as the source directory, that is only for in-tree builds. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6b469844ccc..4bcdae3baa2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -311,6 +311,7 @@ stages: script: - cd bin/tests/system - make -j${TEST_PARALLEL_JOBS:-1} -k check V=1 + - if git rev-parse > /dev/null 2>&1; then ( ! grep "^I:.*:file.*not removed$" *.log ); fi after_script: - test -n "${OUT_OF_TREE_WORKSPACE}" && cd "${OUT_OF_TREE_WORKSPACE}" - test -d bind-* && cd bind-*