From patchwork Wed Jun 15 08:31:34 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yaqi Tang X-Patchwork-Id: 112756 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 CA44DA054A; Wed, 15 Jun 2022 10:31:53 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C2B6E4280E; Wed, 15 Jun 2022 10:31:53 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 0175C40220 for ; Wed, 15 Jun 2022 10:31:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655281912; x=1686817912; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3qxs6pCKKXnX857jfkPMjIciZsLtYLt/xnjcAk7PfuU=; b=fo+Ad3JVwx1I7sDxvdHFGioznMNjaxf0FwPe6DSaGgSC3PgzdttuNpF4 ZkOIlLMOVwj06ltlo51MHkAypUbYpVouIgWgsUY+ga3zVOihrngNuiMxD B2CMM6lhzg65TXEOTNIQW4pieL9LWI6elQU3EkLFHQCtYVi/grqBjJI0O a3s+KWXFqCnAURMbBtl9RpnLb4uKUi0ebYEt5RDz6xTj+9v19iUUUQOTu q6BeVKkInwxMCi8UoNs4vVny3pLSz9Qlyc7ALqAufKRbQwRf3AHts3S7T IqOs6WeFrfTuKMJ2tTvD7uZ91a8yMoevcwsI46GDwD1lCvTGQM3dRhhFv A==; X-IronPort-AV: E=McAfee;i="6400,9594,10378"; a="278928848" X-IronPort-AV: E=Sophos;i="5.91,300,1647327600"; d="scan'208";a="278928848" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2022 01:31:39 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,300,1647327600"; d="scan'208";a="640871244" Received: from dpdk-yaqi.sh.intel.com ([10.67.118.237]) by fmsmga008.fm.intel.com with ESMTP; 15 Jun 2022 01:31:38 -0700 From: Yaqi Tang To: dts@dpdk.org Cc: xueqin.lin@intel.com, Yaqi Tang Subject: [dts][PATCH V2 1/2] tests/shutdown_api: modify script case name Date: Wed, 15 Jun 2022 08:31:34 +0000 Message-Id: <20220615083135.55626-2-yaqi.tang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220615083135.55626-1-yaqi.tang@intel.com> References: <20220615083135.55626-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. """