From: Lingli Chen <linglix.chen@intel.com>
To: dts@dpdk.org
Cc: zhiminx.huang@intel.com, Lingli Chen <linglix.chen@intel.com>
Subject: [dts][PATCH V1 2/2] tests/*: modify script according to dpdk code change
Date: Fri, 24 Jun 2022 03:17:04 -0400 [thread overview]
Message-ID: <20220624071704.6651-2-linglix.chen@intel.com> (raw)
In-Reply-To: <20220624071704.6651-1-linglix.chen@intel.com>
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2700 bytes --]
According to dpdk commit 3c4426db54fc(app/testpmd: do not poll stopped queues)
dynamic_queue: Tx stopped queue not display
queue_start_stop: after set “port 0 txq 0 stop”, no print in testpmd
Signed-off-by: Lingli Chen <linglix.chen@intel.com>
---
tests/TestSuite_dynamic_queue.py | 15 ++++++++-------
tests/TestSuite_queue_start_stop.py | 12 ------------
2 files changed, 8 insertions(+), 19 deletions(-)
diff --git a/tests/TestSuite_dynamic_queue.py b/tests/TestSuite_dynamic_queue.py
index ebbe869c..5a826bd1 100644
--- a/tests/TestSuite_dynamic_queue.py
+++ b/tests/TestSuite_dynamic_queue.py
@@ -163,13 +163,14 @@ class TestDynamicQueue(TestCase):
out = self.dut_testpmd.execute_cmd("stop")
tx_num = qringsize - 1
- if self.nic in ["cavium_a063", "cavium_a064"]:
- self.verify("TX-packets: 0" in out, "Fail to stop txq at runtime")
- else:
- # Check Tx stopped queue only transmits qringsize-1 packets
- self.verify(
- "TX-packets: %d" % tx_num in out, "Fail to stop txq at runtime"
- )
+ # check rxq start successful
+ self.verify("TX-packets:" in out, "txq start failed")
+ # check Tx stopped queue not display
+ self.verify(
+ "TX Port= 0/Queue={:>2}".format(queue) not in out,
+ "Fail to stop txq at runtime",
+ )
+
if chgflag == 1:
chg_qringsize = qringsize % 1024 + 256
if qringsize == 512:
diff --git a/tests/TestSuite_queue_start_stop.py b/tests/TestSuite_queue_start_stop.py
index 1df59a1b..f5028e8b 100644
--- a/tests/TestSuite_queue_start_stop.py
+++ b/tests/TestSuite_queue_start_stop.py
@@ -134,21 +134,9 @@ class TestQueueStartStop(TestCase):
self.dut.send_expect("port 0 txq 0 stop", "testpmd>")
self.dut.send_expect("start", "testpmd>")
self.check_forwarding([0, 0], self.nic, received=False)
- out = self.dut.get_session_output()
except Exception as e:
raise IOError("queue start/stop forward failure: %s" % e)
- if self.nic == "cavium_a063":
- self.verify(
- "ports 0 queue 0 receive 4 packages" in out,
- "start queue revice package failed, out = %s" % out,
- )
- else:
- self.verify(
- "ports 0 queue 0 receive 1 packages\r\n" * 4 in out,
- "start queue revice package failed, out = %s" % out,
- )
-
try:
# start tx queue test
print("test start rx and tx queue")
--
2.17.1
next prev parent reply other threads:[~2022-06-24 7:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-24 7:17 [dts][PATCH V1 1/2] test_plans/*: " Lingli Chen
2022-06-24 7:17 ` Lingli Chen [this message]
2022-06-29 2:09 ` [dts][PATCH V1 2/2] tests/*: " 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=20220624071704.6651-2-linglix.chen@intel.com \
--to=linglix.chen@intel.com \
--cc=dts@dpdk.org \
--cc=zhiminx.huang@intel.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).