From patchwork Tue Nov 6 14:35:01 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 47899 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2C98C3195; Tue, 6 Nov 2018 15:35:08 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id BA6EB2862; Tue, 6 Nov 2018 15:35:06 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Nov 2018 06:35:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,472,1534834800"; d="scan'208";a="98048223" Received: from silpixa00399752.ir.intel.com (HELO silpixa00399752.ger.corp.intel.com) ([10.237.222.212]) by orsmga003.jf.intel.com with ESMTP; 06 Nov 2018 06:35:04 -0800 From: Ferruh Yigit To: Neil Horman Cc: dev@dpdk.org, Ferruh Yigit , stable@dpdk.org Date: Tue, 6 Nov 2018 14:35:01 +0000 Message-Id: <20181106143501.6515-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.17.2 Subject: [dpdk-dev] [PATCH] test: fix build 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" With "make -C test/" command getting following warnings: awk: cmd. line:1: fatal: cannot open file `/cmdline_test/cmdline_test/' for reading (No such file or directory) awk: cmd. line:1: fatal: cannot open file `/test-pipeline/test-pipeline/' for reading (No such file or directory) awk: cmd. line:1: fatal: cannot open file `/test-acl/test-acl/' for reading (No such file or directory) This is because unexpected/invalid MAPFILE param passed to check-experimental-syms.sh There is no easy way to unify MAPFILE for different build options, instead add an input verification to script, and silently ignore wrong values. Fixes: a6ec31597a0b ("mk: add experimental tag check") Cc: stable@dpdk.org Signed-off-by: Ferruh Yigit Acked-by: Neil Horman --- Cc: nhorman@tuxdriver.com --- buildtools/check-experimental-syms.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildtools/check-experimental-syms.sh b/buildtools/check-experimental-syms.sh index d0915102d..7d1f3a568 100755 --- a/buildtools/check-experimental-syms.sh +++ b/buildtools/check-experimental-syms.sh @@ -5,6 +5,12 @@ MAPFILE=$1 OBJFILE=$2 +# added check for "make -C test/" usage +if [ ! -e $MAPFILE ] || [ ! -f $OBJFILE ] +then + exit 0 +fi + if [ -d $MAPFILE ] then exit 0