From 4b65c2ad3300990ea6b471559c5d10b5c6111430 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Sun, 10 Aug 2014 19:07:09 +0200 Subject: lint: improve whitespace test The whitespace test only trips on files that are part of the git index - in particular not temporary editor files or other cruft that doesn't hurt anyone. Change-Id: I793fcc773845ee02281d8614b07e9c5958126a5a Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/6582 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Edward O'Callaghan --- util/lint/lint-stable-003-whitespace | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'util') diff --git a/util/lint/lint-stable-003-whitespace b/util/lint/lint-stable-003-whitespace index 1e824a1e76..4c0a5fdb55 100755 --- a/util/lint/lint-stable-003-whitespace +++ b/util/lint/lint-stable-003-whitespace @@ -19,25 +19,6 @@ # DESCR: Check for superfluous whitespace in the tree LC_ALL=C export LC_ALL -find src util -name .svn -type d -prune -o \ - -type f -perm /111 -prune -o \ - -name .git -type d -prune -o \ - -name README -prune -o \ - -name LICENSE -prune -o \ - -name TODO -prune -o \ - -name COPYING -prune -o \ - -name \*.txt -prune -o \ - -name \*.exe -prune -o \ - -name \*.o -prune -o \ - -name microcode-\*.h -prune -o \ - -name \*.?_shipped -prune -o \ - -name \*.[18] -prune -o \ - -name \*~ -prune -o \ - -name kconfig -type d -prune -o \ - -name romcc -type d -prune -o \ - -name crossgcc -type d -prune -o \ - -name vendorcode -type d -prune -o \ - -type f -exec \ - grep -l "[[:space:]][[:space:]]*$" {} + | \ +grep -l "[[:space:]][[:space:]]*$" `git ls-files src util |egrep -v "(^3rdparty|^src/vendorcode/|^util/kconfig/|\|\|\|_shipped$|\.patch$)"` | \ sed -e "s,^.*$,File & has lines ending with whitespace.," -- cgit v1.2.3