summaryrefslogtreecommitdiff
path: root/Meta/check-ak-test-files.sh
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-05-07 04:02:12 -0700
committerLinus Groh <mail@linusgroh.de>2021-05-08 00:04:10 +0100
commit7e28ecc305172873bf3f4e564caee7e6ccba3cbf (patch)
tree0e147a99fa89de3172533bca2660cfea1d988f87 /Meta/check-ak-test-files.sh
parent1162e71a5c7f607fd027f8e095f68f083ac3fcf5 (diff)
downloadserenity-7e28ecc305172873bf3f4e564caee7e6ccba3cbf.zip
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.
Diffstat (limited to 'Meta/check-ak-test-files.sh')
-rwxr-xr-xMeta/check-ak-test-files.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Meta/check-ak-test-files.sh b/Meta/check-ak-test-files.sh
index b9fab96559..f73c05feb2 100755
--- a/Meta/check-ak-test-files.sh
+++ b/Meta/check-ak-test-files.sh
@@ -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