test suite reviews and discussions
 help / color / mirror / Atom feed
From: Yang Lewei <leweix.yang@intel.com>
To: dts@dpdk.org
Cc: Yang Lewei <leweix.yang@intel.com>
Subject: [dts] [PATCH V1] tests/TestSuite_veb_switch:fix Rx bytes statistics
Date: Thu,  9 Sep 2021 18:20:48 +0000	[thread overview]
Message-ID: <20210909182048.26935-1-leweix.yang@intel.com> (raw)

According to dpdk commit e8326d3, fix Rx bytes statistics.

Signed-off-by: Yang Lewei <leweix.yang@intel.com>
---
 tests/TestSuite_veb_switch.py | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/tests/TestSuite_veb_switch.py b/tests/TestSuite_veb_switch.py
index cdd2b3c4..915296ff 100644
--- a/tests/TestSuite_veb_switch.py
+++ b/tests/TestSuite_veb_switch.py
@@ -283,18 +283,10 @@ class TestVEBSwitching(TestCase):
 
         self.dut.send_expect("stop", "testpmd>", 2)
         self.session_secondary.send_expect("stop", "testpmd>", 2)
-        out = self.session_secondary.send_expect("show port info 0", "testpmd>")
-        vf1_driver = re.findall("Driver\s*name:\s*(\w+)", out)[0]
 
         vf0_tx_stats = self.veb_get_pmd_stats("first", 0, "tx")
         vf1_rx_stats = self.veb_get_pmd_stats("second", 0, "rx")
-        if self.kdriver == 'ice':
-            vf1_rx_stats[-1] = vf1_rx_stats[-1] + 4
-        if self.kdriver == 'i40e':
-            if vf1_driver == 'net_iavf':
-                vf1_rx_stats[-1] = vf1_rx_stats[-1] + 4
-            else:
-                vf1_rx_stats[-1] = vf1_rx_stats[-1]
+        vf1_rx_stats[-1] = vf1_rx_stats[-1] + 4
         self.verify(vf0_tx_stats[0] != 0, "no packet was sent by VF0")
         self.verify(vf0_tx_stats == vf1_rx_stats, "VF1 failed to receive packets from VF0")
     
-- 
2.17.1


             reply	other threads:[~2021-09-09  9:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-09 18:20 Yang Lewei [this message]
2021-09-28  0:23 ` 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=20210909182048.26935-1-leweix.yang@intel.com \
    --to=leweix.yang@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).