Message ID | 20210909182048.26935-1-leweix.yang@intel.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [V1] tests/TestSuite_veb_switch:fix Rx bytes statistics | expand |
Context | Check | Description |
---|---|---|
ci/Intel-dts-test | success | Testing OK |
> -----Original Message----- > From: dts <dts-bounces@dpdk.org> On Behalf Of Yang Lewei > Sent: 2021年9月10日 2:21 > To: dts@dpdk.org > Cc: Yang, LeweiX <leweix.yang@intel.com> > Subject: [dts] [PATCH V1] tests/TestSuite_veb_switch:fix Rx bytes statistics > > According to dpdk commit e8326d3, fix Rx bytes statistics. > > Signed-off-by: Yang Lewei <leweix.yang@intel.com> Applied
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")
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(-)