[dts] [PATCH V1] tests/shutdown_api:change crc-strip command

Yao, BingX Y bingx.y.yao at intel.com
Wed Sep 11 08:17:37 CEST 2019


Tested-by: Yao, BingX Y <bingx.y.yao at intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces at dpdk.org] On Behalf Of Wenjie Li
Sent: Wednesday, September 11, 2019 8:01 PM
To: dts at dpdk.org
Cc: Li, WenjieX A <wenjiex.a.li at intel.com>
Subject: [dts] [PATCH V1] tests/shutdown_api:change crc-strip command

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 at 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 part --------------
A non-text attachment was scrubbed...
Name: TestShutdownApi.log
Type: application/octet-stream
Size: 257525 bytes
Desc: TestShutdownApi.log
URL: <http://mails.dpdk.org/archives/dts/attachments/20190911/0177e6e2/attachment.obj>


More information about the dts mailing list