From patchwork Mon Aug 15 10:27:42 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 115099 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 8F2EEA00C3; Mon, 15 Aug 2022 04:10:13 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7377B40143; Mon, 15 Aug 2022 04:10:13 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 64D17400EF for ; Mon, 15 Aug 2022 04:10:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1660529411; x=1692065411; h=from:to:cc:subject:date:message-id; bh=NiBLqvtA30oQ+WDtuddIgIClK3phpWiLMgh5k0CnTVg=; b=k/8klYcjuD3p1g1JhQ0I3aUD6Wwy0uNPxU1V4l7efABmm9fhmw0t3vVl 6MaCfIZZyv6EnbEFnUfZ9kSolO7cy6bLSVSBxnOG4n0TOKZ1XF3MPvXQi GLV2K22JnhEIRgn5EmD6iIDKSpw5Qmlfm30SaWlf8WgMM48FBUUqJ9Ha1 BmgHPFyUpnErBinu99m4wMLdwwIHcahwJau8GP92wJayn3cSlWy/0sfG6 JnXWPwsEyZk37EwGrQ+2tr4VRMNHES7P7cARokDxrm11VwUzlkCPYYlfg dhLUVa9p8Ufa0oyGs7CBAUO8hFSrSDFF+imd3ThTeZrTTCIpYmebSd2HH g==; X-IronPort-AV: E=McAfee;i="6400,9594,10439"; a="289442613" X-IronPort-AV: E=Sophos;i="5.93,237,1654585200"; d="scan'208";a="289442613" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Aug 2022 19:10:09 -0700 X-IronPort-AV: E=Sophos;i="5.93,237,1654585200"; d="scan'208";a="635317332" Received: from unknown (HELO localhost.localdomain) ([10.239.252.94]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Aug 2022 19:10:08 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Subject: [dts] [PATCH V1] tests/ice_advanced_rss: modify the check queue group to match the rule queue group Date: Mon, 15 Aug 2022 10:27:42 +0000 Message-Id: <20220815102742.23820-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 the rule queue group not match the check queue group, so modify the check queues to match the rule queues. Signed-off-by: Jiale Song Tested-by: Weiyuan Li Acked-by: Lijuan Tu --- tests/TestSuite_ice_advanced_rss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_ice_advanced_rss.py b/tests/TestSuite_ice_advanced_rss.py index 0c246cca..6a64c73d 100644 --- a/tests/TestSuite_ice_advanced_rss.py +++ b/tests/TestSuite_ice_advanced_rss.py @@ -5725,7 +5725,7 @@ class AdvancedRSSTest(TestCase): ) out = fdirprocess.send_pkt_get_output(pkt_list[0]) hashes, queues = self.rssprocess.get_hash_and_queues(out) - check_mark(out, pkt_num=1, check_param={"port_id": 0, "queue": [1, 2, 3, 4]}) + check_mark(out, pkt_num=1, check_param={"port_id": 0, "queue": [0, 1, 2, 3]}) self.logger.info("test_hash: {} post_hash: {}".format(hashes_0, hashes)) self.verify(hashes == hashes_0, "expect hash values not changed")