test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue
@ 2020-04-23  9:58 Huang Zhimin
  0 siblings, 0 replies; 6+ messages in thread
From: Huang Zhimin @ 2020-04-23  9:58 UTC (permalink / raw)
  To: dts; +Cc: Huang Zhimin

*.pmdpcap rebuild not bind nic to dpdk.

Signed-off-by: Huang Zhimin <zhiminx.huang@intel.com>
---
 tests/TestSuite_pmdpcap.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/TestSuite_pmdpcap.py b/tests/TestSuite_pmdpcap.py
index fc5acf7..509af0b 100644
--- a/tests/TestSuite_pmdpcap.py
+++ b/tests/TestSuite_pmdpcap.py
@@ -66,7 +66,6 @@ class TestPmdPcap(TestCase):
         os_type = self.dut.get_os_type()
         if os_type == "freebsd":
             self.dut.send_expect("kldload contigmem", "#",20)
-            self.dut.send_expect("kldload nic_uio", "#",20)
 
     def get_pcap_compile_config(self):
         config_head = "common_"
-- 
2.7.4


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

* Re: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue
  2020-04-24  2:24 Huang Zhimin
  2020-04-24  2:52 ` Zhao, HaiyangX
  2020-04-24  2:58 ` Zhou, JunX W
@ 2020-04-24  6:41 ` Tu, Lijuan
  2 siblings, 0 replies; 6+ messages in thread
From: Tu, Lijuan @ 2020-04-24  6:41 UTC (permalink / raw)
  To: Huang, ZhiminX, dts; +Cc: Huang, ZhiminX

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Huang Zhimin
> Sent: Friday, April 24, 2020 10:24 AM
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk
> issue
> 
> *.pmdpcap rebuild not bind nic to dpdk.
> 
> Signed-off-by: Huang Zhimin <zhiminx.huang@intel.com>
> ---
>  tests/TestSuite_pmdpcap.py | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/tests/TestSuite_pmdpcap.py b/tests/TestSuite_pmdpcap.py index
> fc5acf7..509af0b 100644
> --- a/tests/TestSuite_pmdpcap.py
> +++ b/tests/TestSuite_pmdpcap.py
> @@ -66,7 +66,6 @@ class TestPmdPcap(TestCase):
>          os_type = self.dut.get_os_type()
>          if os_type == "freebsd":
>              self.dut.send_expect("kldload contigmem", "#",20)
> -            self.dut.send_expect("kldload nic_uio", "#",20)
> 
>      def get_pcap_compile_config(self):
>          config_head = "common_"
> --
> 2.7.4


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

* Re: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue
       [not found]   ` <1DCDE90B92229844B9E6C0E67C1C8D6B0469DE5A@CDSMSX102.ccr.corp.intel.com>
@ 2020-04-24  3:01     ` Zhang, XiX
  0 siblings, 0 replies; 6+ messages in thread
From: Zhang, XiX @ 2020-04-24  3:01 UTC (permalink / raw)
  To: dts

Tested-by :  xix.zhang@intel.com

-----Original Message-----
From: Huang, ZhiminX 
Sent: Friday, April 24, 2020 11:00 AM
To: Zhang, XiX <xix.zhang@intel.com>
Subject: FW: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue



-----Original Message-----
From: Zhao, HaiyangX
Sent: Friday, April 24, 2020 10:53 AM
To: Huang, ZhiminX <zhiminx.huang@intel.com>; dts@dpdk.org
Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
Subject: RE: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue

Tested-by :  haiyangx.zhao@intel.com

Best Regards,
Zhao haiyang

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Huang Zhimin
> Sent: Friday, April 24, 2020 10:24
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild 
> dpdk issue
> 
> *.pmdpcap rebuild not bind nic to dpdk.
> 
> Signed-off-by: Huang Zhimin <zhiminx.huang@intel.com>
> ---
>  tests/TestSuite_pmdpcap.py | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/tests/TestSuite_pmdpcap.py b/tests/TestSuite_pmdpcap.py 
> index fc5acf7..509af0b 100644
> --- a/tests/TestSuite_pmdpcap.py
> +++ b/tests/TestSuite_pmdpcap.py
> @@ -66,7 +66,6 @@ class TestPmdPcap(TestCase):
>          os_type = self.dut.get_os_type()
>          if os_type == "freebsd":
>              self.dut.send_expect("kldload contigmem", "#",20)
> -            self.dut.send_expect("kldload nic_uio", "#",20)
> 
>      def get_pcap_compile_config(self):
>          config_head = "common_"
> --
> 2.7.4


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

* Re: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue
  2020-04-24  2:24 Huang Zhimin
  2020-04-24  2:52 ` Zhao, HaiyangX
@ 2020-04-24  2:58 ` Zhou, JunX W
  2020-04-24  6:41 ` Tu, Lijuan
  2 siblings, 0 replies; 6+ messages in thread
