From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yw0-f169.google.com (mail-yw0-f169.google.com [209.85.161.169]) by dpdk.org (Postfix) with ESMTP id 6C4317D3E for ; Thu, 24 Aug 2017 07:04:12 +0200 (CEST) Received: by mail-yw0-f169.google.com with SMTP id h127so12278692ywf.0 for ; Wed, 23 Aug 2017 22:04:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=7lGz4hvp1uXkRpeutdCWt/e+B/dTghneQNZGeq67Siw=; b=ccWtQpOZOhKy4H7PTePa2DDt2Fd+Ma7cl5f4vCzHKPM/OHubds20av+wcCAJX90Kc3 ApUkaPA5gAnx0qU8O0NSMIu+XDP0a7ioy9qCfYPt2f03hpA8HyQ1E/p3fRQbv4QS9Mrf CAfHMYLjpWrBFd12A+taBYw0RAmdEIxvfsoY8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=7lGz4hvp1uXkRpeutdCWt/e+B/dTghneQNZGeq67Siw=; b=bWSmovZtllmkgp1qUMCnwG/neubyKmnXwW4M9aIEbzmgFyXlpp8s96sb2RwGR1xuKc I2l8tMtjkc2ednj3rfDrQu4x/TQO8LtlJKQnNDNeqkC3ksa7S4hBKrx+vyN4lWM22iHu WZBDkezB1TXRccaMnQibV8oYIHwn0YJUFD3C66VObhX6tgaAwlrDRWbLBAGHBxa38qPl XsKlfBhB0zXgfm15hgT2irNJqJmEnqEpmPVesBjpMF0Xd5Pwqu1T93BfVpgROQXoRDDl o3v0Fokep4OBsGhNZWpJB2fyzHr07cIloQ/YQ7zFsz3S/G72PWnhOl5sa0717xC8ilVq TjUw== X-Gm-Message-State: AHYfb5in6xOuaWMU289LT0ivr8DxiC0nzg23oeft/P46FS9QMIRH6o3f AgCSD8tfOvzYheC5G8ucCRXJFXlk5PUXhLk= X-Received: by 10.37.87.70 with SMTP id l67mr4265957ybb.283.1503551051559; Wed, 23 Aug 2017 22:04:11 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.210.74 with HTTP; Wed, 23 Aug 2017 22:04:11 -0700 (PDT) In-Reply-To: <599EC36C.9080502@intel.com> References: <1503540149-2772-1-git-send-email-jianbo.liu@linaro.org> <599EC36C.9080502@intel.com> From: Jianbo Liu Date: Thu, 24 Aug 2017 13:04:11 +0800 Message-ID: To: "Liu, Yong" Cc: dts@dpdk.org, Herbert Guan Content-Type: text/plain; charset="UTF-8" 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 05:04:12 -0000 On 24 August 2017 at 20:15, Liu, Yong wrote: > Thanks Jianbo, I'm sure whether this patch align to all dpdk release > package. Sure, please let me known if any change needed. Thanks! Jianbo > 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 >> --- > >