From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id A1B3B10FCD5 for ; Tue, 12 Apr 2022 08:59:37 +0000 (UTC) From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org, Petri Latvala , Ch Sai Gowtham , Andrzej Hajda Date: Tue, 12 Apr 2022 10:59:08 +0200 Message-Id: <2a6359e9b7cfcc7cfaa37339d3aa8a3af9788d66.1649753814.git.mchehab@kernel.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH v2 09/12] code_cov_parse_info: fix error handling when opening files List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Mauro Carvalho Chehab While on bash scripts we use "||" for error handling, perl uses "or" instead. Yet, it doesn't warn when "||" is used. That causes it to print a warning when the open fail while reading filter files, instead of the original intent of finishing and reporting an error. Reviewed-by: Ch Sai Gowtham Signed-off-by: Mauro Carvalho Chehab --- To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover. See [PATCH v2 00/12] at: https://lore.kernel.org/all/cover.1649753814.git.mchehab@kernel.org/ scripts/code_cov_parse_info | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/code_cov_parse_info b/scripts/code_cov_parse_info index 3e1525a67d99..c8284a297b33 100755 --- a/scripts/code_cov_parse_info +++ b/scripts/code_cov_parse_info @@ -513,7 +513,7 @@ my $filter_str = ""; my $has_filter; if ($func_filters) { - open IN, $func_filters || die "Can't open $func_filters"; + open IN, $func_filters or die "Can't open $func_filters"; while () { s/^\s+//; s/\s+$//; @@ -524,7 +524,7 @@ if ($func_filters) { } if ($src_filters) { - open IN, $src_filters || die "Can't open $src_filters"; + open IN, $src_filters or die "Can't open $src_filters"; while () { s/^\s+//; s/\s+$//; -- 2.35.1