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 91AECA2E1B for ; Wed, 4 Sep 2019 08:51:24 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 864F11C067; Wed, 4 Sep 2019 08:51:24 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 4814F1C067 for ; Wed, 4 Sep 2019 08:51:23 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Sep 2019 23:51:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,465,1559545200"; d="scan'208";a="266555791" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by orsmga001.jf.intel.com with ESMTP; 03 Sep 2019 23:51:22 -0700 From: zhuwenhui To: dts@dpdk.org Cc: zhuwenhui Date: Wed, 4 Sep 2019 14:55:44 +0800 Message-Id: <1567580144-140807-8-git-send-email-wenhuix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1567580144-140807-1-git-send-email-wenhuix.zhu@intel.com> References: <1567580144-140807-1-git-send-email-wenhuix.zhu@intel.com> Subject: [dts] [PATCH V1 8/8] tests/pvp_qemu_multi_paths_port_restart: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 --- tests/TestSuite_pvp_qemu_multi_paths_port_restart.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/TestSuite_pvp_qemu_multi_paths_port_restart.py b/tests/TestSuite_pvp_qemu_multi_paths_port_restart.py index 429628c..0095ce2 100644 --- a/tests/TestSuite_pvp_qemu_multi_paths_port_restart.py +++ b/tests/TestSuite_pvp_qemu_multi_paths_port_restart.py @@ -72,6 +72,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.base_dir = self.dut.base_dir.replace('~', '/root') def set_up(self): """ @@ -93,14 +94,14 @@ class TestPVPQemuMultiPathPortRestart(TestCase): start testpmd on vhost """ self.dut.send_expect("killall -s INT testpmd", "#") - self.dut.send_expect("rm -rf ./vhost-net*", "#") + self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir, "#") 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' " + \ + " --vdev 'net_vhost0,iface=%s/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) + self.dut.get_memory_channels(), self.core_mask, self.base_dir) 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) @@ -133,7 +134,7 @@ class TestPVPQemuMultiPathPortRestart(TestCase): self.vm = VM(self.dut, 'vm0', 'vhost_sample') vm_params = {} vm_params['driver'] = 'vhost-user' - vm_params['opt_path'] = './vhost-net' + vm_params['opt_path'] = '%s/vhost-net' % self.base_dir vm_params['opt_mac'] = self.virtio1_mac if modem == 1 and mergeable == 0: vm_params['opt_settings'] = "disable-modern=false,mrg_rxbuf=off,rx_queue_size=1024,tx_queue_size=1024" -- 2.17.2