From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4CD68A00C4; Fri, 6 Jan 2023 11:28:39 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 49C3940DFF; Fri, 6 Jan 2023 11:28:39 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 294C7400EF for ; Fri, 6 Jan 2023 11:28:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1673000918; x=1704536918; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=0n4Kw42vmo+X/Ou9cmm7w6CK7+pW0M9ENisD9kVh4RE=; b=k1CE/Vo9bP63EEMkcdbeocS4L5Q73DaBzm5aC8h7ExU/eUCgFA2xJmdn gtneiQF5/ddrYL+lYXgEAbDDYJQXG3maEgmV39+qPv9mHLL7OP1e1OW6i w3Rbjl+8gDo9iFWFGr4aFI58HIwnWyVqn7fBIZJANVnGsxYcH8rluQt+3 B55mKIF6ZGHk3pDbod43G5sZ2eiqZGsX0c6uLglecBl7WENGZVte0/7t3 oQdMS0AOeCp4KHn6cd8xZabTDvC9IssvphHfTk5PXOdd177x2CNaQpNtN BW0cy4P18T/6MmmkQUE8xgNMvWzbObq0Pqzg0JjLxMD+ehxmULWyBbsfc Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10581"; a="310241410" X-IronPort-AV: E=Sophos;i="5.96,304,1665471600"; d="scan'208";a="310241410" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Jan 2023 02:28:37 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10581"; a="657852847" X-IronPort-AV: E=Sophos;i="5.96,304,1665471600"; d="scan'208";a="657852847" Received: from unknown (HELO localhost.localdomain) ([10.239.252.93]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Jan 2023 02:28:36 -0800 From: Hongbo Li To: dts@dpdk.org Cc: Hongbo Li Subject: [dts][PATCH V1 2/2] tests/dynamic_queue: skip the dynamic_queue/test_rxq_chgring_setup and test_txq_chgring_setup on ice Date: Sat, 7 Jan 2023 02:48:47 +0800 Message-Id: <20230106184847.4350-2-hongbox.li@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20230106184847.4350-1-hongbox.li@intel.com> References: <20230106184847.4350-1-hongbox.li@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 skip setup command on ice, according to the conclusion of the developer, ice does not support the setup queue command Signed-off-by: Hongbo Li --- tests/TestSuite_dynamic_queue.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_dynamic_queue.py b/tests/TestSuite_dynamic_queue.py index 5a826bd1..e6bad6c9 100644 --- a/tests/TestSuite_dynamic_queue.py +++ b/tests/TestSuite_dynamic_queue.py @@ -27,6 +27,7 @@ class TestDynamicQueue(TestCase): tester_port = self.tester.get_local_port(self.used_dut_port) self.tester_intf = self.tester.get_interface(tester_port) self.dut_testpmd = PmdOutput(self.dut) + self.is_800_series = self.is_eth_series_nic(800) def set_up(self): # IntelĀ® Ethernet Converged Network Adapter XL710-QDA1 needs more cores to run properly @@ -127,7 +128,7 @@ class TestDynamicQueue(TestCase): ) for i in range(test_loop): - if chgflag == 0: + if chgflag == 0 and not self.is_800_series: self.dut_testpmd.execute_cmd("port 0 rxq %d setup" % queue[i]) self.dut_testpmd.execute_cmd("port 0 rxq %d start" % queue[i]) @@ -185,7 +186,7 @@ class TestDynamicQueue(TestCase): chk_qringsize == chg_qringsize, "Fail to change ring size at runtime!", ) - if chgflag == 0: + if chgflag == 0 and not self.is_800_series: self.dut_testpmd.execute_cmd("port 0 txq %d setup" % queue) self.dut_testpmd.execute_cmd("port 0 txq %d start" % queue) -- 2.17.1