mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-09 18:16:09 +03:00
616b3dc718
basename from GNU coreutils 8.32 (the default on Debian Bullseye, as bash 5.2.0 does not include basename as a built-in command) does not accept multiple arguments. This will cause the command to fail with no output, and the error code not being propagated for some reason. This means that the loop never gets executed, and thus the check never actually does anything. This commit fixes that behavior by calling 'basename' multiple times.
26 lines
793 B
Bash
Executable File
26 lines
793 B
Bash
Executable File
#!/usr/bin/env 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 -qF "${FILENAME}" Tests/AK/CMakeLists.txt ; then
|
|
echo "Tests/AK/CMakeLists.txt is either missing the test file ${FILENAME} or is not in the commit's staged changes"
|
|
MISSING_FILES=y
|
|
fi
|
|
done < <(
|
|
git ls-files 'Tests/AK/Test*.cpp' | xargs -n1 basename
|
|
)
|
|
|
|
if [ "n" != "${MISSING_FILES}" ] ; then
|
|
echo "Some files are missing from the Tests/AK/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
|