test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] iavf_flexible_descriptor:sync plan and case to adapt dpdk code changed
@ 2021-10-28 18:02 Zhimin Huang
  2021-10-28  9:37 ` Huang, ZhiminX
  2021-10-28  9:44 ` David Marchand
  0 siblings, 2 replies; 3+ messages in thread
From: Zhimin Huang @ 2021-10-28 18:02 UTC (permalink / raw)
  To: dts; +Cc: Zhimin Huang

according to dpdk commit daa02b5cddbb8e11b31d41e2bf7bb1ae64dcae2f code changed.
fix code to adapt dpdk changed,and add check function after modify code in case.

Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
 .../iavf_flexible_descriptor_test_plan.rst    |  2 +-
 tests/TestSuite_iavf_flexible_descriptor.py   | 23 ++++++++++++++++++-
 2 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/test_plans/iavf_flexible_descriptor_test_plan.rst b/test_plans/iavf_flexible_descriptor_test_plan.rst
index d03fbe41..9cf0d713 100644
--- a/test_plans/iavf_flexible_descriptor_test_plan.rst
+++ b/test_plans/iavf_flexible_descriptor_test_plan.rst
@@ -106,7 +106,7 @@ The default DPDK don't support dump flexible descriptor fields, so need to patch
       (int)mb->nb_segs);
       ol_flags = mb->ol_flags;
       +                rte_pmd_ifd_dump_proto_xtr_metadata(mb);
-      if (ol_flags & PKT_RX_RSS_HASH) {
+      if (ol_flags & RTE_MBUF_F_RX_RSS_HASH) {
       MKDUMPSTR(print_buf, buf_size, cur_len,
       " - RSS hash=0x%x",
 
diff --git a/tests/TestSuite_iavf_flexible_descriptor.py b/tests/TestSuite_iavf_flexible_descriptor.py
index 721dbb53..2da892c1 100644
--- a/tests/TestSuite_iavf_flexible_descriptor.py
+++ b/tests/TestSuite_iavf_flexible_descriptor.py
@@ -51,11 +51,32 @@ class TestIavfFlexibleDescriptor(TestCase, FlexibleRxdBase):
             "cp ./app/test-pmd/util.c .",
             r"""sed -i "/if dpdk_conf.has('RTE_NET_IXGBE')/i\if dpdk_conf.has('RTE_NET_ICE')\n\tdeps += ['net_ice', 'net_iavf']\nendif" app/test-pmd/meson.build""",
             "sed -i '/#include <rte_flow.h>/a\#include <rte_pmd_iavf.h>' app/test-pmd/util.c",
-            "sed -i '/if (ol_flags & PKT_RX_RSS_HASH)/i\                rte_pmd_ifd_dump_proto_xtr_metadata(mb);' app/test-pmd/util.c",
+            "sed -i '/if (ol_flags & RTE_MBUF_F_RX_RSS_HASH)/i\                rte_pmd_ifd_dump_proto_xtr_metadata(mb);' app/test-pmd/util.c",
         ]
         [self.dut.send_expect(cmd, "#", 15, alt_session=True) for cmd in cmds]
+        check_point = {
+            "app/test-pmd/meson.build": [
+                "deps += ['net_ice', 'net_iavf']",
+                "if dpdk_conf.has('RTE_NET_ICE')"
+            ],
+            "app/test-pmd/util.c": [
+                "#include <rte_pmd_iavf.h>",
+                "rte_pmd_ifd_dump_proto_xtr_metadata(mb);"
+            ]
+        }
+        for path, cmds in check_point.items():
+            for cmd in cmds:
+                self.check_modify_dpdk_code(cmd, path)
         self.dut.build_install_dpdk(self.dut.target)
 
+    def check_modify_dpdk_code(self, cmd, path):
+        """
+        check dpdk code modify successful
+        """
+        check_cmd = """grep "{}" {}""".format(cmd, path)
+        out = self.dut.send_expect(check_cmd, "# ", 15, alt_session=True, trim_whitespace=False)
+        self.verify(out, "The dpdk code not changed")
+
     def restore_compilation(self):
         """
          Resume editing operation.
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-10-28  9:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-28 18:02 [dts] [PATCH V1] iavf_flexible_descriptor:sync plan and case to adapt dpdk code changed Zhimin Huang
2021-10-28  9:37 ` Huang, ZhiminX
2021-10-28  9:44 ` David Marchand

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).