Lines Matching +full:- +full:- +full:fix +full:- +full:missing
10 …body=$(git log --no-show-signature -n 1 --pretty=%b "$REF" | grep -Ev "http(s)*://" | grep -E -m 1…
11 if [ -n "$body" ]; then
23 foundline=$(git log --no-show-signature -n 1 "$REF" | grep -E -m 1 "$regex")
24 if [ -z "$foundline" ]; then
25 echo "error: missing \"$1\""
38 long_subject=$(git log --no-show-signature -n 1 --pretty=%s "$REF" | grep -E -m 1 '.{73}')
39 if [ -n "$long_subject" ]; then
45 if ! check_tagged_line "Signed-off-by" ; then
59 # subject starts with Fix coverity defects means it's a coverity fix
60 …subject=$(git log --no-show-signature -n 1 --pretty=%s "$REF" | grep -E -m 1 '^Fix coverity defect…
61 if [ -n "$subject" ]; then
72 # subject starts with Fix coverity defects: CID dddd, dddd...
73 subject=$(git log --no-show-signature -n 1 --pretty=%s "$REF" |
74 grep -E -m 1 'Fix coverity defects: CID [[:digit:]]+(, [[:digit:]]+)*')
75 if [ -z "$subject" ]; then
76 …echo "error: Coverity defect fixes must have a subject line that starts with \"Fix coverity defect…
81 if ! check_tagged_line "Signed-off-by" ; then
89 for line in $(git log --no-show-signature -n 1 --pretty=%b "$REF" | grep -E '^CID'); do
90 …if ! echo "$line" | grep -qE '^CID [[:digit:]]+: ([[:graph:]]+|[[:space:]])+ \(([[:upper:]]|\_)+\)…
105 if [ -n "$1" ]; then
109 # if coverity fix, test against that