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 1968EA0613 for ; Thu, 29 Aug 2019 09:59:28 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 02C9C1D164; Thu, 29 Aug 2019 09:59:28 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 793E21D151 for ; Thu, 29 Aug 2019 09:59:26 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Aug 2019 00:59:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,442,1559545200"; d="scan'208";a="197747841" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 29 Aug 2019 00:59:25 -0700 From: zhuwenhui To: dts@dpdk.org Cc: zhuwenhui Date: Thu, 29 Aug 2019 16:03:41 +0800 Message-Id: <1567065836-95440-2-git-send-email-wenhuix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1567065836-95440-1-git-send-email-wenhuix.zhu@intel.com> References: <1567065836-95440-1-git-send-email-wenhuix.zhu@intel.com> Subject: [dts] [PATCH V1 02/17] tests/pvp_multi_paths_virtio_single_core_performance:vhost-net changed to absolute path 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" Vhost-net changed to absolute path Signed-off-by: zhuwenhui --- ..._pvp_multi_paths_virtio_single_core_performance.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py b/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py index 6cd3a6d..23602b1 100644 --- a/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py +++ b/tests/TestSuite_pvp_multi_paths_virtio_single_core_performance.py @@ -69,6 +69,7 @@ class TestPVPMultiPathVirtioPerformance(TestCase): self.tester.send_expect('mkdir -p %s' % self.out_path, '# ') # create an instance to set stream field setting self.pktgen_helper = PacketGeneratorHelper() + self.base_dir = self.dut.base_dir.replace('~', '/root') def set_up(self): """ @@ -124,15 +125,15 @@ class TestPVPMultiPathVirtioPerformance(TestCase): start testpmd on vhost """ self.dut.send_expect("rm -rf ./vhost.out", "#") - self.dut.send_expect("rm -rf ./vhost-net*", "#") + self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir, "#") self.dut.send_expect("killall -s INT testpmd", "#") self.dut.send_expect("killall -s INT qemu-system-x86_64", "#") command_line_client = "./%s/app/testpmd -n %d -c %s --socket-mem " + \ " %s --legacy-mem -w %s --file-prefix=vhost --vdev " + \ - "'net_vhost0,iface=vhost-net,queues=1,client=0' -- -i --nb-cores=2 --txd=1024 --rxd=1024" + "'net_vhost0,iface=%s/vhost-net,queues=1,client=0' -- -i --nb-cores=2 --txd=1024 --rxd=1024" command_line_client = command_line_client % (self.target, self.dut.get_memory_channels(), self.core_mask_host, - self.socket_mem, self.dut.ports_info[self.dut_ports[0]]['pci']) + self.socket_mem, self.dut.ports_info[self.dut_ports[0]]['pci'], self.base_dir) self.vhost.send_expect(command_line_client, "testpmd> ", 120) self.vhost.send_expect("set fwd io", "testpmd> ", 120) self.vhost.send_expect("start", "testpmd> ", 120) @@ -143,11 +144,11 @@ class TestPVPMultiPathVirtioPerformance(TestCase): """ command_line_user = "./%s/app/testpmd -n %d -c %s " + \ " --socket-mem %s --legacy-mem --no-pci --file-prefix=virtio " + \ - "--vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,%s " + \ + "--vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=%s/vhost-net,%s " + \ "-- -i %s --rss-ip --nb-cores=1 --txd=1024 --rxd=1024" command_line_user = command_line_user % (self.target, self.dut.get_memory_channels(), self.core_mask_user, - self.socket_mem, args["version"], args["path"]) + self.socket_mem, self.base_dir, args["version"], args["path"]) self.vhost_user.send_expect(command_line_user, "testpmd> ", 120) self.vhost_user.send_expect("set fwd mac", "testpmd> ", 120) self.vhost_user.send_expect("start", "testpmd> ", 120) -- 2.17.2