From: Zhou, JunX W @ 2020-04-24  2:58 UTC (permalink / raw)
  To: Huang, ZhiminX, dts; +Cc: Huang, ZhiminX

Tested-by:  Zhou, JunX W <junx.w.zhou@intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Huang Zhimin
Sent: Friday, April 24, 2020 10:24 AM
To: dts@dpdk.org
Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
Subject: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue

*.pmdpcap rebuild not bind nic to dpdk.

Signed-off-by: Huang Zhimin <zhiminx.huang@intel.com>
---
 tests/TestSuite_pmdpcap.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/TestSuite_pmdpcap.py b/tests/TestSuite_pmdpcap.py index fc5acf7..509af0b 100644
--- a/tests/TestSuite_pmdpcap.py
+++ b/tests/TestSuite_pmdpcap.py
@@ -66,7 +66,6 @@ class TestPmdPcap(TestCase):
         os_type = self.dut.get_os_type()
         if os_type == "freebsd":
             self.dut.send_expect("kldload contigmem", "#",20)
-            self.dut.send_expect("kldload nic_uio", "#",20)
 
     def get_pcap_compile_config(self):
         config_head = "common_"
--
2.7.4


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

* Re: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue
  2020-04-24  2:24 Huang Zhimin
@ 2020-04-24  2:52 ` Zhao, HaiyangX
       [not found]   ` <1DCDE90B92229844B9E6C0E67C1C8D6B0469DE5A@CDSMSX102.ccr.corp.intel.com>
  2020-04-24  2:58 ` Zhou, JunX W
  2020-04-24  6:41 ` Tu, Lijuan
  2 siblings, 1 reply; 6+ messages in thread
From: Zhao, HaiyangX @ 2020-04-24  2:52 UTC (permalink / raw)
  To: Huang, ZhiminX, dts; +Cc: Huang, ZhiminX

[-- Attachment #1: Type: text/plain, Size: 1092 bytes --]

Tested-by :  haiyangx.zhao@intel.com

Best Regards,
Zhao haiyang

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Huang Zhimin
> Sent: Friday, April 24, 2020 10:24
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk
> issue
> 
> *.pmdpcap rebuild not bind nic to dpdk.
> 
> Signed-off-by: Huang Zhimin <zhiminx.huang@intel.com>
> ---
>  tests/TestSuite_pmdpcap.py | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/tests/TestSuite_pmdpcap.py b/tests/TestSuite_pmdpcap.py index
> fc5acf7..509af0b 100644
> --- a/tests/TestSuite_pmdpcap.py
> +++ b/tests/TestSuite_pmdpcap.py
> @@ -66,7 +66,6 @@ class TestPmdPcap(TestCase):
>          os_type = self.dut.get_os_type()
>          if os_type == "freebsd":
>              self.dut.send_expect("kldload contigmem", "#",20)
> -            self.dut.send_expect("kldload nic_uio", "#",20)
> 
>      def get_pcap_compile_config(self):
>          config_head = "common_"
> --
> 2.7.4


[-- Attachment #2: TestPmdPcap.zip --]
[-- Type: application/x-zip-compressed, Size: 1976284 bytes --]

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

* [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue
@ 2020-04-24  2:24 Huang Zhimin
  2020-04-24  2:52 ` Zhao, HaiyangX
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Huang Zhimin @ 2020-04-24  2:24 UTC (permalink / raw)
  To: dts; +Cc: Huang Zhimin

*.pmdpcap rebuild not bind nic to dpdk.

Signed-off-by: Huang Zhimin <zhiminx.huang@intel.com>
---
 tests/TestSuite_pmdpcap.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/TestSuite_pmdpcap.py b/tests/TestSuite_pmdpcap.py
index fc5acf7..509af0b 100644
--- a/tests/TestSuite_pmdpcap.py
+++ b/tests/TestSuite_pmdpcap.py
@@ -66,7 +66,6 @@ class TestPmdPcap(TestCase):
         os_type = self.dut.get_os_type()
         if os_type == "freebsd":
             self.dut.send_expect("kldload contigmem", "#",20)
-            self.dut.send_expect("kldload nic_uio", "#",20)
 
     def get_pcap_compile_config(self):
         config_head = "common_"
-- 
2.7.4


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

end of thread, other threads:[~2020-04-24  6:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-23  9:58 [dts] [PATCH V1] tests/TestSuite_pmdpcap:fix pmdpcap rebuild dpdk issue Huang Zhimin
2020-04-24  2:24 Huang Zhimin
2020-04-24  2:52 ` Zhao, HaiyangX
     [not found]   ` <1DCDE90B92229844B9E6C0E67C1C8D6B0469DE5A@CDSMSX102.ccr.corp.intel.com>
2020-04-24  3:01     ` Zhang, XiX
2020-04-24  2:58 ` Zhou, JunX W
2020-04-24  6:41 ` 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).