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 17468A0613 for ; Thu, 29 Aug 2019 10:00:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0898F1D178; Thu, 29 Aug 2019 10:00:06 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id A682D1D151 for ; Thu, 29 Aug 2019 10:00:03 +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 fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Aug 2019 01:00:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,442,1559545200"; d="scan'208";a="197747994" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 29 Aug 2019 01:00:03 -0700 From: zhuwenhui To: dts@dpdk.org Cc: zhuwenhui Date: Thu, 29 Aug 2019 16:03:54 +0800 Message-Id: <1567065836-95440-15-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 15/17] tests/pvp_virtio_bonding: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_virtio_bonding.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_pvp_virtio_bonding.py b/tests/TestSuite_pvp_virtio_bonding.py index bcfbfd4..4fb94f2 100644 --- a/tests/TestSuite_pvp_virtio_bonding.py +++ b/tests/TestSuite_pvp_virtio_bonding.py @@ -69,6 +69,7 @@ class TestPVPVirtIOBonding(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): """ @@ -86,7 +87,7 @@ class TestPVPVirtIOBonding(TestCase): """ vdev_info = "" for i in range(self.queues): - vdev_info += "--vdev 'net_vhost%d,iface=vhost-net%d,client=1,queues=1' " % (i, i) + vdev_info += "--vdev 'net_vhost%d,iface=%s/vhost-net%d,client=1,queues=1' " % (i, self.base_dir, i) params = "--port-topology=chained --nb-cores=4 --txd=1024 --rxd=1024" eal_param = "--socket-mem 2048,2048 --legacy-mem --file-prefix=vhost %s " % vdev_info self.vhost_testpmd = PmdOutput(self.dut) @@ -195,7 +196,7 @@ class TestPVPVirtIOBonding(TestCase): for i in range(self.queues): vm_params['opt_server'] = 'server' vm_params['driver'] = 'vhost-user' - vm_params['opt_path'] = './vhost-net%d' % i + vm_params['opt_path'] = '%s/vhost-net%d' % (self.base_dir, i) vm_params['opt_mac'] = "%s%d" % (virtio_mac, i+1) self.vm.set_vm_device(**vm_params) self.set_vm_vcpu() -- 2.17.2