diff --git a/Meta/check-ak-test-files.sh b/Meta/check-ak-test-files.sh new file mode 100755 index 0000000000..3a657a76bb --- /dev/null +++ b/Meta/check-ak-test-files.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +set -eo pipefail + +script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P) +cd "${script_path}/.." + +MISSING_FILES=n + +while IFS= read -r FILENAME; do + # Simply search whether the CMakeLists.txt *ever* mention the test files. + if ! grep -qP "${FILENAME}" AK/Tests/CMakeLists.txt ; then + echo "AK/Tests/CMakeLists.txt is missing the test file ${FILENAME}" + MISSING_FILES=y + fi +done < <( + git ls-files 'AK/Tests/Test*.cpp' | xargs -i basename {} +) + +if [ "n" != "${MISSING_FILES}" ] ; then + echo "Some files are missing from the AK/Tests/CMakeLists.txt." + echo "If a new test file is being added, ensure it is in the CMakeLists.txt." + echo "This ensures the new tests are always run." + exit 1 +fi diff --git a/Meta/lint-ci.sh b/Meta/lint-ci.sh index 8b2cb76756..c659d8857b 100755 --- a/Meta/lint-ci.sh +++ b/Meta/lint-ci.sh @@ -6,6 +6,7 @@ script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P) cd "${script_path}/.." || exit 1 for cmd in \ + Meta/check-ak-test-files.sh \ Meta/check-debug-flags.sh \ Meta/check-style.sh \ Meta/lint-executable-resources.sh \