From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 269FC1B3B5 for ; Tue, 25 Dec 2018 03:12:54 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Dec 2018 18:12:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,394,1539673200"; d="scan'208";a="132619031" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 24 Dec 2018 18:12:53 -0800 From: yaobing To: dts@dpdk.org Cc: yaobing Date: Tue, 25 Dec 2018 10:16:07 +0800 Message-Id: <1545704167-73043-1-git-send-email-bingx.y.yao@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V2] tests/flags:case should unbind its own dirver 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: , X-List-Received-Date: Tue, 25 Dec 2018 02:12:55 -0000 unbind_interfaces_linux() can unbind its own driver,do not need pass parameters Signed-off-by: yaobing --- tests/TestSuite_unit_tests_eal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_unit_tests_eal.py b/tests/TestSuite_unit_tests_eal.py index 8299b51..9e843e4 100644 --- a/tests/TestSuite_unit_tests_eal.py +++ b/tests/TestSuite_unit_tests_eal.py @@ -261,7 +261,7 @@ class TestUnitTestsEal(TestCase): Run eal flags autotest. """ - self.dut.unbind_interfaces_linux(driver=self.drivername) + self.dut.unbind_interfaces_linux() self.dut.send_expect(self.test_app_cmdline + ' -m 64', "R.*T.*E.*>.*>", self.start_test_time) # on FreeBSD need more time than other OS out = self.dut.send_expect("eal_flags_autotest", "RTE>>", 600) -- 2.17.2