devtools: check coverity and bugzilla tags
authorDavid Marchand <david.marchand@redhat.com>
Tue, 8 Oct 2019 15:52:29 +0000 (17:52 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 27 Nov 2019 23:33:58 +0000 (00:33 +0100)
Let's try to check for discrepancies in coverity and bugzilla tags.
The contributing guide specifies that:
- for coverity issues, the tag is 'Coverity issue:'
- for bugzilla issues, the tag is 'Bugzilla ID:'

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Kevin Traynor <ktraynor@redhat.com>
devtools/check-git-log.sh

index a763ccf..f9d0550 100755 (executable)
@@ -161,6 +161,24 @@ bad=$(echo "$tags" |
        sed 's,^.,\t&,')
 [ -z "$bad" ] || printf "Wrong tag:\n$bad\n"
 
+# check missing Coverity issue: tag
+bad=$(for commit in $commits; do
+       body=$(git log --format='%b' -1 $commit)
+       echo "$body" | grep -qi coverity || continue
+       echo "$body" | grep -q '^Coverity issue:' && continue
+       git log --format='\t%s' -1 $commit
+done)
+[ -z "$bad" ] || printf "Missing 'Coverity issue:' tag:\n$bad\n"
+
+# check missing Bugzilla ID: tag
+bad=$(for commit in $commits; do
+       body=$(git log --format='%b' -1 $commit)
+       echo "$body" | grep -qi bugzilla || continue
+       echo "$body" | grep -q '^Bugzilla ID:' && continue
+       git log --format='\t%s' -1 $commit
+done)
+[ -z "$bad" ] || printf "Missing 'Bugzilla ID:' tag:\n$bad\n"
+
 # check missing Fixes: tag
 bad=$(for fix in $fixes ; do
        git log --format='%b' -1 $fix | grep -q '^Fixes: ' ||