X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=devtools%2Fcheckpatches.sh;h=3b03b7ef2301fb8e82d61d5a1767cacb1e623890;hb=efa8088663e3917780f9cb257f2366743e9bfe2f;hp=fb9e9f76dedf6ea77fb188fc271ee54186dcaa50;hpb=4d4c612e6a3021c9d0faa7768919c588021af230;p=dpdk.git diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh index fb9e9f76de..3b03b7ef23 100755 --- a/devtools/checkpatches.sh +++ b/devtools/checkpatches.sh @@ -44,20 +44,27 @@ print_usage () { } check_forbidden_additions() { # + res=0 + # refrain from new additions of rte_panic() and rte_exit() # multiple folders and expressions are separated by spaces awk -v FOLDERS="lib drivers" \ -v EXPRESSIONS="rte_panic\\\( rte_exit\\\(" \ -v RET_ON_FAIL=1 \ + -v MESSAGE='Using rte_panic/rte_exit' \ -f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \ - "$1" + "$1" || res=1 + # svg figures must be included with wildcard extension # because of png conversion for pdf docs awk -v FOLDERS='doc' \ -v EXPRESSIONS='::[[:space:]]*[^[:space:]]*\\.svg' \ -v RET_ON_FAIL=1 \ + -v MESSAGE='Using explicit .svg extension instead of .*' \ -f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \ - "$1" + "$1" || res = 1 + + return $res } number=0