scripts/run-regression-tests: Suppress the checkpatch warning "missing space after return type"

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5452 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2014-04-22 07:05:21 +00:00
parent 7a0aa7052d
commit 1762ababe5

View File

@@ -213,6 +213,7 @@ function run_checkpatch {
echo "${errors} errors / ${warnings} warnings."
grep -E '^WARNING|^ERROR' "${outputfile}" |
sort |
grep -v 'WARNING: missing space after return type' |
sed 's/^WARNING: Avoid CamelCase:.*/WARNING: Avoid CamelCase/' |
uniq -c
else