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 0FE07A0613 for ; Thu, 29 Aug 2019 09:12:51 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 070E01D15E; Thu, 29 Aug 2019 09:12:51 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 8B02A1D147 for ; Thu, 29 Aug 2019 09:12:49 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Aug 2019 00:12:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,442,1559545200"; d="scan'208";a="210440169" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 29 Aug 2019 00:12:48 -0700 From: "zhu,shuai" To: dts@dpdk.org Cc: yinan.wang@intel.com, "zhu,shuai" Date: Thu, 29 Aug 2019 15:16:49 +0800 Message-Id: <1567063015-92659-9-git-send-email-shuaix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1567063015-92659-1-git-send-email-shuaix.zhu@intel.com> References: <1567063015-92659-1-git-send-email-shuaix.zhu@intel.com> Subject: [dts] [PATCH V1 09/15] tests/vm2vm_virtio_net_perf:Change the relative path to an 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" Change the relative path to an absolute path. Signed-off-by: zhu,shuai --- tests/TestSuite_vm2vm_virtio_net_perf.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/TestSuite_vm2vm_virtio_net_perf.py b/tests/TestSuite_vm2vm_virtio_net_perf.py index 9c0f85c..0a6456a 100644 --- a/tests/TestSuite_vm2vm_virtio_net_perf.py +++ b/tests/TestSuite_vm2vm_virtio_net_perf.py @@ -59,6 +59,7 @@ class TestVM2VMVirtioNetPerf(TestCase): self.vritio_mac1 = "52:54:00:00:00:01" self.vritio_mac2 = "52:54:00:00:00:02" self.vm_dut = None + self.base_dir = self.dut.base_dir.replace('~', '/root') def set_up(self): """ @@ -68,7 +69,7 @@ class TestVM2VMVirtioNetPerf(TestCase): self.result_table_create(self.table_header) self.dut.send_expect("killall -s INT testpmd", "#") self.dut.send_expect("killall -s INT qemu-system-x86_64", "#") - self.dut.send_expect("rm -rf ./vhost-net*", "#") + self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir, "#") self.vhost = self.dut.new_session(suite="vhost") self.vm_dut = [] self.vm = [] @@ -83,12 +84,12 @@ class TestVM2VMVirtioNetPerf(TestCase): zerocopy_arg = "" self.command_line = self.dut.target + "/app/testpmd -c %s -n %d " + \ "--socket-mem 2048,2048 --legacy-mem --no-pci --file-prefix=vhost " + \ - "--vdev 'net_vhost0,iface=vhost-net0,queues=1%s' " + \ - "--vdev 'net_vhost1,iface=vhost-net1,queues=1%s' " + \ + "--vdev 'net_vhost0,iface=%s/vhost-net0,queues=1%s' " + \ + "--vdev 'net_vhost1,iface=%s/vhost-net1,queues=1%s' " + \ "-- -i --nb-cores=1 --txd=1024 --rxd=1024" self.command_line = self.command_line % ( - self.coremask, self.memory_channel, + self.coremask, self.memory_channel, self.base_dir, self.base_dir, zerocopy_arg, zerocopy_arg) self.vhost.send_expect(self.command_line, "testpmd> ", 30) self.vhost.send_expect("start", "testpmd> ", 30) @@ -110,7 +111,7 @@ class TestVM2VMVirtioNetPerf(TestCase): vm_info = VM(self.dut, 'vm%d' % i, 'vhost_sample') vm_params = {} vm_params['driver'] = 'vhost-user' - vm_params['opt_path'] = './vhost-net%d' % i + vm_params['opt_path'] = self.base_dir + '/vhost-net%d' % i vm_params['opt_mac'] = "52:54:00:00:00:0%d" % (i+1) vm_params['opt_settings'] = setting_args vm_info.set_vm_device(**vm_params) -- 2.17.2