From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CACE8A04B7; Wed, 14 Oct 2020 12:43:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 948BA1DE53; Wed, 14 Oct 2020 12:41:46 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 262B91DE48 for ; Wed, 14 Oct 2020 12:41:42 +0200 (CEST) IronPort-SDR: siJzwOsbacZxpodwMfv2S2Q3xrGKJ+Duurr483flNiGtQdOiHDJd55gJaHDHjS2/sfoVzjpoy0 hBsWqWluT1Gw== X-IronPort-AV: E=McAfee;i="6000,8403,9773"; a="250781295" X-IronPort-AV: E=Sophos;i="5.77,374,1596524400"; d="scan'208";a="250781295" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Oct 2020 03:41:41 -0700 IronPort-SDR: 0uQuW++ANqC85c5CR4YXpO6obHPn9Wff4JjBRbuEMicXoiZr4HmJqStk6nrFWirATCXDbai9m/ eeJAkGu8z+gg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,374,1596524400"; d="scan'208";a="530780037" Received: from unknown (HELO silpixa00400466.ir.intel.com) ([10.237.213.98]) by orsmga005.jf.intel.com with ESMTP; 14 Oct 2020 03:41:39 -0700 From: Conor Walsh To: mdr@ashroe.eu, nhorman@tuxdriver.com, bruce.richardson@intel.com, thomas@monjalon.net, david.marchand@redhat.com Cc: dev@dpdk.org, Conor Walsh Date: Wed, 14 Oct 2020 10:41:25 +0000 Message-Id: <20201014104126.469517-4-conor.walsh@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20201014104126.469517-1-conor.walsh@intel.com> References: <20201012130348.3212-1-conor.walsh@intel.com> <20201014104126.469517-1-conor.walsh@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v7 3/4] devtools: change not found to warning check-abi.sh X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Change dump file not found from an error to a warning to make check-abi.sh compatible with the changes to test-meson-builds.sh needed to use prebuilt references. Signed-off-by: Conor Walsh Acked-by: Ray Kinsella --- devtools/check-abi.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/devtools/check-abi.sh b/devtools/check-abi.sh index ab6748cfb..60d88777e 100755 --- a/devtools/check-abi.sh +++ b/devtools/check-abi.sh @@ -46,8 +46,7 @@ for dump in $(find $refdir -name "*.dump"); do fi dump2=$(find $newdir -name $name) if [ -z "$dump2" ] || [ ! -e "$dump2" ]; then - echo "Error: can't find $name in $newdir" - error=1 + echo "WARNING: can't find $name in $newdir, are you building with all dependencies?" continue fi abidiff $ABIDIFF_OPTIONS $dump $dump2 || { -- 2.25.1