scripts: add more git log capitalization checks
authorBruce Richardson <bruce.richardson@intel.com>
Tue, 5 Jul 2016 16:03:11 +0000 (17:03 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 10 Jul 2016 15:01:02 +0000 (17:01 +0200)
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>
scripts/check-git-log.sh

index 8a7ddbd..e416aea 100755 (executable)
@@ -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}' |