From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id E991F7D22 for ; Thu, 24 Aug 2017 05:32:00 +0200 (CEST) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Aug 2017 20:31:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,419,1498546800"; d="scan'208";a="143319437" Received: from dpdk-test32.sh.intel.com (HELO [10.67.119.120]) ([10.67.119.120]) by fmsmga005.fm.intel.com with ESMTP; 23 Aug 2017 20:31:58 -0700 Message-ID: <599EC36C.9080502@intel.com> Date: Thu, 24 Aug 2017 20:15:40 +0800 From: "Liu, Yong" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Jianbo Liu , dts@dpdk.org, herbert.guan@arm.com References: <1503540149-2772-1-git-send-email-jianbo.liu@linaro.org> In-Reply-To: <1503540149-2772-1-git-send-email-jianbo.liu@linaro.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dts] [PATCH] framework: extend dts to run against installed dpdk packages X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2017 03:32:01 -0000 Thanks Jianbo, I'm sure whether this patch align to all dpdk release package. Let me check with my crew first. Thanks, Marvin On 08/24/2017 10:02 AM, Jianbo Liu wrote: > dts runs from dpdk source code by default, but sometimes users may want > to run tests on installed packages. This patch gives them an option to do that. > > One of dpdk packaging is deb_dpdk, which is popular for ubuntu and other > debian-based system. > > It's simple to do that, only to configure installed sdk path and testpmd path > in the parameters. > > An example here is to run on deb_dpdk packages: > [Execution1] > crbs= > drivername=igb_uio > test_suites= > cmdline, > ......, > targets= > x86_64-native-linuxapp-gcc > parameters=nic_type=cfg:func=true:installed_dpdk_sdk=/usr/share/dpdk:testpmd_path=/usr/bin/testpmd > > If installed_dpdk_sdk is set, dts will not compile the libs, kernel > modules and testpmd. > > Signed-off-by: Jianbo Liu > ---