From patchwork Wed Jun 8 07:09:54 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yu Jiang X-Patchwork-Id: 112530 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 9DF58A054D; Wed, 8 Jun 2022 09:10:05 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9294841132; Wed, 8 Jun 2022 09:10:05 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id CA4D34021D for ; Wed, 8 Jun 2022 09:10:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1654672204; x=1686208204; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=X3OHcHkXkLM6SYgMJvtKW+XWQ1SaP8QspPiyvccmS6M=; b=M7iMTSFSpPN/dzlpV7bJLS2lmKndvWlQf56WQJ7E1QqeUvRTSiKfnwEV MPGBKM0mixhimAHUj8Lln9o1Gu6podhkcIGnIiScfFWj+e9zAyG0KJtMu zgPsCWYFbKZJQiuSEbn3r7sO/y/+Lz2nABfQ+SWcpI+QYmkLVNBh9ECVI bH9WgEnqBfHwyzXNY23DnfvbJVqcLCv06FUSAy8GWMNRguWIFdxWzIdVt 1r2IE5f4aeAekwjqUtPajZ8hFsMDbedUFZsfwIBRdMpFpMl5r+lFCOV6h lTosjosbyoWNPxc2aEaWo6BW/LnrRciOl3oBYGBr6H+Hb9FkqiVogR+58 A==; X-IronPort-AV: E=McAfee;i="6400,9594,10371"; a="265593031" X-IronPort-AV: E=Sophos;i="5.91,285,1647327600"; d="scan'208";a="265593031" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jun 2022 00:10:02 -0700 X-IronPort-AV: E=Sophos;i="5.91,285,1647327600"; d="scan'208";a="636626623" Received: from unknown (HELO localhost.localdomain.localdomain) ([10.239.251.127]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jun 2022 00:10:01 -0700 From: "Yu.Jiang" To: yuan.peng@intel.com, dts@dpdk.org Cc: Yu Jiang Subject: [dts][PATCH V1 1/2] test_plans/kernelpf_iavf: remove 2 duplicated vf jumboframe cases Date: Wed, 8 Jun 2022 15:09:54 +0800 Message-Id: <1654672195-6189-2-git-send-email-yux.jiang@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1654672195-6189-1-git-send-email-yux.jiang@intel.com> References: <1654672195-6189-1-git-send-email-yux.jiang@intel.com> 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 From: Yu Jiang VF with/without jumboframe are duplicated to vf_jumboframe suite, so remove the two cases Signed-off-by: Yu Jiang --- test_plans/kernelpf_iavf_test_plan.rst | 39 -------------------------- 1 file changed, 39 deletions(-) diff --git a/test_plans/kernelpf_iavf_test_plan.rst b/test_plans/kernelpf_iavf_test_plan.rst index 6f65a529..e584a358 100644 --- a/test_plans/kernelpf_iavf_test_plan.rst +++ b/test_plans/kernelpf_iavf_test_plan.rst @@ -306,45 +306,6 @@ Send packets with vlan tag:: Check that out from VF contains the vlan tag. -Test case: VF without jumboframe -================================ - -Ensure tester's port supports sending jumboframe:: - - ifconfig 'tester interface' mtu 9000 - -Launch testpmd for VF port without enabling jumboframe option:: - - .//app/dpdk-testpmd -c f -n 4 -- -i - - testpmd> set fwd mac - testpmd> start - -Check packet less than the standard maximum frame (1518) can be received. - -Check packet more than the standard maximum frame (1518) can not be received. - -Test case: VF with jumboframe -============================= - -Ensure tester's port supports sending jumboframe:: - - ifconfig 'tester interface' mtu 9000 - -Launch testpmd for VF port with jumboframe option:: - - .//app/dpdk-testpmd -c f -n 4 -- -i --max-pkt-len=3000 - - testpmd> set fwd mac - testpmd> start - -Check that packet length larger than the standard maximum frame (1518) and -lower or equal to the maximum frame length can be received. - -Check that packet length larger than the configured maximum packet can not -be received. - - Test case: VF RSS =================