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 1F37BA00C5; Thu, 30 Apr 2020 08:47:41 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 13EA01D8D6; Thu, 30 Apr 2020 08:47:41 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 9EFFE1D738 for ; Thu, 30 Apr 2020 08:47:39 +0200 (CEST) IronPort-SDR: jxMZ6P7HDtc+FvwuSm+3p/37cO19JrBx6LKCEJ6V1nHi0adEnQUnOYPv5G4iM12mxwPnWRN4uh /lPR3Jsqn6gQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Apr 2020 23:47:39 -0700 IronPort-SDR: ZOUckd17eIKQxhtxdm/yQwOiPcatUzxjOLZxjlpoWntW3Jvpj4LnPOagNV0Qbn/uUcIkNAAL94 oCQuvwVlh1sw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,334,1583222400"; d="scan'208";a="276417866" Received: from unknown (HELO xqm-virtio_tester.sh.intel.com) ([10.240.183.52]) by orsmga002.jf.intel.com with ESMTP; 29 Apr 2020 23:47:37 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Thu, 30 Apr 2020 14:40:56 +0800 Message-Id: <1588228857-411958-3-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1588228857-411958-1-git-send-email-qimaix.xiao@intel.com> References: <1588228857-411958-1-git-send-email-qimaix.xiao@intel.com> Subject: [dts] [PATCH V1 2/3]dpdk_gso_lib: bind port back after testsuite end 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" Signed-off-by: Xiao Qimai --- tests/TestSuite_dpdk_gso_lib.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/TestSuite_dpdk_gso_lib.py b/tests/TestSuite_dpdk_gso_lib.py index 72b1372..433869a 100644 --- a/tests/TestSuite_dpdk_gso_lib.py +++ b/tests/TestSuite_dpdk_gso_lib.py @@ -534,6 +534,9 @@ class TestDPDKGsoLib(TestCase): """ Run after each test suite. """ + for i in self.dut_ports: + port = self.dut.ports_info[i]['port'] + port.bind_driver(self.def_driver) self.unprepare_dpdk() self.dut.send_expect("ip netns del ns1", "#", 30) self.dut.send_expect( -- 1.8.3.1