From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) by dpdk.org (Postfix) with ESMTP id AE6BC2904 for ; Fri, 18 Jan 2019 02:34:50 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id 89E7D13D6; Thu, 17 Jan 2019 20:34:49 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 17 Jan 2019 20:34:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=gBivQCvZzA8k4FKWkfbAc3l2kGStzrgrM3w/8ns2DDA=; b=QSM0COfS94NS kOaa2fVr6Nny433KQE4MjpQX/Qha9HZhkNsNCgo/me0ydZbqL8rCG+O07I3uZXvq GyQU50gebEHrOnVl/ksq6F32Nvn2YW3ikheos7jYmYK5dVt1yD10fSdwFgTEe7+S InZIk28RKNiZv1CItYuEINBkWA765aU= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=gBivQCvZzA8k4FKWkfbAc3l2kGStzrgrM3w/8ns2D DA=; b=gGLpyCXB8g+na588mJ7D/C3ZE7/4m5p7v4Yl5S7NdaDqC5v1DEm5PJtAs cAWk168Fg1Dkk4V6gF4Znf7OVz0ewekt4pk1yDTTgpVd8LyDT7EXhAhcFjbnjdDJ PRvdJxBodyhfk1F6ChZjYNFRfSG11sAYbVwmIOpn/mW9+X3coYf5yyx565WKFb9t yKffWCRMUTsDMje4rhEjNI9J/Qwbr9beBqu4v+9/VxW8Xw3xctfHX66+VaIEITpD drMrKaShQwKCqwVIOzX4Sv8aVOSLdlwr9cecF08S2y5DGrEewYx6MXyrgmGx6WTX paIS4jUxRR7FbsVSRRz1p8tadx2lw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedtledrgeelgdefhecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfhuthenuceurghilhhouhhtmecufedt tdenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurhephffvufffkfgjfh gggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgrshcuofhonhhjrghlohhnuceo thhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecukfhppeejjedrudefgedrvddtfe drudekgeenucfrrghrrghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhho nhdrnhgvthenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id DBC4DE41AC; Thu, 17 Jan 2019 20:34:47 -0500 (EST) From: Thomas Monjalon To: Naga Suresh Somarowthu Cc: dev@dpdk.org, reshma.pattan@intel.com, anatoly.burakov@intel.com, remy.horton@intel.com Date: Fri, 18 Jan 2019 02:34:46 +0100 Message-ID: <25805038.YpNabzTz1s@xps> In-Reply-To: <1539000767-22745-1-git-send-email-naga.sureshx.somarowthu@intel.com> References: <1539000767-22745-1-git-send-email-naga.sureshx.somarowthu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v14 0/4] add unit tests for bitrate, latency and pdump libraries 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: , X-List-Received-Date: Fri, 18 Jan 2019 01:34:51 -0000 08/10/2018 14:12, Naga Suresh Somarowthu: > 1/4: add helper functions for tests using ring-PMD Rx/Tx > 2/4: unit test cases added for bitrate library > 3/4: unit test cases added for latencystats library > 4/4: unit test cases added for pdump library > > Patches 2/4, 3/4 and 4/4 depends on 1/4 > > Signed-off-by: Naga Suresh Somarowthu > Reviewed-by: Reshma Pattan > Acked-by: Reshma Pattan > > --- > v14 :rebased > v13: added required changes for meson build > updated respective patches > updated the headers as per IWYU > v12: corrected commit message for pdump unit test > v11: fixed compilation issue in centos and 32bit arch > removed memzone free as per fix in the latency library > and updated the maintainers file > v10: fixed clang compiler issues and freed latency stats memzone in latency stats unit tests. > v9: rebased ontop of latest autotest changes and added new tests to the autotest list > v8: renamed commit headline and freed the metrics memzone for bitrate ut > v7: removed unused macros and corrected the comment > v6: updated ring variable appropriately > v5: rebased, freed pools and rings, created common patch set > --- > > Naga Suresh Somarowthu (4): > test: add helper functions for tests using ring-PMD Rx/Tx > test: add unit tests for bitrate library > test: add unit tests for latencystats library > test: add unit test for pdump library Rebased and applied, thanks