test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2] tests/flags:case should unbind its own dirver
@ 2018-12-25  2:16 yaobing
  2018-12-25  2:17 ` Zhu, WenhuiX
  2018-12-25 10:22 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: yaobing @ 2018-12-25  2:16 UTC (permalink / raw)
  To: dts; +Cc: yaobing

unbind_interfaces_linux() can unbind its own driver,do not need pass
parameters

Signed-off-by: yaobing <bingx.y.yao@intel.com>
---
 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/flags:case should unbind its own dirver
  2018-12-25  2:16 [dts] [PATCH V2] tests/flags:case should unbind its own dirver yaobing
@ 2018-12-25  2:17 ` Zhu, WenhuiX
  2018-12-25 10:22 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Zhu, WenhuiX @ 2018-12-25  2:17 UTC (permalink / raw)
  To: Yao, BingX Y, dts; +Cc: Yao, BingX Y, Zhu, WenhuiX


Tested-by : Zhu, WenhuiX <wenhuix.zhu@intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of yaobing
Sent: Tuesday, December 25, 2018 10:16 AM
To: dts@dpdk.org
Cc: Yao, BingX Y <bingx.y.yao@intel.com>
Subject: [dts] [PATCH V2] tests/flags:case should unbind its own dirver

unbind_interfaces_linux() can unbind its own driver,do not need pass parameters

Signed-off-by: yaobing <bingx.y.yao@intel.com>
---
 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/flags:case should unbind its own dirver
  2018-12-25  2:16 [dts] [PATCH V2] tests/flags:case should unbind its own dirver yaobing
  2018-12-25  2:17 ` Zhu, WenhuiX
@ 2018-12-25 10:22 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2018-12-25 10:22 UTC (permalink / raw)
  To: Yao, BingX Y, dts; +Cc: Yao, BingX Y

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of yaobing
> Sent: Tuesday, December 25, 2018 10:16 AM
> To: dts@dpdk.org
> Cc: Yao, BingX Y <bingx.y.yao@intel.com>
> Subject: [dts] [PATCH V2] tests/flags:case should unbind its own dirver
> 
> unbind_interfaces_linux() can unbind its own driver,do not need pass
> parameters
> 
> Signed-off-by: yaobing <bingx.y.yao@intel.com>
> ---
>  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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-12-25 10:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-25  2:16 [dts] [PATCH V2] tests/flags:case should unbind its own dirver yaobing
2018-12-25  2:17 ` Zhu, WenhuiX
2018-12-25 10:22 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).