devtools: add explicit warnings for forbidden tokens
Replace the content of warning in the forbidden tokens script from using the searched regex into using explicit messages Signed-off-by: Arnon Warshavsky <arnon@qwilt.com>
This commit is contained in:
parent
349ac52bbc
commit
b467d38284
@ -63,12 +63,7 @@ BEGIN {
|
|||||||
END {
|
END {
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
print "Warning in " substr(last_file,6) ":"
|
print "Warning in " substr(last_file,6) ":"
|
||||||
print "are you sure you want to add the following:"
|
print MESSAGE
|
||||||
for (key in expressions) {
|
|
||||||
if (expressions[key] > 0) {
|
|
||||||
print key
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exit RET_ON_FAIL
|
exit RET_ON_FAIL
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,6 +49,7 @@ check_forbidden_additions() { # <patch>
|
|||||||
awk -v FOLDERS="lib drivers" \
|
awk -v FOLDERS="lib drivers" \
|
||||||
-v EXPRESSIONS="rte_panic\\\( rte_exit\\\(" \
|
-v EXPRESSIONS="rte_panic\\\( rte_exit\\\(" \
|
||||||
-v RET_ON_FAIL=1 \
|
-v RET_ON_FAIL=1 \
|
||||||
|
-v MESSAGE='Using rte_panic/rte_exit' \
|
||||||
-f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
|
-f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
|
||||||
"$1"
|
"$1"
|
||||||
# svg figures must be included with wildcard extension
|
# svg figures must be included with wildcard extension
|
||||||
@ -56,6 +57,7 @@ check_forbidden_additions() { # <patch>
|
|||||||
awk -v FOLDERS='doc' \
|
awk -v FOLDERS='doc' \
|
||||||
-v EXPRESSIONS='::[[:space:]]*[^[:space:]]*\\.svg' \
|
-v EXPRESSIONS='::[[:space:]]*[^[:space:]]*\\.svg' \
|
||||||
-v RET_ON_FAIL=1 \
|
-v RET_ON_FAIL=1 \
|
||||||
|
-v MESSAGE='Using explicit .svg extension instead of .*' \
|
||||||
-f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
|
-f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
|
||||||
"$1"
|
"$1"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user