From patchwork Wed Jun 22 17:02:33 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 113226 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 715C8A04FD; Wed, 22 Jun 2022 10:38:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6C39B427EE; Wed, 22 Jun 2022 10:38:02 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id ED2E7427EE for ; Wed, 22 Jun 2022 10:38:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655887081; x=1687423081; h=from:to:cc:subject:date:message-id; bh=VXT87Cu4ybhmxnOs4I8BxZRfFcmmg4KZAoKeumtX5gg=; b=jM1TLkLXcMbkReSKwBwNtqIf/pjl64uEo3dAKJ6Lyc7CabZ8GFl3B4mT z+Oe5r+NiLM/66iLxdDs1Vj0JJDSGp16QTAv0OxrNazb/bVN5wyuca4yM dHdg6v16AsQeXcogJ8WPUdBzDUUSURgDFyPC4fleUUWdXpNuf2awWyjpX NHXyOugn1OX+p9FGvuy/BH3f3AsO6FT+GnuFD7Gjopw+NBUIu09q0b+Y9 RU+DIsSFP6Jn/ETTCFwNrCpYByJMlW7pM6JCLcUgNAS6hRauTAht/hw6V 0XAyPsECiQ7O4Sn1lSZnqqpGYqwxTZvQUVdm9Hq2pdi0/aPK9NhThpYw4 A==; X-IronPort-AV: E=McAfee;i="6400,9594,10385"; a="281430338" X-IronPort-AV: E=Sophos;i="5.92,212,1650956400"; d="scan'208";a="281430338" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Jun 2022 01:37:59 -0700 X-IronPort-AV: E=Sophos;i="5.92,212,1650956400"; d="scan'208";a="592077391" Received: from unknown (HELO localhost.localdomain) ([10.239.252.94]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Jun 2022 01:37:57 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Subject: [dts] [PATCH V1] tests/ice_iavf_rss_configure: add a case Date: Wed, 22 Jun 2022 17:02:33 +0000 Message-Id: <20220622170233.24862-1-songx.jiale@intel.com> X-Mailer: git-send-email 2.17.1 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org add a case to test config RSS default. Signed-off-by: Jiale Song --- .../ice_iavf_rss_configure_test_plan.rst | 18 +++++++++++++++++- tests/TestSuite_ice_iavf_rss_configure.py | 6 ++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/test_plans/ice_iavf_rss_configure_test_plan.rst b/test_plans/ice_iavf_rss_configure_test_plan.rst index 86ab957c..886d1eab 100644 --- a/test_plans/ice_iavf_rss_configure_test_plan.rst +++ b/test_plans/ice_iavf_rss_configure_test_plan.rst @@ -60,7 +60,7 @@ Basic test steps * testpmd runtime functions:: - port config all rss ip/udp/tcp/sctp/none/all + port config all rss ip/udp/tcp/sctp/none/all/default * The ``none`` option is equivalent to the ``--disable-rss`` command-line option. * The `` ip`` option is equivalent to the ``--rss-ip`` command-line option. @@ -190,6 +190,22 @@ Basic test steps | +------------------------------+--------------------------+-----------------------------+-------------------------+ | | | | MAC_IPV6_SCTP | different hash value | +-------------------------------+------------------------------+--------------------------+-----------------------------+-------------------------+ + | | ALL | all | MAC_IPV4_PAY | record hash value | + | +------------------------------+--------------------------+-----------------------------+-------------------------+ + | | | | MAC_IPV4_UDP | different hash value | + | +------------------------------+--------------------------+-----------------------------+-------------------------+ + | | | | MAC_IPV4_TCP | different hash value | + | +------------------------------+--------------------------+-----------------------------+-------------------------+ + | | | | MAC_IPV4_SCTP | different hash value | + | default +------------------------------+--------------------------+-----------------------------+-------------------------+ + | | | | MAC_IPV6_PAY | record hash value | + | +------------------------------+--------------------------+-----------------------------+-------------------------+ + | | | | MAC_IPV6_UDP | different hash value | + | +------------------------------+--------------------------+-----------------------------+-------------------------+ + | | | | MAC_IPV6_TCP | different hash value | + | +------------------------------+--------------------------+-----------------------------+-------------------------+ + | | | | MAC_IPV6_SCTP | different hash value | + +-------------------------------+------------------------------+--------------------------+-----------------------------+-------------------------+ | | | | MAC_IPV4_PAY | no hash value | | +------------------------------+--------------------------+-----------------------------+-------------------------+ | | | | MAC_IPV4_SCTP | no hash value | diff --git a/tests/TestSuite_ice_iavf_rss_configure.py b/tests/TestSuite_ice_iavf_rss_configure.py index 8194c81d..b227ca54 100644 --- a/tests/TestSuite_ice_iavf_rss_configure.py +++ b/tests/TestSuite_ice_iavf_rss_configure.py @@ -227,6 +227,8 @@ tvs_mac_disable_rss = eval( .replace("check_hash_different", "check_no_hash") ) +tvs_mac_default = tvs_mac_all + class IAVFRSSConfigureTest(TestCase): def set_up_all(self): @@ -360,6 +362,10 @@ class IAVFRSSConfigureTest(TestCase): self.set_rss_configure(rss_type="none") self.rssprocess.handle_rss_distribute_cases(cases_info=tvs_mac_disable_rss) + def test_iavf_rss_configure_to_default(self): + self.set_rss_configure(rss_type="default") + self.rssprocess.handle_rss_distribute_cases(cases_info=tvs_mac_default) + def test_iavf_rss_command_line_to_ip(self): self.restart_testpmd(cmd_line="--rss-ip") self.rssprocess.handle_rss_distribute_cases(cases_info=tvs_mac_ip)