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 5C16DA3295 for ; Wed, 23 Oct 2019 12:01:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 167671BFF2; Wed, 23 Oct 2019 12:01:07 +0200 (CEST) Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by dpdk.org (Postfix) with ESMTP id CC1531BFEF for ; Wed, 23 Oct 2019 12:01:05 +0200 (CEST) Received: from glumotte.dev.6wind.com (unknown [10.16.0.195]) by proxy.6wind.com (Postfix) with ESMTP id B33FB3356AF; Wed, 23 Oct 2019 12:01:05 +0200 (CEST) Date: Wed, 23 Oct 2019 12:01:05 +0200 From: Olivier Matz To: Honnappa Nagarahalli Cc: sthemmin@microsoft.com, jerinj@marvell.com, bruce.richardson@intel.com, david.marchand@redhat.com, pbhagavatula@marvell.com, konstantin.ananyev@intel.com, drc@linux.vnet.ibm.com, hemant.agrawal@nxp.com, dev@dpdk.org, dharmik.thakkar@arm.com, ruifeng.wang@arm.com, gavin.hu@arm.com Message-ID: <20191023100105.GE25286@glumotte.dev.6wind.com> References: <20190906190510.11146-1-honnappa.nagarahalli@arm.com> <20191021002300.26497-1-honnappa.nagarahalli@arm.com> <20191021002300.26497-4-honnappa.nagarahalli@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191021002300.26497-4-honnappa.nagarahalli@arm.com> User-Agent: Mutt/1.10.1 (2018-07-13) Subject: Re: [dpdk-dev] [RFC v6 3/6] test/ring: add functional tests for configurable element size ring 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" On Sun, Oct 20, 2019 at 07:22:57PM -0500, Honnappa Nagarahalli wrote: > Add functional tests for rte_ring_xxx_elem APIs. At this point these > are derived mainly from existing rte_ring_xxx test cases. > > Signed-off-by: Honnappa Nagarahalli > --- > app/test/Makefile | 1 + > app/test/meson.build | 1 + > app/test/test_ring_elem.c | 859 ++++++++++++++++++++++++++++++++++++++ > 3 files changed, 861 insertions(+) > create mode 100644 app/test/test_ring_elem.c Given the few differences between test_ring_elem.c and test_ring.c, wouldn't it be possible to have both tests in the same file?