From: Yash Sharma <ysharma@marvell.com>
To: <dts@dpdk.org>, <shshaikh@marvell.com>
Cc: <psurana@marvell.com>, <srane@marvell.com>, yash <ysharma@marvell.com>
Subject: [dts] [PATCH 1/1] Total Packet Length includes CRC(4 bytes) so no need of adding extra 4 bytes for fastlinq Adapters.
Date: Wed, 26 Jun 2019 23:50:24 -0700 [thread overview]
Message-ID: <20190627065024.30365-1-ysharma@marvell.com> (raw)
From: yash <ysharma@marvell.com>
Signed-off-by: yash <ysharma@marvell.com>
---
tests/TestSuite_jumboframes.py | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/tests/TestSuite_jumboframes.py b/tests/TestSuite_jumboframes.py
index cf4335a..1b5aab5 100644
--- a/tests/TestSuite_jumboframes.py
+++ b/tests/TestSuite_jumboframes.py
@@ -93,12 +93,18 @@ class TestJumboframes(TestCase):
rx_err -= rx_err_ori
if received:
- self.verify(self.pmdout.check_tx_bytes(tx_pkts, rx_pkts)
- and ( self.pmdout.check_tx_bytes(tx_bytes + 4, pktsize ))
- and ((rx_bytes + 4) == pktsize),
- "packet pass assert error")
+ if self.nic.startswith('fastlinq'):
+ self.verify(self.pmdout.check_tx_bytes(tx_pkts, rx_pkts)
+ and ( self.pmdout.check_tx_bytes(tx_bytes, pktsize ))
+ and (rx_bytes == pktsize),
+ "packet pass assert error")
+ else:
+ self.verify(self.pmdout.check_tx_bytes(tx_pkts, rx_pkts)
+ and ( self.pmdout.check_tx_bytes(tx_bytes + 4, pktsize ))
+ and ((rx_bytes + 4) == pktsize),
+ "packet pass assert error")
else:
- self.verify(rx_err == 1 or tx_pkts == 0, "packet drop assert error")
+ self.verify(rx_err == 1 or tx_pkts == 0, "packet drop assert error")
return out
#
--
1.8.3.1
next reply other threads:[~2019-06-27 6:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-27 6:50 Yash Sharma [this message]
2019-07-03 9:23 ` Tu, Lijuan
2019-06-28 7:13 [dts] [PATCH 1/1] Patch adds preliminary settings to support Qlogic NICs Yash Sharma
2019-06-28 7:13 ` [dts] [PATCH 1/1] Total Packet Length includes CRC(4 bytes) so no need of adding extra 4 bytes for fastlinq Adapters Yash Sharma
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=20190627065024.30365-1-ysharma@marvell.com \
--to=ysharma@marvell.com \
--cc=dts@dpdk.org \
--cc=psurana@marvell.com \
--cc=shshaikh@marvell.com \
--cc=srane@marvell.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).