From patchwork Thu Jan 12 07:47:53 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Tu, Lijuan" X-Patchwork-Id: 121879 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 2B01C423B4; Thu, 12 Jan 2023 09:03:09 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2886440A7D; Thu, 12 Jan 2023 09:03:09 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 06BDF400EF for ; Thu, 12 Jan 2023 09:03:06 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1673510587; x=1705046587; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=EBxMl6/bLkS/afxft4e90ultQHSMZpOK/6sbUbz9CwE=; b=UfEZCYbKsh0hhonfYIYgbrt4BWuFA8IznmZ0UCbuXvGDKnkEt/9M/7UD 6uPuUu3q2xb/TDzRIXSM7D/XAp5/gpStbi4mdh4g6Skbhr1Z77jukq3PG Iws9jlCHX3Xsr0VlmqpLBTfuSEBUKCe8Kaw6nYp+Uy8pcs5tyoLzocScK NuB01YCjJARwf5LGFR8+BqY9m+H+e7YOXjyKDFFCq7ul4XovOEMainNbx M3Zf6xcgyZ98MKO423qb5H9gbqEWT+xrix4A6dVhELpPQ6y0GM6aD/lzv TBQkj1ES1HuHNxyIaiB5mW4XgamOJlVW03ZSBRjr6wMCmEnBWYDSPwlPP w==; X-IronPort-AV: E=McAfee;i="6500,9779,10586"; a="324875641" X-IronPort-AV: E=Sophos;i="5.96,319,1665471600"; d="scan'208";a="324875641" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jan 2023 00:02:46 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10586"; a="651047541" X-IronPort-AV: E=Sophos;i="5.96,319,1665471600"; d="scan'208";a="651047541" Received: from dpdk-lijuan-1.sh.intel.com ([10.67.119.225]) by orsmga007.jf.intel.com with ESMTP; 12 Jan 2023 00:02:44 -0800 From: Lijuan Tu To: dts@dpdk.org Cc: Lijuan Tu Subject: [PATCH] add release note for 22.11 Date: Thu, 12 Jan 2023 15:47:53 +0800 Message-Id: <20230112074753.2328694-1-lijuan.tu@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Signed-off-by: Lijuan Tu --- doc/dts_gsg/rel_notes/index.rst | 1 + doc/dts_gsg/rel_notes/release_22_11.rst | 73 +++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 doc/dts_gsg/rel_notes/release_22_11.rst diff --git a/doc/dts_gsg/rel_notes/index.rst b/doc/dts_gsg/rel_notes/index.rst index dbfe4450..44916c25 100644 --- a/doc/dts_gsg/rel_notes/index.rst +++ b/doc/dts_gsg/rel_notes/index.rst @@ -10,3 +10,4 @@ Release Notes release_21_11 release_22_03 release_22_07 + release_22_11 diff --git a/doc/dts_gsg/rel_notes/release_22_11.rst b/doc/dts_gsg/rel_notes/release_22_11.rst new file mode 100644 index 00000000..ad7a43bc --- /dev/null +++ b/doc/dts_gsg/rel_notes/release_22_11.rst @@ -0,0 +1,73 @@ +.. SPDX-License-Identifier: BSD-3-Clause + Copyright 2023 The DTS contributors + +DTS Release 22.11 +================= + +Key Takeaway +------------ + +* **Unit Testing** + +DPDK provide 2 ways to run unit test, one is `dpdk-test` app, the other is `meson test` command. +Support for running unit tests through `dpdk-test` app is removed. +`tests/TestSuite_meson_tests.py` is now used for unit testing. + +* **New Features** + + * Support Docker Container. + * Pin cpu cores to VM threads for better performance. + * Testpmd command changed in port representor action. + * Add test points to imporve testing coverage. + +Added Items +----------- + +* **Add new test plans.** + + * vhost_dsa_test_plan.rst + * vhost_user_interrupt_cbdma_test_plan.rst + * vhost_event_idx_interrupt_cbdma_test_plan.rst + * ice_buffer_split_test_plan.rst + * ice_header_split_perf_test_plan.rst + * ice_dcf_disable_acl_filter_test_plan.rst + * ice_iavf_flow_subscribe_test_plan.rst + +* **Add new test suites.** + + * TestSuite_vhost_dsa.py + * TestSuite_vhost_user_interrupt_cbdma.py + * TestSuite_vhost_event_idx_interrupt_cbdma.py + * TestSuite_basic_4k_pages_dsa.py + * TestSuite_loopback_virtio_user_server_mode_dsa.py + * TestSuite_vm2vm_virtio_net_perf_dsa.py + * TestSuite_vm2vm_virtio_user_dsa.py + * TestSuite_vm2vm_virtio_pmd_dsa.py + * TestSuite_ice_buffer_split.py + * TestSuite_ice_header_split_perf.py + * TestSuite_ice_dcf_disable_acl_filter.py + * TestSuite_ice_iavf_flow_subscribe.py + * TestSuite_ice_enable_basic_hqos_on_pf.py + +Removed Items +------------- + +* **Remove test plans.** + + * vswitch_sample_dsa_test_plan.rst + * pvp_vhost_dsa_test_plan.rst + * kni_test_plan.rst + * ice_1pps_signal_test_plan.rst + * ice_qinq_test_plan.rst + * flow_classify_softnic_test_plan.rst + * metering_and_policing_test_plan.rst + * unit_tests_*.rst + +* **Remove test suites.** + + * TestSuite_kni.py + * TestSuite_ice_1pps_signal.py + * TestSuite_ice_qinq.py + * TestSuite_flow_classify_softnic.py + * TestSuite_metering_and_policing.py + * TestSuite_unit_test_*.py