Add test to check for up-to-date GPL license headers to lint.

"make lint" should not stop after first failed test.
Improve "make lint" output.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6097 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi
2010-11-19 10:16:43 +00:00
parent 911e2ac4b2
commit e882630d47
3 changed files with 59 additions and 5 deletions

View File

@@ -367,9 +367,9 @@ update:
dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
lint:
LINTLOG=`mktemp`; \
FAILED=0; LINTLOG=`mktemp`; \
for script in util/lint/lint-*; do \
echo `basename $$script`; \
echo; echo `basename $$script`; \
grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \
echo ========; \
$$script > $$LINTLOG; \
@@ -379,9 +379,11 @@ lint:
echo test failed: ; \
cat $$LINTLOG; \
rm -f $$LINTLOG; \
exit 1; \
fi \
FAILED=$$(( $$FAILED + 1 )); \
fi; \
echo ========; \
done; \
test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." && exit 1; }; \
rm -f $$LINTLOG
# This include must come _before_ the pattern rules below!