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 29CE0423A2; Tue, 10 Jan 2023 08:34:05 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2840340691; Tue, 10 Jan 2023 08:34:05 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id DDBEB40689 for ; Tue, 10 Jan 2023 08:34:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1673336044; x=1704872044; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=c7LpNbv7a8DkW0E7OeRFZUzgbekRts74quqVil4VrBI=; b=VAiGhLKvSay7MZ1xuTPki/t+2LljqfgenBY6UNV5d6gAd0UA9v3/CEQs gdv1SUoGYF9vH0s/egWtL33fDbXHnMo0ABRiiWJNdi7hBXahx7BkqB+02 kEaDRJuyjBtgjn1FOSFUGfGLbvLLa7jlLY0KwAHJK2tU+OCXACogcloyc l6eXZof7GaZv/UtYQaoSVIQ7RURgIZraxrDdlfSbSRyCRwcxF5JHae8V7 KMxjjTtRKq4aIJUtLRPjTmr51M8lUwX7ivtx5qfFM0U3y63dewA76C6rc ilrHyqbZKbD+TBQM2CVTPsM/4v+e4ta2EzMhcbnljttjBdNKMTd0fkVIZ A==; X-IronPort-AV: E=McAfee;i="6500,9779,10585"; a="325093100" X-IronPort-AV: E=Sophos;i="5.96,314,1665471600"; d="scan'208";a="325093100" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Jan 2023 23:34:03 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10585"; a="830903560" X-IronPort-AV: E=Sophos;i="5.96,314,1665471600"; d="scan'208";a="830903560" Received: from unknown (HELO cvl_100g_103.icx.intel.com) ([10.239.252.93]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Jan 2023 23:34:01 -0800 From: Hongbo Li To: dts@dpdk.org Cc: Hongbo Li Subject: [dts][PATCH V2 2/2] tests/dynamic_queue: skip the dynamic_queue/test_rxq_chgring_setup and test_txq_chgring_setup on ice Date: Tue, 10 Jan 2023 23:53:41 +0800 Message-Id: <20230110155341.18701-2-hongbox.li@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20230110155341.18701-1-hongbox.li@intel.com> References: <20230110155341.18701-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 the "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