From patchwork Wed Dec 28 08:21:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 121436 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 9EF39A04FD; Wed, 28 Dec 2022 09:30:31 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6480C40FDF; Wed, 28 Dec 2022 09:30:31 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 60B4040141 for ; Wed, 28 Dec 2022 09:30:30 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1672216229; x=1703752229; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=pgbo6gBMa+P3uC5EoUxgYvuElAoib1kW0ZWHDdDMFts=; b=g1wDlSzBwIuAUotOlPrpXxf4x4U3xm1eNOVaGxJPn9eA7PrjnY9brxnT lCnwRZeYy6Dhu5fdcMQZJ1JRVK6ULoJGGko5wRhMPCP4UXotACoTXsYqc 08VZZdxUptF88Vume/REYOdZCrg5qWdLywjQ4qZ0I8KuJqynXl/CRYPIq LqukoogEVpiN/8JUG5J3WzycnerFtGWwzkR7JgYnDq7xg3k/HQS78qPbL nFW9XZouxRdfK61eIZK0mHHZPz+YZ/0Bc5OLSoHA1qL1mBk+OZ+lJDVG5 +IaYkTd1f6QhVeLGK+oSSOt2Tb/UQwqk1JHmQ/931jy5BZ1HvRGRCzz72 w==; X-IronPort-AV: E=McAfee;i="6500,9779,10573"; a="308588818" X-IronPort-AV: E=Sophos;i="5.96,280,1665471600"; d="scan'208";a="308588818" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Dec 2022 00:30:28 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10573"; a="760593434" X-IronPort-AV: E=Sophos;i="5.96,280,1665471600"; d="scan'208";a="760593434" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Dec 2022 00:30:27 -0800 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V1] tests/vm2vm_virtio_pmd: modify testcase name Date: Wed, 28 Dec 2022 16:21:00 +0800 Message-Id: <20221228082100.3621003-1-weix.ling@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 Modify testcase name to discriminate different virtio protocol version. Signed-off-by: Wei Ling --- tests/TestSuite_vm2vm_virtio_pmd.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/TestSuite_vm2vm_virtio_pmd.py b/tests/TestSuite_vm2vm_virtio_pmd.py index 5721e829..ddcf36c1 100644 --- a/tests/TestSuite_vm2vm_virtio_pmd.py +++ b/tests/TestSuite_vm2vm_virtio_pmd.py @@ -300,7 +300,7 @@ class TestVM2VMVirtioPMD(TestCase): self.dut.close_session(self.virtio_user0) self.virtio_user0 = None - def test_vm2vm_vhost_user_virtio095_pmd_with_vector_rx_path(self): + def test_vm2vm_vhost_user_virtio95_pmd_with_vector_rx_path(self): """ Test Case 1: VM2VM vhost-user/virtio0.95-pmd with vector_rx path """ @@ -321,7 +321,7 @@ class TestVM2VMVirtioPMD(TestCase): ) self.send_and_verify(mode="virtio 0.95 vector_rx", path=path_mode) - def test_vm2vm_vhost_user_virtio095_pmd_with_normal_path(self): + def test_vm2vm_vhost_user_virtio95_pmd_with_normal_path(self): """ Test Case 2: VM2VM vhost-user/virtio0.95-pmd with normal path """ @@ -355,7 +355,7 @@ class TestVM2VMVirtioPMD(TestCase): ) self.send_and_verify(mode="virtio 1.0 vector_rx", path=path_mode) - def test_vhost_vm2vm_virito_10_pmd_with_normal_path(self): + def test_vm2vm_vhost_user_virito10_pmd_with_normal_path(self): """ Test Case 4: VM2VM vhost-user/virtio1.0-pmd with normal path """ @@ -368,7 +368,7 @@ class TestVM2VMVirtioPMD(TestCase): self.start_vm_testpmd(self.vm_dut[1], path_mode) self.send_and_verify(mode="virtio 1.0 normal path", path=path_mode) - def test_vm2vm_vhost_user_virtio095_pmd_with_mergeable_path_with_payload_valid_check( + def test_vm2vm_vhost_user_virtio95_pmd_with_mergeable_path_with_payload_valid_check( self, ): """ @@ -446,7 +446,7 @@ class TestVM2VMVirtioPMD(TestCase): # check the packet in vm0 self.check_packet_payload_valid(self.vm_dut[0]) - def test_vhost_vm2vm_virito_11_pmd_with_normal_path(self): + def test_vm2vm_vhost_user_virito11_pmd_with_normal_path(self): """ Test Case 8: VM2VM vhost-user/virtio1.1-pmd with normal path """