From patchwork Tue Mar 16 14:32:53 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Power, Ciara" X-Patchwork-Id: 89243 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id DA1D0A054F; Tue, 16 Mar 2021 15:34:20 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E48C326009C; Tue, 16 Mar 2021 15:33:16 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id CA7CD26008F for ; Tue, 16 Mar 2021 15:33:13 +0100 (CET) IronPort-SDR: clJNvx97Di6woY3QUizKGIFwvagPjsyG05HOqG4OWuA4q0yKyWDGBEyPM0jtlRZ8lGhuLJoK0m sv5Hw/FiuUKQ== X-IronPort-AV: E=McAfee;i="6000,8403,9924"; a="189361836" X-IronPort-AV: E=Sophos;i="5.81,251,1610438400"; d="scan'208";a="189361836" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2021 07:33:13 -0700 IronPort-SDR: GXmh33lT1WKMU4vCNOqWJolx9thKobMve2/osqi/GFMCKn4C9K2CCEcC8IYSiYJSNJbJJ3o0Xf QCiBMEKRLmeQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,251,1610438400"; d="scan'208";a="373805468" Received: from silpixa00400355.ir.intel.com (HELO silpixa00400355.ger.corp.intel.com) ([10.237.223.148]) by orsmga006.jf.intel.com with ESMTP; 16 Mar 2021 07:33:12 -0700 From: Ciara Power To: dev@dpdk.org Cc: declan.doherty@intel.com, Ciara Power Date: Tue, 16 Mar 2021 14:32:53 +0000 Message-Id: <20210316143253.3849182-7-ciara.power@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210316143253.3849182-1-ciara.power@intel.com> References: <20210316143253.3849182-1-ciara.power@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH 6/6] doc: add unit test suite change to release notes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" The unit test suite framework now supports having nested sub-testsuites, or a list of testcases as before. This new unit test feature is added to the release notes. Signed-off-by: Ciara Power --- doc/guides/rel_notes/release_21_05.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/guides/rel_notes/release_21_05.rst b/doc/guides/rel_notes/release_21_05.rst index 23f7f0bff9..4ee390e8d9 100644 --- a/doc/guides/rel_notes/release_21_05.rst +++ b/doc/guides/rel_notes/release_21_05.rst @@ -70,6 +70,11 @@ New Features * Added command to display Rx queue used descriptor count. ``show port (port_id) rxq (queue_id) desc used count`` +* **Added sub-testsuite support.** + + * The unit test suite struct now supports having either a nested + list of sub-testsuites, or a list of testcases as before. + Removed Items -------------