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 45D63A04B6; Mon, 12 Oct 2020 10:10:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 214C61D656; Mon, 12 Oct 2020 10:09:04 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id B89E11D637 for ; Mon, 12 Oct 2020 10:08:57 +0200 (CEST) IronPort-SDR: gNx9LXPIrmAoIh46IBQ2rsjTo8psUiIenw3z2WeXaVomckCHDJSZn/W++5qoUKe/hc3f7G9NL5 fYuCg0L+zqmg== X-IronPort-AV: E=McAfee;i="6000,8403,9771"; a="162239021" X-IronPort-AV: E=Sophos;i="5.77,366,1596524400"; d="scan'208";a="162239021" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Oct 2020 01:08:56 -0700 IronPort-SDR: nzW0Ztp1/hDmGMDQd7cvDzhUtKj8CyF+x9pf81C+QfKoVWhpP8PwX4Z+AissLY3fdCRPoUy1yK vym8nEY/G7UA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,366,1596524400"; d="scan'208";a="317841944" Received: from unknown (HELO silpixa00400466.ir.intel.com) ([10.237.213.195]) by orsmga006.jf.intel.com with ESMTP; 12 Oct 2020 01:08:54 -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: Mon, 12 Oct 2020 08:08:28 +0000 Message-Id: <20201012080829.3446-4-conor.walsh@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20201012080829.3446-1-conor.walsh@intel.com> References: <20200918121137.1370883-1-conor.walsh@intel.com> <20201012080829.3446-1-conor.walsh@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v5 3/4] devtools: change dump file not found to warning in 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 --- 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