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 3F36FA0613 for ; Fri, 30 Aug 2019 04:36:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 362281E54D; Fri, 30 Aug 2019 04:36:06 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 297F21E54B for ; Fri, 30 Aug 2019 04:36:04 +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 fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Aug 2019 19:36:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,445,1559545200"; d="scan'208";a="197933432" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 29 Aug 2019 19:36:03 -0700 From: "zhu,shuai" To: dts@dpdk.org Cc: "zhu,shuai" Date: Fri, 30 Aug 2019 10:40:21 +0800 Message-Id: <1567132825-101386-4-git-send-email-shuaix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1567132825-101386-1-git-send-email-shuaix.zhu@intel.com> References: <1567132825-101386-1-git-send-email-shuaix.zhu@intel.com> Subject: [dts] [PATCH V2 4/8] tests/vhost_event_idx_interrupt: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" Please ignore the V1 version. Change the relative path to an absolute path. Signed-off-by: zhu,shuai --- tests/TestSuite_vhost_event_idx_interrupt.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_vhost_event_idx_interrupt.py b/tests/TestSuite_vhost_event_idx_interrupt.py index 2d0bc38..88822c0 100644 --- a/tests/TestSuite_vhost_event_idx_interrupt.py +++ b/tests/TestSuite_vhost_event_idx_interrupt.py @@ -52,6 +52,7 @@ class TestVhostEventIdxInterrupt(TestCase): self.queues = 1 self.cores_num = len([n for n in self.dut.cores if int(n['socket']) == 0]) self.prepare_l3fwd_power() + self.base_dir = self.dut.base_dir.replace('~', '/root') def set_up(self): """ @@ -61,7 +62,7 @@ class TestVhostEventIdxInterrupt(TestCase): self.verify_info = [] self.dut.send_expect("killall -s INT l3fwd-power", "#") 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-l3fwd") self.vm_dut = [] self.vm = [] @@ -101,7 +102,7 @@ class TestVhostEventIdxInterrupt(TestCase): # config the vdev info, if have 2 vms, it shoule have 2 vdev info vdev_info = "" for i in range(self.vm_num): - vdev_info += "--vdev 'net_vhost%d,iface=vhost-net%d,queues=%d,client=1' " % (i, i, self.queues) + vdev_info += "--vdev 'net_vhost%d,iface=%s/vhost-net%d,queues=%d,client=1' " % (i, self.base_dir, i, self.queues) port_info = "0x1" if self.vm_num == 1 else "0x3" @@ -167,7 +168,7 @@ class TestVhostEventIdxInterrupt(TestCase): vm_info.load_config() 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'] = "00:11:22:33:44:5%d" % i vm_params['opt_server'] = 'server' if self.queues > 1: -- 2.17.2