From mboxrd@z Thu Jan 1 00:00:00 1970 From: Naga Suresh Somarowthu Subject: [PATCH v5 0/4] add unit tests for bitrate, latency and pdump libraries Date: Tue, 24 Jul 2018 11:54:27 +0100 Message-ID: <1532429671-1606-1-git-send-email-naga.sureshx.somarowthu@intel.com> References: <1531821650-5506-1-git-send-email-jananeex.m.parthasarathy@intel.com> Cc: remy.horton@intel.com, reshma.pattan@intel.com, Naga Suresh Somarowthu To: dev@dpdk.org Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id E689998 for ; Tue, 24 Jul 2018 12:54:54 +0200 (CEST) In-Reply-To: <1531821650-5506-1-git-send-email-jananeex.m.parthasarathy@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 1/4: add ring pmd based packet helper functions for UT 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 Reviewed-by: Anatoly Burakov Reviewed-by: Remy Horton --- v5: rebased, freed pools and rings, created common patch set --- Naga Suresh Somarowthu (4): test: add ring pmd based packet rx/tx for UT test: add unit tests for bitrate library test: add unit tests for latencystats library test: add unit test for pdump library test/test/Makefile | 4 + test/test/autotest_data.py | 12 ++ test/test/sample_packet_forward.c | 115 +++++++++++++++++ test/test/sample_packet_forward.h | 41 ++++++ test/test/test_bitratestats.c | 227 +++++++++++++++++++++++++++++++++ test/test/test_latencystats.c | 216 ++++++++++++++++++++++++++++++++ test/test/test_pdump.c | 256 ++++++++++++++++++++++++++++++++++++++ test/test/test_pdump.h | 40 ++++++ 8 files changed, 911 insertions(+) create mode 100644 test/test/sample_packet_forward.c create mode 100644 test/test/sample_packet_forward.h create mode 100644 test/test/test_bitratestats.c create mode 100644 test/test/test_latencystats.c create mode 100644 test/test/test_pdump.c create mode 100644 test/test/test_pdump.h -- 2.13.6