test suite reviews and discussions
 help / color / mirror / Atom feed
* Re: [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip
  2019-12-11 19:43 [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip Xiaoxiao Zeng
@ 2019-12-11  7:57 ` Peng, ZhihongX
  2019-12-13  2:48   ` Ma, LihongX
  2019-12-20  7:48 ` Tu, Lijuan
  1 sibling, 1 reply; 4+ messages in thread
From: Peng, ZhihongX @ 2019-12-11  7:57 UTC (permalink / raw)
  To: Zeng, XiaoxiaoX, dts; +Cc: Zeng, XiaoxiaoX

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

Tested-by:  Peng,ZhihongX <zhihongx.peng@intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiaoxiao Zeng
Sent: Thursday, December 12, 2019 3:43 AM
To: dts@dpdk.org
Cc: Zeng, XiaoxiaoX <xiaoxiaox.zeng@intel.com>
Subject: [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip

*.As FW/HW problem which caused older FW works and newer FW not work,need to add 'vlan set filter' in testpmd to pass this case.

Signed-off-by: Xiaoxiao Zeng <xiaoxiaox.zeng@intel.com>
---
 tests/TestSuite_kernelpf_iavf.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/TestSuite_kernelpf_iavf.py b/tests/TestSuite_kernelpf_iavf.py
index 668eb28..3995238 100644
--- a/tests/TestSuite_kernelpf_iavf.py
+++ b/tests/TestSuite_kernelpf_iavf.py
@@ -510,6 +510,9 @@ class TestKernelpfIavf(TestCase):
 
         # disable strip
         self.vm_testpmd.execute_cmd("vlan set strip off 0")
+        if self.nic.startswith('columbiaville'):
+            self.vm_testpmd.execute_cmd("vlan set filter on 0")
+            self.vm_testpmd.execute_cmd("rx_vlan add %d 0" % random_vlan)
         self.start_tcpdump(self.tester_intf)
         out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP")
         tcpdump_out = self.get_tcpdump_package()
-- 
2.17.0


[-- Attachment #2: TestKernelpfIavf.log --]
[-- Type: application/octet-stream, Size: 22225 bytes --]

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

* [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip
@ 2019-12-11 19:43 Xiaoxiao Zeng
  2019-12-11  7:57 ` Peng, ZhihongX
  2019-12-20  7:48 ` Tu, Lijuan
  0 siblings, 2 replies; 4+ messages in thread
From: Xiaoxiao Zeng @ 2019-12-11 19:43 UTC (permalink / raw)
  To: dts; +Cc: Xiaoxiao Zeng

*.As FW/HW problem which caused older FW works and newer FW not work,need to add 'vlan set filter' in testpmd to pass this case.

Signed-off-by: Xiaoxiao Zeng <xiaoxiaox.zeng@intel.com>
---
 tests/TestSuite_kernelpf_iavf.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/TestSuite_kernelpf_iavf.py b/tests/TestSuite_kernelpf_iavf.py
index 668eb28..3995238 100644
--- a/tests/TestSuite_kernelpf_iavf.py
+++ b/tests/TestSuite_kernelpf_iavf.py
@@ -510,6 +510,9 @@ class TestKernelpfIavf(TestCase):
 
         # disable strip
         self.vm_testpmd.execute_cmd("vlan set strip off 0")
+        if self.nic.startswith('columbiaville'):
+            self.vm_testpmd.execute_cmd("vlan set filter on 0")
+            self.vm_testpmd.execute_cmd("rx_vlan add %d 0" % random_vlan)
         self.start_tcpdump(self.tester_intf)
         out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP")
         tcpdump_out = self.get_tcpdump_package()
-- 
2.17.0


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

* Re: [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip
  2019-12-11  7:57 ` Peng, ZhihongX
@ 2019-12-13  2:48   ` Ma, LihongX
  0 siblings, 0 replies; 4+ messages in thread
From: Ma, LihongX @ 2019-12-13  2:48 UTC (permalink / raw)
  To: Peng, ZhihongX, Zeng, XiaoxiaoX, dts; +Cc: Zeng, XiaoxiaoX

Reviewed-by: ma,lihong<lihongx.ma@intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Peng, ZhihongX
Sent: Wednesday, December 11, 2019 3:57 PM
To: Zeng, XiaoxiaoX <xiaoxiaox.zeng@intel.com>; dts@dpdk.org
Cc: Zeng, XiaoxiaoX <xiaoxiaox.zeng@intel.com>
Subject: Re: [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip

Tested-by:  Peng,ZhihongX <zhihongx.peng@intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiaoxiao Zeng
Sent: Thursday, December 12, 2019 3:43 AM
To: dts@dpdk.org
Cc: Zeng, XiaoxiaoX <xiaoxiaox.zeng@intel.com>
Subject: [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip

*.As FW/HW problem which caused older FW works and newer FW not work,need to add 'vlan set filter' in testpmd to pass this case.

Signed-off-by: Xiaoxiao Zeng <xiaoxiaox.zeng@intel.com>
---
 tests/TestSuite_kernelpf_iavf.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/TestSuite_kernelpf_iavf.py b/tests/TestSuite_kernelpf_iavf.py
index 668eb28..3995238 100644
--- a/tests/TestSuite_kernelpf_iavf.py
+++ b/tests/TestSuite_kernelpf_iavf.py
@@ -510,6 +510,9 @@ class TestKernelpfIavf(TestCase):
 
         # disable strip
         self.vm_testpmd.execute_cmd("vlan set strip off 0")
+        if self.nic.startswith('columbiaville'):
+            self.vm_testpmd.execute_cmd("vlan set filter on 0")
+            self.vm_testpmd.execute_cmd("rx_vlan add %d 0" % random_vlan)
         self.start_tcpdump(self.tester_intf)
         out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP")
         tcpdump_out = self.get_tcpdump_package()
-- 
2.17.0


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

* Re: [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip
  2019-12-11 19:43 [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip Xiaoxiao Zeng
  2019-12-11  7:57 ` Peng, ZhihongX
@ 2019-12-20  7:48 ` Tu, Lijuan
  1 sibling, 0 replies; 4+ messages in thread
From: Tu, Lijuan @ 2019-12-20  7:48 UTC (permalink / raw)
  To: Zeng, XiaoxiaoX, dts; +Cc: Zeng, XiaoxiaoX

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiaoxiao Zeng
> Sent: Thursday, December 12, 2019 3:43 AM
> To: dts@dpdk.org
> Cc: Zeng, XiaoxiaoX <xiaoxiaox.zeng@intel.com>
> Subject: [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case
> test_vf_vlan_strip
> 
> *.As FW/HW problem which caused older FW works and newer FW not
> work,need to add 'vlan set filter' in testpmd to pass this case.
> 
> Signed-off-by: Xiaoxiao Zeng <xiaoxiaox.zeng@intel.com>
> ---
>  tests/TestSuite_kernelpf_iavf.py | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/tests/TestSuite_kernelpf_iavf.py
> b/tests/TestSuite_kernelpf_iavf.py
> index 668eb28..3995238 100644
> --- a/tests/TestSuite_kernelpf_iavf.py
> +++ b/tests/TestSuite_kernelpf_iavf.py
> @@ -510,6 +510,9 @@ class TestKernelpfIavf(TestCase):
> 
>          # disable strip
>          self.vm_testpmd.execute_cmd("vlan set strip off 0")
> +        if self.nic.startswith('columbiaville'):
> +            self.vm_testpmd.execute_cmd("vlan set filter on 0")
> +            self.vm_testpmd.execute_cmd("rx_vlan add %d 0" % random_vlan)
>          self.start_tcpdump(self.tester_intf)
>          out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP")
>          tcpdump_out = self.get_tcpdump_package()
> --
> 2.17.0


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

end of thread, other threads:[~2019-12-20  7:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-11 19:43 [dts] [PATCH V4] tests/kernelpf_iavf:add vlan filter for CVL on case test_vf_vlan_strip Xiaoxiao Zeng
2019-12-11  7:57 ` Peng, ZhihongX
2019-12-13  2:48   ` Ma, LihongX
2019-12-20  7:48 ` 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).