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 AE46BA0613 for ; Mon, 23 Sep 2019 08:49:14 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0FAF11BEA0; Mon, 23 Sep 2019 08:49:12 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id D39B71B994 for ; Mon, 23 Sep 2019 08:49:07 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Sep 2019 23:49:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,539,1559545200"; d="scan'208";a="388384343" Received: from dpdk-moyufen06.sh.intel.com ([10.67.116.222]) by fmsmga005.fm.intel.com with ESMTP; 22 Sep 2019 23:49:06 -0700 From: yufengmx To: dts@dpdk.org, wenjiex.a.li@intel.com, zhaoyan.chen@intel.com, lijuan.tu@intel.com Cc: yufengmx Date: Mon, 23 Sep 2019 14:50:35 +0800 Message-Id: <20190923065040.8251-3-yufengx.mo@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190923065040.8251-1-yufengx.mo@intel.com> References: <20190923065040.8251-1-yufengx.mo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V2 2/7] framework/dut: fix logger quit issue 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" *. move dut logger close after session close for logger used by session. *. fix typo. Signed-off-by: yufengmx --- framework/dut.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/framework/dut.py b/framework/dut.py index 1779d3a..a394b34 100644 --- a/framework/dut.py +++ b/framework/dut.py @@ -208,7 +208,7 @@ class Dut(Crb): self.restore_interfaces() # rescan ports after interface up self.rescan_ports() - # load port infor from config file + # load port information from config file self.load_portconf() self.mount_procfs() # auto detect network topology @@ -933,8 +933,8 @@ class Dut(Crb): def load_portconf(self): """ - Load port configurations for ports_info. If manually configured infor - not same as auto scanned, still use infor in configuration file. + Load port configurations for ports_info. If manually configured info + not same as auto scanned, still use information in configuration file. """ for port in self.ports_info: pci_bus = port['pci'] @@ -1097,6 +1097,6 @@ class Dut(Crb): """ Recover all resource before crb exit """ - self.logger.logger_exit() self.enable_tester_ipv6() self.close() + self.logger.logger_exit() -- 2.21.0