From: Wenjie Li <wenjiex.a.li@intel.com>
To: dts@dpdk.org
Cc: Wenjie Li <wenjiex.a.li@intel.com>
Subject: [dts] [PATCH V1] tests/shutdown_api:change crc-strip command
Date: Wed, 11 Sep 2019 12:00:40 +0000 [thread overview]
Message-ID: <1568203240-53283-1-git-send-email-wenjiex.a.li@intel.com> (raw)
In dpdk commit e5db17a1e54e419419, "port config all crc-strip|scatter|
rx-cksum|rx-timestamp|hw-vlan|hw-vlan-filter|hw-vlan-strip|hw-vlan-extend on|off"
was deleted, use "port config [port_id] rx_offload keep_crc off" instead
of "port config all crc-strip on".
Signed-off-by: Wenjie Li <wenjiex.a.li@intel.com>
---
tests/TestSuite_shutdown_api.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/TestSuite_shutdown_api.py b/tests/TestSuite_shutdown_api.py
index f889e1c..32bb765 100644
--- a/tests/TestSuite_shutdown_api.py
+++ b/tests/TestSuite_shutdown_api.py
@@ -280,7 +280,8 @@ class TestShutdownApi(TestCase):
crc_keep == RX_OFFLOAD_KEEP_CRC, "CRC keeping not enabled properly")
self.dut.send_expect("port stop all", "testpmd> ", 100)
- self.dut.send_expect("port config all crc-strip on", "testpmd> ")
+ for i in range(len(self.dut.get_ports())):
+ self.dut.send_expect("port config %s rx_offload keep_crc off" % i, "testpmd> ")
self.dut.send_expect("set fwd mac", "testpmd>")
self.dut.send_expect("port start all", "testpmd> ", 100)
out = self.dut.send_expect("show config rxtx", "testpmd> ")
--
2.17.1
next reply other threads:[~2019-09-11 3:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-11 12:00 Wenjie Li [this message]
2019-09-11 6:17 ` Yao, BingX Y
2019-10-12 6:49 ` 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=1568203240-53283-1-git-send-email-wenjiex.a.li@intel.com \
--to=wenjiex.a.li@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).