From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <bruce.richardson@intel.com>
Received: from mga07.intel.com (mga07.intel.com [134.134.136.100])
 by dpdk.org (Postfix) with ESMTP id A82C21B118
 for <dev@dpdk.org>; Wed, 24 Oct 2018 12:17:32 +0200 (CEST)
X-Amp-Result: UNSCANNABLE
X-Amp-File-Uploaded: False
Received: from fmsmga006.fm.intel.com ([10.253.24.20])
 by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 24 Oct 2018 03:17:31 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.54,420,1534834800"; d="scan'208";a="275147147"
Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.107])
 by fmsmga006.fm.intel.com with SMTP; 24 Oct 2018 03:17:29 -0700
Received: by  (sSMTP sendmail emulation); Wed, 24 Oct 2018 11:17:28 +0100
Date: Wed, 24 Oct 2018 11:17:28 +0100
From: Bruce Richardson <bruce.richardson@intel.com>
To: Hari kumar Vemula <hari.kumarx.vemula@intel.com>
Cc: dev@dpdk.org, reshma.pattan@intel.com
Message-ID: <20181024101728.GB6128@bricha3-MOBL.ger.corp.intel.com>
References: <1539354799-21027-1-git-send-email-hari.kumarx.vemula@intel.com>
 <1540372032-28642-5-git-send-email-hari.kumarx.vemula@intel.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <1540372032-28642-5-git-send-email-hari.kumarx.vemula@intel.com>
Organization: Intel Research and Development Ireland Ltd.
User-Agent: Mutt/1.10.1 (2018-07-13)
Subject: Re: [dpdk-dev] [PATCH v4 4/5] test: add library dependent tests
 under test-driver suite
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Wed, 24 Oct 2018 10:17:33 -0000

On Wed, Oct 24, 2018 at 10:07:11AM +0100, Hari kumar Vemula wrote:
> From: Hari Kumar Vemula <hari.kumarx.vemula@intel.com>
> 
> Added test cases that depend on library as cryptodev

Commit log could do with a little improvement: It's not that they depend on
a library, but rather on specific drivers.
 
> Signed-off-by: Hari Kumar Vemula <hari.kumarx.vemula@intel.com>
> ---
>  test/test/meson.build | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
> 
> diff --git a/test/test/meson.build b/test/test/meson.build
> index 9e4d7621d..da1dbfac4 100644
> --- a/test/test/meson.build
> +++ b/test/test/meson.build
> @@ -217,6 +217,25 @@ perf_test_names = [
>          'pmd_perf_autotest',
>  ]
>  
> +#All test cases in driver_test_names list are non-parallel
> +driver_test_names = [
> +        'link_bonding_autotest',
> +        'link_bonding_mode4_autotest',
> +        'link_bonding_rssconf_autotest',
> +        'cryptodev_sw_mrvl_autotest',
> +        'cryptodev_dpaa2_sec_autotest',
> +        'cryptodev_dpaa_sec_autotest',
> +        'cryptodev_qat_autotest',
> +        'cryptodev_aesni_mb_autotest',
> +        'cryptodev_openssl_autotest',
> +        'cryptodev_scheduler_autotest',
> +        'cryptodev_aesni_gcm_autotest',
> +        'cryptodev_null_autotest',
> +        'cryptodev_sw_snow3g_autotest',
> +        'cryptodev_sw_kasumi_autotest',
> +        'cryptodev_sw_zuc_autotest',
> +]
> +