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 8DC8BA0613 for ; Thu, 29 Aug 2019 09:12:27 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4D16E1D14D; Thu, 29 Aug 2019 09:12:27 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 4D67F1D147 for ; Thu, 29 Aug 2019 09:12:24 +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 fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Aug 2019 00:12:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,442,1559545200"; d="scan'208";a="210440070" 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:23 -0700 From: "zhu,shuai" To: dts@dpdk.org Cc: yinan.wang@intel.com, "zhu,shuai" Date: Thu, 29 Aug 2019 15:16:41 +0800 Message-Id: <1567063015-92659-1-git-send-email-shuaix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1 01/15] tests/virtio_user_as_exceptional_path: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_virtio_user_as_exceptional_path.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_virtio_user_as_exceptional_path.py b/tests/TestSuite_virtio_user_as_exceptional_path.py index 0330f7e..1b1609e 100644 --- a/tests/TestSuite_virtio_user_as_exceptional_path.py +++ b/tests/TestSuite_virtio_user_as_exceptional_path.py @@ -79,13 +79,14 @@ class TestVirtioUserAsExceptionalPath(TestCase): self.socket_mem = '1024,1024' self.prepare_dpdk() + self.base_dir = self.dut.base_dir.replace('~', '/root') def set_up(self): # # Run before each test case. # # Clean the execution ENV - 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", "#") self.dut.send_expect("modprobe vhost-net", "#") @@ -222,7 +223,7 @@ class TestVirtioUserAsExceptionalPath(TestCase): # 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, "#") time.sleep(2) self.dut.send_expect( "./usertools/dpdk-devbind.py -u %s" % (self.peer_pci), '# ', 30) -- 2.17.2