From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 38322A055E; Wed, 26 Feb 2020 10:13:44 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2C4E31BFD3; Wed, 26 Feb 2020 10:13:44 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 56EE61BFB3 for ; Wed, 26 Feb 2020 10:13:42 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Feb 2020 01:13:33 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,487,1574150400"; d="scan'208";a="350345844" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 26 Feb 2020 01:13:32 -0800 From: "zhu,shuai" To: dts@dpdk.org Cc: yinan.wang@intel.com, "zhu,shuai" Date: Wed, 26 Feb 2020 17:18:52 +0800 Message-Id: <1582708737-36706-3-git-send-email-shuaix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1582708737-36706-1-git-send-email-shuaix.zhu@intel.com> References: <1582708737-36706-1-git-send-email-shuaix.zhu@intel.com> Subject: [dts] [PATCH V1] tests/pvp_qemu_multi_paths_port_restart:add create_eal_parameters function. X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 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" Signed-off-by: zhu,shuai --- .../TestSuite_pvp_qemu_multi_paths_port_restart.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/tests/TestSuite_pvp_qemu_multi_paths_port_restart.py b/tests/TestSuite_pvp_qemu_multi_paths_port_restart.py index ea2e1cd..f10e2a6 100644 --- a/tests/TestSuite_pvp_qemu_multi_paths_port_restart.py +++ b/tests/TestSuite_pvp_qemu_multi_paths_port_restart.py @@ -61,7 +61,6 @@ class TestPVPQemuMultiPathPortRestart(TestCase): self.ports_socket = self.dut.get_numa_id(self.dut_ports[0]) self.core_list = self.dut.get_core_list( self.core_config, socket=self.ports_socket) - self.core_mask = utils.create_mask(self.core_list) self.dst_mac = self.dut.get_mac_address(self.dut_ports[0]) self.vm_dut = None self.virtio1_mac = "52:54:00:00:00:01" @@ -72,6 +71,7 @@ class TestPVPQemuMultiPathPortRestart(TestCase): self.tester.send_expect('mkdir -p %s' % self.out_path, '# ') # create an instance to set stream field setting self.pktgen_helper = PacketGeneratorHelper() + self.pci_info = self.dut.ports_info[0]['pci'] def set_up(self): """ @@ -94,13 +94,11 @@ class TestPVPQemuMultiPathPortRestart(TestCase): """ self.dut.send_expect("killall -s INT testpmd", "#") self.dut.send_expect("rm -rf ./vhost-net*", "#") - command_client = self.dut.target + "/app/testpmd " + \ - " -n %d -c %s --socket-mem 1024,1024 " + \ - " --legacy-mem --file-prefix=vhost " + \ - " --vdev 'net_vhost0,iface=vhost-net,queues=1' " + \ - " -- -i --nb-cores=1 --txd=1024 --rxd=1024" - command_line_client = command_client % ( - self.dut.get_memory_channels(), self.core_mask) + testcmd = self.dut.target + "/app/testpmd " + vdev = [r"--vdev 'net_vhost0,iface=vhost-net,queues=1'"] + eal_params = self.dut.create_eal_parameters(cores=self.core_list, prefix='vhost', ports=[self.pci_info], vdevs=vdev) + para = " -- -i --nb-cores=1 --txd=1024 --rxd=1024" + command_line_client = testcmd + eal_params + para self.vhost.send_expect(command_line_client, "testpmd> ", 120) self.vhost.send_expect("set fwd mac", "testpmd> ", 120) self.vhost.send_expect("start", "testpmd> ", 120) -- 2.17.2