From patchwork Tue Apr 20 05:04:30 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 91813 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 E97CAA0547; Tue, 20 Apr 2021 07:06:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B7E2F4159C; Tue, 20 Apr 2021 07:06:21 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 6CB8641598 for ; Tue, 20 Apr 2021 07:06:20 +0200 (CEST) IronPort-SDR: YFZHFiE8x2zvuWD7Qd/YVKcw+H/DBOrj6B1ABz8u8gMGS7mE4ZbbpCL9T82xY+M/VWrXBFPoEC HbYwjH1TLb0A== X-IronPort-AV: E=McAfee;i="6200,9189,9959"; a="256754401" X-IronPort-AV: E=Sophos;i="5.82,236,1613462400"; d="scan'208";a="256754401" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Apr 2021 22:06:18 -0700 IronPort-SDR: HyvKf1EtBRdIBm3NmDwKRW8i8I+41dA6NdyHUOeXD3gr9GVW7pED6/Q/FaiUOmtU6voTCU8u6B 8kST96I+VtrA== X-IronPort-AV: E=Sophos;i="5.82,236,1613462400"; d="scan'208";a="426777238" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Apr 2021 22:06:17 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Date: Tue, 20 Apr 2021 13:04:30 +0800 Message-Id: <20210420050430.32543-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [dts] [PATCH V1] tests/vm2vm_virtio_net_perf: fix script issue 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" 1.Fix testcase 8 iperf test parameter wrong issue. 2.Use 'killall qemu-system-x86_64' command to kill qemu to avoid when qemu exception can't quit issue. Signed-off-by: Wei Ling --- tests/TestSuite_vm2vm_virtio_net_perf.py | 36 ++++++++++++------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tests/TestSuite_vm2vm_virtio_net_perf.py b/tests/TestSuite_vm2vm_virtio_net_perf.py index d1e94093..34ae0fbb 100644 --- a/tests/TestSuite_vm2vm_virtio_net_perf.py +++ b/tests/TestSuite_vm2vm_virtio_net_perf.py @@ -73,12 +73,16 @@ class TestVM2VMVirtioNetPerf(TestCase): self.device_str = None self.checked_vm = False self.dut.restore_interfaces() + self.path=self.dut.apps_name['test-pmd'] + self.testpmd_name=self.path.split("/")[-1] def set_up(self): """ run before each test case. """ self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir, "#") + self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#") + self.dut.send_expect("killall qemu-system-x86_64", "#") self.vm_dut = [] self.vm = [] @@ -291,8 +295,11 @@ class TestVM2VMVirtioNetPerf(TestCase): return iperfdata def stop_all_apps(self): - for i in range(len(self.vm)): - self.vm[i].stop() + try: + for i in range(len(self.vm)): + self.vm[i].stop() + except: + self.dut.send_expect("killall qemu-system-x86_64", "#") self.pmd_vhost.quit() def offload_capbility_check(self, vm_client): @@ -338,20 +345,13 @@ class TestVM2VMVirtioNetPerf(TestCase): self.verify(md5_send == md5_revd, 'the received file is different with send file') def bind_nic_driver(self, ports, driver=""): - if driver == "igb_uio": - for port in ports: - netdev = self.dut.ports_info[port]['port'] - driver = netdev.get_nic_driver() - if driver != 'igb_uio': - netdev.bind_driver(driver='igb_uio') - else: - for port in ports: - netdev = self.dut.ports_info[port]['port'] - driver_now = netdev.get_nic_driver() - if driver == "": - driver = netdev.default_driver - if driver != driver_now: - netdev.bind_driver(driver=driver) + for port in ports: + netdev = self.dut.ports_info[port]['port'] + driver_now = netdev.get_nic_driver() + if driver == "": + driver = netdev.default_driver + if driver != driver_now: + netdev.bind_driver(driver=driver) def test_vm2vm_split_ring_iperf_with_tso(self): """ @@ -490,7 +490,7 @@ class TestVM2VMVirtioNetPerf(TestCase): self.vm_args = "disable-modern=false,mrg_rxbuf=on,csum=on,guest_csum=on,host_tso4=on,guest_tso4=on,guest_ecn=on,packed=on" self.prepare_test_env(cbdma=True, no_pci=False, client_mode=False, enable_queues=1, nb_cores=2, server_mode=False, opt_queue=None, combined=False, rxq_txq=None) - self.start_iperf_and_verify_vhost_xstats_info(iperf_mode='ufo') + self.start_iperf_and_verify_vhost_xstats_info(iperf_mode='tso') def test_vm2vm_packed_ring_iperf_with_ufo(self): """ @@ -595,9 +595,9 @@ class TestVM2VMVirtioNetPerf(TestCase): """ run after each test case. """ + self.bind_cbdma_device_to_kernel() self.stop_all_apps() self.dut.kill_all() - self.bind_cbdma_device_to_kernel() def tear_down_all(self): """