From e10b167288d0ebd3017da13750cd2c7134521cf8 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sat, 25 Sep 2010 09:05:49 +0000 Subject: [PATCH] Added --no-tree option to checkpatch such that checkpatch does not check for the Signed-off-by: ... line. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@2264 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scripts/run-regression-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index 3692d5621..c73195034 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -313,7 +313,7 @@ function run_checkpatch { then echo "Running checkpatch on the SCST kernel patch ..." ( cd "${outputdir}/linux-$1" \ - && scripts/checkpatch.pl - < "${patchfile}" &> "${outputfile}") + && scripts/checkpatch.pl --no-tree - < "${patchfile}" &> "${outputfile}") local errors=$(grep -c '^ERROR' "${outputfile}") local warnings=$(grep -c '^WARNING' "${outputfile}") echo "${errors} errors / ${warnings} warnings."