You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
812 B
25 lines
812 B
#!/bin/sh |
|
|
|
# |
|
# Copyright (c) 2015 Intel Corporation. |
|
# |
|
# SPDX-License-Identifier: Apache-2.0 |
|
# |
|
|
|
[ -f $1 ] && rm $1 |
|
[ -f $1_error.types ] && rm $1_error.types |
|
[ -f $1_warning.types ] && rm $1_warning.types |
|
|
|
dirs_to_check="arch drivers include kernel lib" |
|
files=$(for d in ${dirs_to_check}; do find $d/ -type f -name '*.[ch]'; done) |
|
for i in $files; do |
|
${ZEPHYR_BASE}/scripts/checkpatch.pl --mailback --no-tree -f --emacs --summary-file --show-types --ignore BRACES,PRINTK_WITHOUT_KERN_LEVEL,SPLIT_STRING --max-line-length=100 $i >> $1 |
|
done |
|
grep ERROR: $1 |cut -d : -f 3,4 |sort -u > $1_error.types |
|
grep WARNING: $1 |cut -d : -f 3,4 |sort -u > $1_warning.types |
|
for i in `cat $1_error.types`; do |
|
echo -n $i ' '; grep $i $1 | wc -l |
|
done |
|
for i in `cat $1_warning.types`; do |
|
echo -n $i ' '; grep $i $1 | wc -l |
|
done
|
|
|