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 667CB423A1; Tue, 10 Jan 2023 08:28:38 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6471E40E6E; Tue, 10 Jan 2023 08:28:38 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 16C4D40689 for ; Tue, 10 Jan 2023 08:28:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1673335716; x=1704871716; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=c7LpNbv7a8DkW0E7OeRFZUzgbekRts74quqVil4VrBI=; b=jiVRA4wMa+3hx5Ta2I+EDXoGum03q8D96VxFazrq6iKz3PwvmI/DSY2F ZQsqqmPagGfZIVW7Woqc9FnJ+WecWKgtPjkPVFRiF30OxV5pek/BffqMK +JiyO7+OVz5fugT1MdOc11D3FGzjwpYpsCw8hukCCsKNUyleqdMG5FnEQ lTuGroSA+lDJPgfzPJHBpKqZRWTKuSYLu2ACQrZqkgLeLs0npbTDgC3SV Vk5PXpJZCO83OsqOfH5r08loXEFwfIUSm9ZHHaU7AlDMK9qmJdDBgAE5X lWjdVE+jvkI4YF3tuteWqf8MlnucmSxqh6e7Y5JhiZGI8FLxi5E4ZyPLY g==; X-IronPort-AV: E=McAfee;i="6500,9779,10585"; a="306596358" X-IronPort-AV: E=Sophos;i="5.96,314,1665471600"; d="scan'208";a="306596358" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Jan 2023 23:28:35 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10585"; a="634505257" X-IronPort-AV: E=Sophos;i="5.96,314,1665471600"; d="scan'208";a="634505257" Received: from unknown (HELO cvl_100g_103.icx.intel.com) ([10.239.252.93]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Jan 2023 23:28:34 -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:48:14 +0800 Message-Id: <20230110154814.18617-2-hongbox.li@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20230110154814.18617-1-hongbox.li@intel.com> References: <20230110154814.18617-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