From patchwork Wed Jun 8 04:57:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yaqi Tang X-Patchwork-Id: 112525 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 7996AA054D; Wed, 8 Jun 2022 06:57:20 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 73439427EC; Wed, 8 Jun 2022 06:57:20 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 919E64021F for ; Wed, 8 Jun 2022 06:57:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1654664238; x=1686200238; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3qxs6pCKKXnX857jfkPMjIciZsLtYLt/xnjcAk7PfuU=; b=jEIjbbMRtnL2j8Hf5XCEfb/2kRQhUG7XNN8joz24SEnwUmxZWyB+aIuj /q/xcKbQMyYqTU/tiFxZ3QEUimS93eg7X94yhAN7IgZlzqRRKqpFRbw+1 MRFtV5lwabWAJLbQtcTYgBZTgfhFJOc8Dx86Tqnq7uPNU4sXYzZcbnEq+ jvpdm8Qv4Yrf0N3LdchKblA1QOnjR4QlZX3d8rfMjfVYWBbAhei6OQdVE P+YXY98mGXcGGrdH21voBBiJsz3CLh44kbJzgf62T4sW/95mW9VuQD0Dr +E7j2xsHXmVSss94GqT61H4BSMCSPZP2MB09QiutEPou3EFOpCnac77w6 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10371"; a="340850045" X-IronPort-AV: E=Sophos;i="5.91,285,1647327600"; d="scan'208";a="340850045" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jun 2022 21:57:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,285,1647327600"; d="scan'208";a="670347920" Received: from dpdk-yaqi.sh.intel.com ([10.67.118.178]) by FMSMGA003.fm.intel.com with ESMTP; 07 Jun 2022 21:57:16 -0700 From: Yaqi Tang To: dts@dpdk.org Cc: xueqin.lin@intel.com, Yaqi Tang Subject: [dts][PATCH V1 1/2] tests/shutdown_api: modify script case name Date: Wed, 8 Jun 2022 04:57:11 +0000 Message-Id: <20220608045712.350878-2-yaqi.tang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220608045712.350878-1-yaqi.tang@intel.com> References: <20220608045712.350878-1-yaqi.tang@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 Test script case name is nonstandard, so modify script case name. Signed-off-by: Yaqi Tang --- tests/TestSuite_shutdown_api.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/TestSuite_shutdown_api.py b/tests/TestSuite_shutdown_api.py index a0fdcc1d..245c49da 100644 --- a/tests/TestSuite_shutdown_api.py +++ b/tests/TestSuite_shutdown_api.py @@ -356,7 +356,7 @@ class TestShutdownApi(TestCase): self.dut.send_expect("start", "testpmd> ") self.check_forwarding() - def test_set_promiscuousmode(self): + def test_set_promiscuous_mode(self): """ Promiscuous mode. """ @@ -397,7 +397,7 @@ class TestShutdownApi(TestCase): self.dut.send_expect("start", "testpmd> ") self.dut.send_expect("quit", "# ", 30) - def test_set_allmulticast(self): + def test_set_allmulticast_mode(self): """ Allmulticast mode. """ @@ -676,7 +676,7 @@ class TestShutdownApi(TestCase): "Wrong VF link type reported by the self.tester.", ) - def test_enable_disablejumbo(self): + def test_enable_disable_jumbo(self): """ Enable/Disable Jumbo Frames. """ @@ -747,7 +747,7 @@ class TestShutdownApi(TestCase): self.check_forwarding(pktSize=jumbo_size) self.check_forwarding(pktSize=jumbo_size + 1, received=False) - def test_enable_disablerss(self): + def test_enable_disable_rss(self): """ Enable/Disable RSS. """ @@ -765,7 +765,7 @@ class TestShutdownApi(TestCase): self.dut.send_expect("start", "testpmd> ") self.check_forwarding() - def test_change_numberrxdtxd(self): + def test_change_number_rxd_txd(self): """ Change numbers of rxd and txd. """ @@ -787,7 +787,7 @@ class TestShutdownApi(TestCase): self.dut.send_expect("start", "testpmd> ") self.check_forwarding() - def test_change_numberrxdtxdaftercycle(self): + def test_change_number_rxd_txd_after_cycle(self): """ Change the Number of rxd/txd. """