From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: [PATCH 1/2] scripts: fix false positive warning Date: Tue, 10 May 2016 21:09:00 -0700 Message-ID: <1462939741-12357-2-git-send-email-yuanhan.liu@linux.intel.com> References: <1462939741-12357-1-git-send-email-yuanhan.liu@linux.intel.com> Cc: Thomas Monjalon , Yuanhan Liu To: dev@dpdk.org Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 50362B44F for ; Wed, 11 May 2016 06:04:15 +0200 (CEST) In-Reply-To: <1462939741-12357-1-git-send-email-yuanhan.liu@linux.intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" It reports an false positive warning when the commit subject includes the word "ctx", as it matches following regexp: -e 'rx\|tx\|RX\|TX' Fixes: edbeb7d962e9 ("scripts: check commit formatting") Signed-off-by: Yuanhan Liu --- scripts/check-git-log.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-git-log.sh b/scripts/check-git-log.sh index ce6c15e..b7ea1be 100755 --- a/scripts/check-git-log.sh +++ b/scripts/check-git-log.sh @@ -86,8 +86,8 @@ bad=$(echo "$headlines" | grep \ [ -z "$bad" ] || printf "Wrong headline uppercase:\n$bad\n" # check headline uppercase (Rx/Tx, VF, L2, MAC, Linux, ARM...) -bad=$(echo "$headlines" | grep \ - -e 'rx\|tx\|RX\|TX' \ +bad=$(echo "$headlines" | grep -E \ + -e '\<(rx|tx|RX|TX)\>' \ -e '\<[pv]f\>' \ -e '\' \ -e ':.*\' \ -- 1.9.0