mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:37:46 +00:00
Meta + Lagom: Fix paths after movement of tests to Tests/
Not sure how this didn't cause a build break when I originally moved them in #6891. Better fix them now.
This commit is contained in:
parent
1162e71a5c
commit
7e28ecc305
2 changed files with 7 additions and 7 deletions
|
@ -10,11 +10,11 @@ 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}"
|
||||
echo "Tests/AK/CMakeLists.txt is missing the test file ${FILENAME}"
|
||||
MISSING_FILES=y
|
||||
fi
|
||||
done < <(
|
||||
git ls-files 'AK/Tests/Test*.cpp' | xargs -i basename {}
|
||||
git ls-files 'Test/AK/Test*.cpp' | xargs -i basename {}
|
||||
)
|
||||
|
||||
if [ "n" != "${MISSING_FILES}" ] ; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue