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 B130AA0C41; Fri, 16 Apr 2021 09:08:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 78B2E141B42; Fri, 16 Apr 2021 09:08:50 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 1933F141B3F for ; Fri, 16 Apr 2021 09:08:47 +0200 (CEST) IronPort-SDR: KKHv+EP6saIQZmzPgLOVYHvOZ+xMoObQA2g6LntZEjD3MWjm6dhsrLAC1I5yCTPuddBF8ysTyQ +46SxQHe9X1g== X-IronPort-AV: E=McAfee;i="6200,9189,9955"; a="174494342" X-IronPort-AV: E=Sophos;i="5.82,226,1613462400"; d="scan'208";a="174494342" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Apr 2021 00:08:47 -0700 IronPort-SDR: 9D0O06rcHzoQWhYAPteJql2I8eP0g8DiBBI4iBYRQkh3ll7O64EYrFpPwNinvo0OedqzV8esIT K6Eb/Wz0QQFA== X-IronPort-AV: E=Sophos;i="5.82,226,1613462400"; d="scan'208";a="425486089" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Apr 2021 00:08:45 -0700 From: Ling Wei To: dts@dpdk.org Cc: Ling Wei Date: Fri, 16 Apr 2021 15:06:38 +0800 Message-Id: <20210416070638.1484058-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: 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: Ling Wei --- tests/TestSuite_vm2vm_virtio_net_perf.py | 34 +++++++++++------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/tests/TestSuite_vm2vm_virtio_net_perf.py b/tests/TestSuite_vm2vm_virtio_net_perf.py index d1e94093..51b94199 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,9 +295,8 @@ class TestVM2VMVirtioNetPerf(TestCase): return iperfdata def stop_all_apps(self): - for i in range(len(self.vm)): - self.vm[i].stop() - self.pmd_vhost.quit() + self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#") + self.dut.send_expect("killall -s INT qemu-system-x86_64", "#") def offload_capbility_check(self, vm_client): """ @@ -338,20 +341,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 +486,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 +591,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): """ -- 2.25.1