From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 67486A034F; Mon, 29 Mar 2021 08:03:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 04E5A40151; Mon, 29 Mar 2021 08:03:21 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id F384B40042 for ; Mon, 29 Mar 2021 08:03:18 +0200 (CEST) IronPort-SDR: 4G4Fecr9G468Q2DdLYJcjRackWCg43vlEJ2eMQhINk7GEQM5aYQxNuYZcK0Jq4aTG37Awby6P7 DkfaSZkZa9mw== X-IronPort-AV: E=McAfee;i="6000,8403,9937"; a="252831680" X-IronPort-AV: E=Sophos;i="5.81,285,1610438400"; d="scan'208";a="252831680" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2021 23:03:17 -0700 IronPort-SDR: A7bx/AHW9GlYW6hBn9PuT1SWnSvL14cs6fqbfgJCR2GdFtysSeAqVJx/yWc4WH9ehFu/abMRnR Ii1sUFwWkSuQ== X-IronPort-AV: E=Sophos;i="5.81,285,1610438400"; d="scan'208";a="454415891" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2021 23:03:16 -0700 From: Ling Wei To: dts@dpdk.org Cc: Ling Wei Date: Mon, 29 Mar 2021 14:02:01 +0800 Message-Id: <20210329060201.44030-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V1] tests/vm2vm_virtio_net_perf: modify test case 5 scp 1MB size file sync with testplan 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 Sender: "dts" Modify test case 5 scp 1MB size file sync with testplan. Signed-off-by: Ling Wei --- tests/TestSuite_vm2vm_virtio_net_perf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_vm2vm_virtio_net_perf.py b/tests/TestSuite_vm2vm_virtio_net_perf.py index 83035b07..b0733bc3 100644 --- a/tests/TestSuite_vm2vm_virtio_net_perf.py +++ b/tests/TestSuite_vm2vm_virtio_net_perf.py @@ -425,14 +425,14 @@ class TestVM2VMVirtioNetPerf(TestCase): self.logger.info("Launch vhost-testpmd with CBDMA and used 8 queue") self.prepare_test_env(path_mode=5, cbdma=True, no_pci=False, client_mode=True, enable_queues=8, nb_cores=4, server_mode=True, opt_queue=8, combined=True, used_queues=8) - self.check_scp_file_valid_between_vms(file_size=1) + self.check_scp_file_valid_between_vms(file_size=1024) iperf_data_cbdma_enable_8_queue = self.start_iperf_and_verify_vhost_xstats_info(iperf_mode='tso') ipef_result.append(['Enable', 'mergeable path', 8, iperf_data_cbdma_enable_8_queue]) self.logger.info("Re-launch without CBDMA and used 8 queue") self.vhost.send_expect("quit", "# ", 30) self.start_vhost_testpmd(cbdma=False, no_pci=False, client_mode=True, enable_queues=8, nb_cores=4, used_queues=8) - self.check_scp_file_valid_between_vms(file_size=1) + self.check_scp_file_valid_between_vms(file_size=1024) iperf_data_cbdma_disable_8_queue = self.start_iperf_and_verify_vhost_xstats_info(iperf_mode='tso') ipef_result.append(['Disable','mergeable path', 8, iperf_data_cbdma_disable_8_queue]) @@ -440,7 +440,7 @@ class TestVM2VMVirtioNetPerf(TestCase): self.vhost.send_expect("quit", "# ", 30) self.start_vhost_testpmd(cbdma=False, no_pci=False, client_mode=True, enable_queues=8, nb_cores=4, used_queues=1) self.config_vm_env(combined=True, used_queues=1) - self.check_scp_file_valid_between_vms(file_size=1) + self.check_scp_file_valid_between_vms(file_size=1024) iperf_data_cbdma_disable_1_queue = self.start_iperf_and_verify_vhost_xstats_info(iperf_mode='tso') ipef_result.append(['Disable', 'mergeable path', 1, iperf_data_cbdma_disable_1_queue]) -- 2.25.1