test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "Zeng, XiaoxiaoX" <xiaoxiaox.zeng@intel.com>,
	"dts@dpdk.org" <dts@dpdk.org>
Cc: "Zeng, XiaoxiaoX" <xiaoxiaox.zeng@intel.com>
Subject: Re: [dts] [PATCH V2] tests/cvl_advanced_rss:remove_useless_scripts
Date: Fri, 17 Jan 2020 06:52:13 +0000	[thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBAC911@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1579240693-153791-1-git-send-email-xiaoxiaox.zeng@intel.com>

applied

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Zeng Xiaoxiao
> Sent: Friday, January 17, 2020 1:58 PM
> To: dts@dpdk.org
> Cc: Zeng, XiaoxiaoX <xiaoxiaox.zeng@intel.com>
> Subject: [dts] [PATCH V2] tests/cvl_advanced_rss:remove_useless_scripts
> 
> *.remove useless import.
> *.remove useless parameter.
> *.use space replace tab.
> 
> Signed-off-by: Zeng Xiaoxiao <xiaoxiaox.zeng@intel.com>
> ---
>  tests/TestSuite_cvl_advanced_rss.py | 17 ++---------------
>  1 file changed, 2 insertions(+), 15 deletions(-)
> 
> diff --git a/tests/TestSuite_cvl_advanced_rss.py
> b/tests/TestSuite_cvl_advanced_rss.py
> index b38fb8d..8faee33 100644
> --- a/tests/TestSuite_cvl_advanced_rss.py
> +++ b/tests/TestSuite_cvl_advanced_rss.py
> @@ -11,14 +11,6 @@ from collections import OrderedDict  from packet
> import IncreaseIP, IncreaseIPv6  import rte_flow_common as rfc
> 
> -from socket import AF_INET6
> -from scapy.utils import struct, socket, wrpcap, rdpcap -from
> scapy.layers.inet import Ether, IP, TCP, UDP -from scapy.layers.inet6 import
> IPv6 -from scapy.layers.l2 import Dot1Q -from scapy.layers.sctp import SCTP,
> SCTPChunkData -from nvgre import NVGRE
> -
>  out = os.popen("pip list|grep scapy ")
>  version_result =out.read()
>  p=re.compile('scapy\s+2\.3\.\d+')
> @@ -192,7 +184,6 @@ tv_mac_ipv4_udp_all_frag =
> {  tv_mac_ipv4_udp_nvgre = {
>      "name":"tv_mac_ipv4_udp_nvgre",
>      "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 / udp / end
> actions rss types ipv4-udp end key_len 0 queues end / end",
> -
> "scapy_str":'Ether(dst="68:05:ca:a3:28:94")/IP()/NVGRE()/Ether()/IP(src=Ran
> dIP(),dst=RandIP())/UDP(sport=RandShort(),dport=RandShort())/("X"*480)',
> 
> "scapy_str":['Ether(dst="68:05:ca:a3:28:94")/IP()/NVGRE()/Ether()/IP(src="19
> 2.168.0.%d", dst="192.168.0.%d")/UDP(sport=%d, dport=%d)/("X"*480)' %(i,
> i+10, i+50,i+55) for i in range(0,100)],
>      "check_func": rfc.check_packets_of_each_queue,
>      "check_func_param": {"expect_port":0} @@ -796,7 +787,7 @@
> tvs_mac_rss_ipv6_symmetric_toeplitz_nvgre = [
>      ]
> 
>  tvs_mac_rss_symmetric_toeplitz_vxlan = [
> -	tv_mac_ipv4_vxlan_symmetric_toeplitz,
> +    tv_mac_ipv4_vxlan_symmetric_toeplitz,
>      tv_mac_ipv6_vxlan_udp_symmetric_toeplitz,
>      tv_mac_ipv6_vxlan_symmetric_toeplitz,
>      tv_mac_ipv6_vxlan_tcp_symmetric_toeplitz,
> @@ -874,7 +865,6 @@ class AdvancedRSSTest(TestCase):
>          self.dut.send_expect("set fwd rxonly", "testpmd> ", 15)
>          self.dut.send_expect("set verbose 1", "testpmd> ", 15)
> 
> -        overall_result = True
>          test_results.clear()
>          self.count = 1
>          self.mac_count=100
> @@ -907,10 +897,7 @@ class AdvancedRSSTest(TestCase):
>          self.dut.send_expect("flow flush %d" % self.dut_ports[0], "testpmd> ")
>          self.dut.send_expect("quit", "#")
> 
> -        self.verify(overall_result == True, "Some test case failed.")
> -
> -
> -    def test_advance_rss_ipv4(self):
> +    def test_advance_rss_ipv4(self):
>          command = self.create_testpmd_command()
>          self._rte_flow_validate_pattern(tvs_mac_rss_ipv4, command, is_vxlan =
> True)
> 
> --
> 1.8.3.1


      reply	other threads:[~2020-01-17  6:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-17  5:58 Zeng Xiaoxiao
2020-01-17  6:52 ` Tu, Lijuan [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8CE3E05A3F976642AAB0F4675D0AD20E0BBAC911@SHSMSX101.ccr.corp.intel.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=xiaoxiaox.zeng@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).