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 753A1A0471 for ; Thu, 15 Aug 2019 03:40:47 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3B77A1BE93; Thu, 15 Aug 2019 03:40:47 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id DBF0B1BE90 for ; Thu, 15 Aug 2019 03:40:44 +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 orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Aug 2019 18:40:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,387,1559545200"; d="scan'208";a="194666817" Received: from unknown (HELO dpdk-wenjielx-KVM193.icx.intel.com) ([10.240.176.193]) by fmsmga001.fm.intel.com with ESMTP; 14 Aug 2019 18:40:42 -0700 From: Wenjie Li To: dts@dpdk.org Cc: Wenjie Li Date: Thu, 15 Aug 2019 10:35:39 +0000 Message-Id: <1565865339-28621-1-git-send-email-wenjiex.a.li@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/hotplug_mp: bind the ports to dpdk after test 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" Should bind the ports to dpdk in tear_down_all, since ports are bind to kernel driver in set_up_all; without this action, it will affect following tests. Signed-off-by: Wenjie Li --- tests/TestSuite_hotplug_mp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestSuite_hotplug_mp.py b/tests/TestSuite_hotplug_mp.py index 3a43058..42bbee9 100644 --- a/tests/TestSuite_hotplug_mp.py +++ b/tests/TestSuite_hotplug_mp.py @@ -309,5 +309,6 @@ class TestHotplugMp(TestCase): """ Run after each test suite. """ + self.dut.bind_interfaces_linux(self.drivername) self.dut.close_session(self.dut) self.dut.kill_all() -- 2.17.1