From: Yu Jiang <yux.jiang@intel.com>
To: yuan.peng@intel.com, dts@dpdk.org
Cc: Yu Jiang <yux.jiang@intel.com>
Subject: [dts][PATCH V1] tests/pmdrss_hash: remove case test_dynamic_rss_bond_config
Date: Fri, 12 Nov 2021 10:50:37 +0800 [thread overview]
Message-ID: <1636685437-11412-1-git-send-email-yux.jiang@intel.com> (raw)
According to dpdk commit id 81db321da ("ethdev: remove legacy HASH filter type support"),
No new rte_flow_api support get_hash_global_config, so remove this case.
Signed-off-by: Yu Jiang <yux.jiang@intel.com>
---
| 32 -----------------------------
| 40 ------------------------------------
2 files changed, 72 deletions(-)
--git a/test_plans/pmdrss_hash_test_plan.rst b/test_plans/pmdrss_hash_test_plan.rst
index 48a61e5..777115b 100644
--- a/test_plans/pmdrss_hash_test_plan.rst
+++ b/test_plans/pmdrss_hash_test_plan.rst
@@ -183,35 +183,3 @@ Test Case: test_simple_symmetric
The same as the above test case "test_toeplitz_symmetric". Just pay attention to set the hash function to "simple xor"
-Test Case: test_dynamic_rss_bond_config
-========================================
-This case test bond slaves will auto sync rss hash config, it only support by fortville.
-
-#. set up testpmd with fortville NICs::
-
- ./testpmd -c f -n 4 -- -i
-
-#. create bond device with mode 3::
-
- create bonded device 3 0
-
-#. add slave to bond device::
-
- add bonding slave 0 2
- add bonding slave 1 2
-
-#. get default hash algorithm on slave::
-
- get_hash_global_config 0
- get_hash_global_config 1
-
-#. set hash algorithm on slave 0::
-
- set_hash_global_config 0 simple_xor ipv4-other enable
-
-#. get hash algorithm on slave 0 and 1::
-
- get_hash_global_config 0
- get_hash_global_config 1
-
-#. check slave 0 and 1 use same hash algorithm
--git a/tests/TestSuite_pmdrss_hash.py b/tests/TestSuite_pmdrss_hash.py
index 9eb17cf..309e1b9 100644
--- a/tests/TestSuite_pmdrss_hash.py
+++ b/tests/TestSuite_pmdrss_hash.py
@@ -625,46 +625,6 @@ class TestPmdrssHash(TestCase):
self.dut.send_expect("quit", "# ", 30)
- def test_dynamic_rss_bond_config(self):
-
- # setup testpmd and finish bond config
- self.verify(self.nic in ["columbiaville_25g", "columbiaville_100g","fortville_eagle", "fortville_spirit",
- "fortpark_TLV","fortpark_BASE-T", "fortville_25g", "carlsville", "foxville"],
- "NIC Unsupported: " + str(self.nic))
-
- self.dut.send_expect("%s %s -- -i" % (self.path, self.eal_para), "testpmd> ", 120)
- self.dut.send_expect("set promisc all off", "testpmd> ")
- out = self.dut.send_expect("create bonded device 3 0", "testpmd> ", 30)
- bond_device_id = int(re.search("port \d+", out).group().split(" ")[-1].strip())
-
- self.dut.send_expect("add bonding slave 0 %d" % bond_device_id, "testpmd>", 30)
- self.dut.send_expect("add bonding slave 1 %d" % bond_device_id, "testpmd>", 30)
-
- # get slave device default rss hash algorithm
- out = self.dut.send_expect("get_hash_global_config 0", "testpmd>")
- slave0_hash_function = re.search("Hash function is .+", out).group().split(" ")[-1].strip()
- out = self.dut.send_expect("get_hash_global_config 1", "testpmd>")
- slave1_hash_function = re.search("Hash function is .+", out).group().split(" ")[-1].strip()
- self.verify(slave0_hash_function == slave1_hash_function, "default hash function not match")
-
- new_hash_function = ""
- for hash_function in ["toeplitz", "simple_xor"]:
- if slave0_hash_function[-3:].lower() != hash_function[-3:]:
- new_hash_function = hash_function
- # update slave 0 rss hash algorithm and get slave 0 and slave 1 rss new hash algorithm
- self.dut.send_expect("set_hash_global_config 0 %s ipv4-other enable" % new_hash_function, "testpmd>")
- out = self.dut.send_expect("get_hash_global_config 0", "testpmd>")
- slave0_new_hash_function = re.search("Hash function is .+", out).group().split(" ")[-1].strip()
- out = self.dut.send_expect("get_hash_global_config 1", "testpmd>")
- slave1_new_hash_function = re.search("Hash function is .+", out).group().split(" ")[-1].strip()
-
- self.verify(slave0_new_hash_function == slave1_new_hash_function, "bond slave auto sync hash function failed")
- self.verify(slave0_new_hash_function[-3:].lower() == new_hash_function[-3:], "changed slave hash function failed")
-
- self.dut.send_expect("remove bonding slave 0 %d" % bond_device_id, "testpmd>", 30)
- self.dut.send_expect("remove bonding slave 1 %d" % bond_device_id, "testpmd>", 30)
- self.dut.send_expect("quit","# ", 30)
-
def tear_down(self):
"""
Run after each test case.
--
2.7.4
next reply other threads:[~2021-11-12 2:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-12 2:50 Yu Jiang [this message]
2021-11-23 6:45 ` Peng, Yuan
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=1636685437-11412-1-git-send-email-yux.jiang@intel.com \
--to=yux.jiang@intel.com \
--cc=dts@dpdk.org \
--cc=yuan.peng@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).