From patchwork Mon Sep 5 14:48:52 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Weiyuan Li X-Patchwork-Id: 115943 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 47951A0093; Mon, 5 Sep 2022 16:48:46 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 43A7940697; Mon, 5 Sep 2022 16:48:46 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id C109340041 for ; Mon, 5 Sep 2022 16:48:43 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1662389325; x=1693925325; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=8kLU6PqV3fJ5zjdPSR5+Ro8PReyifIOcK44TnXUTo1Y=; b=KaGghIqq9KDakKwGVtJySn9v7LyRBQ6v0GDGx37TAWBe4hQAg7t63YtN 2t4aPARYoXg7xAiaZiRclY7pmm+NkRsDucT8CVmkdi0b0WBrKKGTtTFYJ vIfUPAVhufl2+yxlJ/H5lE9t0dz6uIrwhGugYwRoej82bWccBnjPAV0GJ xgI6FIG+bHtU3kjQRLOz3wGvau3SWedntCIE6RDCeqd/A/InqrPepDTFn 82Oe/zim1qqLdsQJGREbzsUSJtGShxa37FuDoy/naISYzd4Xe6kahCeJj xTv+2s7XfKsU8IN4z4Qp8aX+ncuT7dpBC7GUzJAEGhKCz+WvmkDHtvieC g==; X-IronPort-AV: E=McAfee;i="6500,9779,10461"; a="382701689" X-IronPort-AV: E=Sophos;i="5.93,291,1654585200"; d="scan'208";a="382701689" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2022 07:48:42 -0700 X-IronPort-AV: E=Sophos;i="5.93,291,1654585200"; d="scan'208";a="643832352" Received: from unknown (HELO localhost.localdomain) ([10.239.252.248]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2022 07:48:41 -0700 From: Weiyuan Li To: dts@dpdk.org, qi.fu@intel.com Cc: Weiyuan Li Subject: [dts][PATCH V3 3/3] tests/vlan_ethertype_config: modify case name to match test plan Date: Mon, 5 Sep 2022 22:48:52 +0800 Message-Id: <20220905144852.5158-3-weiyuanx.li@intel.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20220905144852.5158-1-weiyuanx.li@intel.com> References: <20220905144852.5158-1-weiyuanx.li@intel.com> 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 Modify test case name to match test plan. Signed-off-by: Weiyuan Li Acked-by: Lijuan Tu --- tests/TestSuite_vlan_ethertype_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_vlan_ethertype_config.py b/tests/TestSuite_vlan_ethertype_config.py index 409adf2a..b641d928 100644 --- a/tests/TestSuite_vlan_ethertype_config.py +++ b/tests/TestSuite_vlan_ethertype_config.py @@ -202,7 +202,7 @@ class TestVlanEthertypeConfig(TestCase): ) self.check_vlan_packets(rx_vlan, tpid, self.rxItf) - def test_vlan_add_vlan_tag(self): + def test_add_vlan_tag_identifier_with_change_vlan_tpid(self): """ test adding VLAN Tag Identifier with changing VLAN TPID """ @@ -235,7 +235,7 @@ class TestVlanEthertypeConfig(TestCase): self.dut.send_expect("stop", "testpmd> ", 30) - def test_vlan_strip(self): + def test_vlan_header_strip_with_change_vlan_tpid(self): """ Test Case 4: test VLAN header striping with changing VLAN TPID """ @@ -265,7 +265,7 @@ class TestVlanEthertypeConfig(TestCase): ) self.check_vlan_packets(rx_vlan, tpid, self.rxItf) - def test_vlan_enable_vlan_insertion(self): + def test_vlan_header_insert_with_change_vlan_tpid(self): """ Test Case 5: test VLAN header inserting with changing VLAN TPID """