From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 67639A034C; Mon, 20 Dec 2021 06:31:38 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3392540395; Mon, 20 Dec 2021 06:31:38 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 6412B40141 for ; Mon, 20 Dec 2021 06:31:36 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1639978296; x=1671514296; h=from:to:cc:subject:date:message-id; bh=JgZqoSYW6UW1l9CEB9rmNRtySImiiTjrOo7ZWtBgNt4=; b=WSaIhbPvVlu38z6mODWM1EUXSp6e16xbYdNweSw+36OMQmM7AvwN+1/Q InnilnepOSj+MZjOG1K6PjOZtqSTLlkTjn5C/E0joS3S9YJUgZqOnMSol +7CR5ib0UN4k87kN5PUtexSWl383eXdf5r9t4lxXZl3S6GscHDuiCv9Jx m2p99dPqVfj/YU1eiCxnrAi7FwR5AVL6ZlOqHwRL4LjNx1mHCCaworzTA bYaO9dxFMYngkytZxODpKaP1rEETCoM0hqauD83ICz3k+vxjIohW40JVu bGDhzwRtMJEToySYfv2H0ud5BoYfjlNaG2mG12X7iPo7wZ5u5ozC+vCGn Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10203"; a="238844405" X-IronPort-AV: E=Sophos;i="5.88,219,1635231600"; d="scan'208";a="238844405" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Dec 2021 21:31:33 -0800 X-IronPort-AV: E=Sophos;i="5.88,219,1635231600"; d="scan'208";a="507556660" Received: from unknown (HELO localhost.localdomain) ([10.240.183.103]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Dec 2021 21:31:32 -0800 From: Zhimin Huang To: dts@dpdk.org Cc: Zhimin Huang Subject: [dts] [PATCH V3] checksum_offload/l4_tx:remove check sctp test step Date: Mon, 20 Dec 2021 21:58:05 +0800 Message-Id: <20211220135805.31027-1-zhiminx.huang@intel.com> X-Mailer: git-send-email 2.17.1 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 cause root commit is b2a9e4a8,it affects the tx sctp checksum. but customers only require UDP and TCP,so remove check sctp checksum test step. Signed-off-by: Zhimin Huang --- test_plans/checksum_offload_test_plan.rst | 2 +- tests/TestSuite_checksum_offload.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test_plans/checksum_offload_test_plan.rst b/test_plans/checksum_offload_test_plan.rst index 6748aa34..47f35236 100644 --- a/test_plans/checksum_offload_test_plan.rst +++ b/test_plans/checksum_offload_test_plan.rst @@ -297,7 +297,7 @@ Test Case: Hardware Checksum Check L4 TX =========================================== This test involves testing many different scenarios with a L4 checksum. A variety of tunneling protocols, L3 protocols and L4 protocols are combined -to test as many scenarios as possible. Currently, UDP, TCP and SCTP are used +to test as many scenarios as possible. Currently, UDP and TCP are used as L4 protocols, with IP and IPv6 being used at level 3. The tested tunneling protocols are VXLAN and GRE. This test is used to determine whether the hardware offloading of checksums works properly. diff --git a/tests/TestSuite_checksum_offload.py b/tests/TestSuite_checksum_offload.py index 6e2b59c6..8f47c546 100644 --- a/tests/TestSuite_checksum_offload.py +++ b/tests/TestSuite_checksum_offload.py @@ -69,7 +69,6 @@ l3_proto_classes = [ l4_proto_classes = [ UDP, TCP, - SCTP ] tunnelling_proto_classes = [ -- 2.17.1