From patchwork Wed Jun 8 04:52:54 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yaqi Tang X-Patchwork-Id: 112520 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 D89FEA0548; Wed, 8 Jun 2022 06:53:00 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D333F41614; Wed, 8 Jun 2022 06:53:00 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 4BCE94021D for ; Wed, 8 Jun 2022 06:52:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1654663979; x=1686199979; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=TSMdTaxaLmI1hqeqtH8fdgVSNHd2o42lqYLFsSmsgRw=; b=X9BZZzObkFQAFAHY2IF3fDqh6qlHFkcnj14w292B31rmzu6DOBnSbnAo eGFB/Y0NApULDT2aUC6YFN/NeKVIyXX5K2/ub1itDXX79PX8HTih5vYNx sL4mDSH5j6HwUKacUojcA8NMvglXXnooH1pycaIty75mHpmHJtXIu1YkT oW/Rfh7ShGIhIag6V7z8J/emde5x/xkFcx1U4gtF8hv0BuL03fCczfJ4e +jLbJDzmbJaaIAi4PdXYgLF4t/UtWDniD5GfV1lsLPGwkujU21vxW3wAY UHJH+0poEvl7wedJoId/Y5oWM12NF59UKEGMXAEr6P3kWljzVJJUEw27L Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10371"; a="277576504" X-IronPort-AV: E=Sophos;i="5.91,285,1647327600"; d="scan'208";a="277576504" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jun 2022 21:52:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,285,1647327600"; d="scan'208";a="670346811" Received: from dpdk-yaqi.sh.intel.com ([10.67.118.178]) by FMSMGA003.fm.intel.com with ESMTP; 07 Jun 2022 21:52:56 -0700 From: Yaqi Tang To: dts@dpdk.org Cc: Yaqi Tang Subject: [dts][PATCH V1] tests/runtime_vf_queue_number_kernel: modify test script case name Date: Wed, 8 Jun 2022 04:52:54 +0000 Message-Id: <20220608045254.350739-1-yaqi.tang@intel.com> X-Mailer: git-send-email 2.25.1 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 The test script case name is not match the test plan, so modify test script case name. Signed-off-by: Yaqi Tang --- tests/TestSuite_runtime_vf_queue_number_kernel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_runtime_vf_queue_number_kernel.py b/tests/TestSuite_runtime_vf_queue_number_kernel.py index ba83717a..68639dfa 100644 --- a/tests/TestSuite_runtime_vf_queue_number_kernel.py +++ b/tests/TestSuite_runtime_vf_queue_number_kernel.py @@ -155,7 +155,7 @@ class TestRuntimeVfQueueNumberKernel(TestCase): self.vm0_testpmd.execute_cmd("quit", "# ") time.sleep(3) - def test_set_valid_vf_queue_num(self): + def test_set_valid_vf_queue_num_command_line(self): """ set valid VF queue number in testpmd command-line options """ @@ -237,7 +237,7 @@ class TestRuntimeVfQueueNumberKernel(TestCase): "queue number is too big", ) - def test_set_valid_vf_queue_num_with_function(self): + def test_set_valid_vf_queue_num_with_testpmd_command(self): random_queue = random.randint(2, 15) queue_nums = [1, random_queue, self.max_queue] self.vm0_testpmd = PmdOutput(self.vm_dut_0)