From 08fec4605830b1a525e7cacab7d31f18f455d4c3 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 10 Jan 2014 19:41:54 +0100 Subject: lint: check label style only on changed files This should probably propagate to the other lint checks. The idea: only enforce style on files that were at least touched by the developer. Change-Id: I5ac690ee726e27e80e790fa9a41cd14b84ad2161 Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/4644 Tested-by: build bot (Jenkins) Reviewed-by: Vladimir Serbinenko Reviewed-by: Alexandru Gagniuc Reviewed-by: Paul Menzel --- util/lint/lint-stable-004-style-labels | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/lint/lint-stable-004-style-labels b/util/lint/lint-stable-004-style-labels index 31ad74e0e4..10b0408575 100755 --- a/util/lint/lint-stable-004-style-labels +++ b/util/lint/lint-stable-004-style-labels @@ -19,4 +19,4 @@ # DESCR: Check that C labels begin at start-of-line LC_ALL=C export LC_ALL -find src -name '*.[scS]' -exec grep '^[[:space:]][[:space:]]*[a-z][a-z]*:[[:space:]]*$' {} + |grep -v "[^a-z_]default:" +git diff --name-status |grep -v "^D" |cut -c3- |grep "^src/.*\.[csS]" | xargs grep -Hn '^[[:space:]][[:space:]]*[a-z][a-z]*:[[:space:]]*$' |grep -v "[^a-z_]default:" -- cgit v1.2.3