util/lint/lint-stable-019-header-files: add test

Add a test to make sure that the linter fails correctly.

Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: I971951d4248dd10abe4c622025fdaf86e014c6cc
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67351
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
Martin Roth 2022-09-05 11:22:11 -06:00 committed by Felix Held
parent cd9110b6d2
commit f6ba75c736
1 changed files with 22 additions and 0 deletions

View File

@ -11,6 +11,28 @@ EXCLUDED_FILES='src/include/kconfig.h'
HEADER_FILES="k\?config rules compiler"
TESTFILE1="src/lib/version.c"
TESTFILE2="src/lib/string.c"
TESTFILE3="src/lib/malloc.c"
TESTFILE4="src/lib/hardwaremain.c"
EXPECTED_FAILURES=4
# Configure to make sure tests fail
if [ "$1" = "--test" ]; then
sed -i.bak "s|^.*SPDX-License-Identifier.*|&\n\n#include <config.h>\n|" "${TESTFILE1}"
sed -i.bak "s|^.*SPDX-License-Identifier.*|&\n\n#include \"kconfig.h\"\n|" "${TESTFILE2}"
sed -i.bak "s|^.*SPDX-License-Identifier.*|&\n\n#include \"compiler.h\"\n|" "${TESTFILE3}"
sed -i.bak "s|^.*SPDX-License-Identifier.*|&\n\n#include <rules.h>\n|" "${TESTFILE4}"
echo "Expect ${EXPECTED_FAILURES} failures."
exit 0
elif [ "$1" = "--reset" ]; then
mv "${TESTFILE1}.bak" "${TESTFILE1}"
mv "${TESTFILE2}.bak" "${TESTFILE2}"
mv "${TESTFILE3}.bak" "${TESTFILE3}"
mv "${TESTFILE4}.bak" "${TESTFILE4}"
exit 0
fi
# Use git grep if the code is in a git repo, otherwise use grep.
if [ -n "$(command -v git)" ] && \
[ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]