[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1571897060-32374-1-git-send-email-zhong.shiqi@zte.com.cn>
Date: Thu, 24 Oct 2019 14:04:20 +0800
From: zhongshiqi <zhong.shiqi@....com.cn>
To: Julia.Lawall@...6.fr
Cc: Gilles.Muller@...6.fr, nicolas.palix@...g.fr,
michal.lkml@...kovi.net, cocci@...teme.lip6.fr,
linux-kernel@...r.kernel.org, xue.zhihong@....com.cn,
wang.yi59@....com.cn, cheng.shengyu@....com.cn,
zhongshiqi <zhong.shiqi@....com.cn>
Subject: [PATCH v2] coccicheck:support $COCCI being defined as a directory
Put a modification in scripts/coccicheck which supports users in
configuring COCCI parameter as a directory to traverse files in
directory whose next level directory contains rule files with Suffix of
cocci.
Signed-off-by: zhongshiqi <zhong.shiqi@....com.cn>
---
Changes in v2:
1.fix patch subject according to the reply by Markus
<Markus.Elfring@....de>
2.change description in “imperative mood”
scripts/coccicheck | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/scripts/coccicheck b/scripts/coccicheck
index e04d328..a1c4197 100755
--- a/scripts/coccicheck
+++ b/scripts/coccicheck
@@ -257,6 +257,10 @@ if [ "$COCCI" = "" ] ; then
for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do
coccinelle $f
done
+elif [ -d "$COCCI" ] ; then
+ for f in `find $COCCI/ -name '*.cocci' -type f | sort`; do
+ coccinelle $f
+ done
else
coccinelle $COCCI
fi
--
2.9.5
Powered by blists - more mailing lists