test suite reviews and discussions
 help / color / mirror / Atom feed
From: Haiyang Zhao <haiyangx.zhao@intel.com>
To: dts@dpdk.org
Cc: Haiyang Zhao <haiyangx.zhao@intel.com>
Subject: [dts] [PATCH V1 02/12] test_plans/ddp_l2tpv3_test_plan: fix build warnings and errors
Date: Tue, 24 Mar 2020 16:27:58 +0800	[thread overview]
Message-ID: <1585038488-76474-3-git-send-email-haiyangx.zhao@intel.com> (raw)
In-Reply-To: <1585038488-76474-1-git-send-email-haiyangx.zhao@intel.com>

Signed-off-by: Haiyang Zhao <haiyangx.zhao@intel.com>
---
 test_plans/ddp_l2tpv3_test_plan.rst | 50 ++++++++++++++++++-------------------
 1 file changed, 25 insertions(+), 25 deletions(-)

diff --git a/test_plans/ddp_l2tpv3_test_plan.rst b/test_plans/ddp_l2tpv3_test_plan.rst
index 77f03a9..6d3952f 100644
--- a/test_plans/ddp_l2tpv3_test_plan.rst
+++ b/test_plans/ddp_l2tpv3_test_plan.rst
@@ -700,20 +700,20 @@ Test Case: L2TPv3 with specific IPv4 SIP and IPv6 SIP configured together
 10. Send L2TPv3 IPv6 packet with SIP and session ID matching the configured
     rule, Packets should be received on queue 20::
 
-    p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",nh=115)/Raw('\x00\x00\x03\xe8')/
-    Raw('x' * 20)
+     p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",nh=115)/Raw('\x00\x00\x03\xe8')/
+     Raw('x' * 20)
 
 11. Send L2TPv3 IPv6 packet with session ID not matching the configured
     rule, Packet should be received on queue 0::
 
-    p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",nh=115)/Raw('\x00\x00\x03\xff')
-    /Raw('x' * 20)
+     p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",nh=115)/Raw('\x00\x00\x03\xff')
+     /Raw('x' * 20)
 
 12. Send L2TPv3 IPv6 packet with SIP not matching the configured rule,
     Packet should be received on queue 0::
 
-    p=Ether()/IPv6(src="1111:2:3:4:5:6:7:8",nh=115)/Raw('\x00\x00\x03\xe8')
-    /Raw('x' * 20)
+     p=Ether()/IPv6(src="1111:2:3:4:5:6:7:8",nh=115)/Raw('\x00\x00\x03\xe8')
+     /Raw('x' * 20)
 
 Test Case: L2TPv3 with specific IPv4 DIP and IPv6 DIP configured together
 =========================================================================
@@ -779,20 +779,20 @@ Test Case: L2TPv3 with specific IPv4 DIP and IPv6 DIP configured together
 10. Send L2TPv3 packet with session ID, DIP matching the configured rule,
     Packets should be received on queue 20::
 
-    p=Ether()/IPv6(dst="8:7:6:5:4:3:2:1",nh=115)/Raw('\x00\x00\x03\xe8')/
-    Raw('x' * 20)
+     p=Ether()/IPv6(dst="8:7:6:5:4:3:2:1",nh=115)/Raw('\x00\x00\x03\xe8')/
+     Raw('x' * 20)
 
 11. Send L2TPv3 packet with session ID not matching the configured rule,
     Packet should be received on queue 0::
 
-    p=Ether()/IPv6(dst="8:7:6:5:4:3:2:1",nh=115)/Raw('\x00\x00\x03\xff')/
-    Raw('x' * 20)
+     p=Ether()/IPv6(dst="8:7:6:5:4:3:2:1",nh=115)/Raw('\x00\x00\x03\xff')/
+     Raw('x' * 20)
 
 12. Send L2TPv3 packet with DIP not matching the configured rule, Packet
     should be received on queue 0::
 
-    p=Ether()/IPv6(dst="8888:7:6:5:4:3:2:1",nh=115)/Raw('\x00\x00\x03\xe8')/
-    Raw('x' * 20)
+     p=Ether()/IPv6(dst="8888:7:6:5:4:3:2:1",nh=115)/Raw('\x00\x00\x03\xe8')/
+     Raw('x' * 20)
 
 Test Case: L2TPv3 with IPv4 SIP, DIP and IPv6 SIP, DIP configured together
 ==========================================================================
@@ -866,35 +866,35 @@ Test Case: L2TPv3 with IPv4 SIP, DIP and IPv6 SIP, DIP configured together
 9. Send L2TPv3 IPv4 packet with SIP not matching the configured rule,
    Packets should be received on queue 0::
 
