scripts: add more git log capitalization checks
Add API, NUMA, HW, SW, FW and VMDq to list of words to capitalize properly. Since VMDq is a bit unusual, add it as special case check so we can print an error message giving the correct way to write it. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
parent
e757070d64
commit
d8a1ccdc55
@ -109,11 +109,14 @@ bad=$(echo "$headlines" | grep --color=always \
|
||||
bad=$(echo "$headlines" | grep -E --color=always \
|
||||
-e '\<(rx|tx|RX|TX)\>' \
|
||||
-e '\<[pv]f\>' \
|
||||
-e '\<[hsf]w\>' \
|
||||
-e '\<l[234]\>' \
|
||||
-e ':.*\<api\>' \
|
||||
-e ':.*\<dma\>' \
|
||||
-e ':.*\<pci\>' \
|
||||
-e ':.*\<mtu\>' \
|
||||
-e ':.*\<mac\>' \
|
||||
-e ':.*\<numa\>' \
|
||||
-e ':.*\<vlan\>' \
|
||||
-e ':.*\<rss\>' \
|
||||
-e ':.*\<freebsd\>' \
|
||||
@ -126,6 +129,12 @@ bad=$(echo "$headlines" | grep -E --color=always \
|
||||
| sed 's,^,\t,')
|
||||
[ -z "$bad" ] || printf "Wrong headline lowercase:\n$bad\n"
|
||||
|
||||
# special case check for VMDq to give good error message
|
||||
bad=$(echo "$headlines" | grep -E --color=always \
|
||||
-e '\<(vmdq|VMDQ)\>' \
|
||||
| sed 's,^,\t,')
|
||||
[ -z "$bad" ] || printf "Wrong headline capitalization, use 'VMDq':\n$bad\n"
|
||||
|
||||
# check headline length (60 max)
|
||||
bad=$(echo "$headlines" |
|
||||
awk 'length>60 {print}' |
|
||||
|
Loading…
x
Reference in New Issue
Block a user