summaryrefslogtreecommitdiff
path: root/Meta/check-ak-test-files.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Meta/check-ak-test-files.sh')
-rwxr-xr-xMeta/check-ak-test-files.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/check-ak-test-files.sh b/Meta/check-ak-test-files.sh
index a716b0d904..d929eb146f 100755
--- a/Meta/check-ak-test-files.sh
+++ b/Meta/check-ak-test-files.sh
@@ -9,7 +9,7 @@ MISSING_FILES=n
while IFS= read -r FILENAME; do
# Simply search whether the CMakeLists.txt *ever* mention the test files.
- if ! grep -qP "${FILENAME}" Tests/AK/CMakeLists.txt ; then
+ 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