-    p=Ether()/IP(src="100.10.10.1", dst= "20.10.10.20",proto=115)/
-    Raw('\x00\x00\x00\x01')/Raw('x' * 20)
+     p=Ether()/IP(src="100.10.10.1", dst= "20.10.10.20",proto=115)/
+     Raw('\x00\x00\x00\x01')/Raw('x' * 20)
 
 10. Send L2TPv3 IPv4 packet with DIP not matching the configured rule, Packet
-   should be received on queue 0::
+    should be received on queue 0::
 
-    p=Ether()/IP(src="10.10.10.1", dst="220.10.10.20",proto=115)/
-    Raw('\x00\x00\x00\x01')/Raw('x' * 20)
+     p=Ether()/IP(src="10.10.10.1", dst="220.10.10.20",proto=115)/
+     Raw('\x00\x00\x00\x01')/Raw('x' * 20)
 
 11. Send L2TPv3 IPv6 packet with SIP, DIP and session ID matching the
     configured rule, Packets should be received on queue 20::
 
-    p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",ipv6 dst="8:7:6:5:4:3:2:1",nh=115)/
-    Raw('\x00\x00\x03\xe8')/Raw('x' * 20)
+     p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",ipv6 dst="8:7:6:5:4:3:2:1",nh=115)/
+     Raw('\x00\x00\x03\xe8')/Raw('x' * 20)
 
 12. Send L2TPv3 IPv6 packet with session ID not matching the configured rule,
     Packet should be received on queue 0::
 
-    p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",ipv6 dst="8:7:6:5:4:3:2:1",nh=115)/
-    Raw('\x00\x00\x03\xF8')/Raw('x' * 20)
+     p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",ipv6 dst="8:7:6:5:4:3:2:1",nh=115)/
+     Raw('\x00\x00\x03\xF8')/Raw('x' * 20)
 
 13. Send L2TPv3 IPv6 packet with SIP not matching the configured rule, Packet
     should be received on queue 0::
 
-    p=Ether()/IPv6(src="1111:2:3:4:5:6:7:8",ipv6 dst="8:7:6:5:4:3:2:1",nh=115)
-    /Raw('\x00\x00\x03\xe8')/Raw('x' * 20)
+     p=Ether()/IPv6(src="1111:2:3:4:5:6:7:8",ipv6 dst="8:7:6:5:4:3:2:1",nh=115)
+     /Raw('\x00\x00\x03\xe8')/Raw('x' * 20)
 
 14. Send L2TPv3 IPv6 packet with DIP not matching the configured rule, Packet
     should be received on queue 0::
 
-    p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",ipv6 dst="8888:7:6:5:4:3:2:1",nh=115)/
-    Raw('\x00\x00\x03\xe8')/Raw('x' * 20)
+     p=Ether()/IPv6(src="1:2:3:4:5:6:7:8",ipv6 dst="8888:7:6:5:4:3:2:1",nh=115)/
+     Raw('\x00\x00\x03\xe8')/Raw('x' * 20)
-- 
1.8.3.1


  parent reply	other threads:[~2020-03-24  8:34 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-24  8:27 [dts] [PATCH V1 00/12] test_plans: " Haiyang Zhao
2020-03-24  8:27 ` [dts] [PATCH V1 01/12] test_plans/cvl_fdir_test_plan: " Haiyang Zhao
2020-03-24  8:27 ` Haiyang Zhao [this message]
2020-03-24  8:27 ` [dts] [PATCH V1 03/12] test_plans/loopback_virtio_user_server_mode_test_plan: " Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 04/12] test_plans/ntb_test_plan: " Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 05/12] test_plans/pvp_vhost_user_reconnect_test_plan: " Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 06/12] test_plans/qos_sched_test_plan: " Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 07/12] test_plans/shutdown_api_test_plan: " Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 08/12] test_plans/vf_macfilter_test_plan: " Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 09/12] test_plans/vm2vm_virtio_net_perf_test_plan: " Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 10/12] test_plans/index: update index.rst *.delete removed test plans from index.rst: loopback_virtio_user_packed_ring_server_mode_test_plan, pvp_packed_ring_vhost_user_reconnect_test_plan, vhost_pmd_xstats_test_plan. *.add new test plans: ABI_stable_test, perf_virtio_user_loopback_test_plan, perf_virtio_user_pvp_test_plan, perf_vm2vm_virtio_net_perf_test_plan, pvp_virtio_user_multi_queues_port_restart_test_plan Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 11/12] doc/dts_gsg/usage_of_create_eal_and_start_testpmd: fix build warngings and errors Haiyang Zhao
2020-03-24  8:28 ` [dts] [PATCH V1 12/12] doc/dts_gsg/index: update index.rst Haiyang Zhao
2020-03-25  1:53 ` [dts] [PATCH V1 00/12] test_plans: fix build warnings and errors Tu, Lijuan

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=1585038488-76474-3-git-send-email-haiyangx.zhao@intel.com \
    --to=haiyangx.zhao@intel.com \
    --cc=dts@dpdk.org \
    /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).