From patchwork Tue Jul 5 06:10:12 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 113666 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 69390A0542; Tue, 5 Jul 2022 08:47:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2A63A410E5; Tue, 5 Jul 2022 08:47:35 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 676BE4021D for ; Tue, 5 Jul 2022 08:47:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1657003653; x=1688539653; h=from:to:cc:subject:date:message-id; bh=HGAwbJUh5na1dA7mAWcvb5CXTEkPTogo4QY3TNKYTBo=; b=gTcZlPU4DvpTfpd6+NQ8/0FfDZlJEE7FKywzAoIJBdEXJOYUo10Gx2Jj psBphhP2PzOrtQzC3ZHIAfEdLIFkvJ8+cGaHvtinmUkFjztWXmePBhcDh SNbESYCTZ9ia/FppRC7iLjluxck8rzA4Ahxlo9GAzT16uqrzDujoag6nv CTfyxdwvErjWnbjGVas0+fCNoRRc73eDQ8erhHfOG+k5AKM8OhL5J+j3v a+he4L6dV1iiBuPVUCuSVw7JI/odQZ0p7uCByAqSQJJace7gSjsY3UE+3 +YUlIllUJ0TDOv6SHKx0Klo5Wb1/KMWTaGjVvT1JtQ8c5WYsyKEK5FxaC Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10398"; a="263691717" X-IronPort-AV: E=Sophos;i="5.92,245,1650956400"; d="scan'208";a="263691717" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jul 2022 23:47:32 -0700 X-IronPort-AV: E=Sophos;i="5.92,245,1650956400"; d="scan'208";a="567484037" Received: from unknown (HELO localhost.localdomain) ([10.239.252.99]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jul 2022 23:47:31 -0700 From: Lingli Chen To: dts@dpdk.org Cc: Lingli Chen Subject: [dts][PATCH V2 1/2] tests/dynamic_queue: modify script according to dpdk code change Date: Tue, 5 Jul 2022 02:10:12 -0400 Message-Id: <20220705061013.33315-1-linglix.chen@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 According to dpdk commit 3c4426db54fc(app/testpmd: do not poll stopped queues) modify dynamic_queue: Tx stopped queue not display Signed-off-by: Lingli Chen --- test_plans/dynamic_queue_test_plan.rst | 4 ++-- tests/TestSuite_dynamic_queue.py | 15 ++++++++------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/test_plans/dynamic_queue_test_plan.rst b/test_plans/dynamic_queue_test_plan.rst index 96cfcb8a..d22068a0 100644 --- a/test_plans/dynamic_queue_test_plan.rst +++ b/test_plans/dynamic_queue_test_plan.rst @@ -94,7 +94,7 @@ Stop one Tx queue on port 0:: Set txonly forward, start testpmd -Start testpmd, then stop, check this stopped queue only transmits 255 packets +Start testpmd, then stop, check this stopped queue not display Setup this stopped queue on the port:: @@ -162,7 +162,7 @@ Stop one Tx queue on port 0:: Set txonly forward, start testpmd -Start testpmd, then stop, check this stopped queue only transmits 255 packets +Start testpmd, then stop, check this stopped queue not display Reconfigure ring size as 512 for the stopped queues on port 0:: diff --git a/tests/TestSuite_dynamic_queue.py b/tests/TestSuite_dynamic_queue.py index ebbe869c..5a826bd1 100644 --- a/tests/TestSuite_dynamic_queue.py +++ b/tests/TestSuite_dynamic_queue.py @@ -163,13 +163,14 @@ class TestDynamicQueue(TestCase): out = self.dut_testpmd.execute_cmd("stop") tx_num = qringsize - 1 - if self.nic in ["cavium_a063", "cavium_a064"]: - self.verify("TX-packets: 0" in out, "Fail to stop txq at runtime") - else: - # Check Tx stopped queue only transmits qringsize-1 packets - self.verify( - "TX-packets: %d" % tx_num in out, "Fail to stop txq at runtime" - ) + # check rxq start successful + self.verify("TX-packets:" in out, "txq start failed") + # check Tx stopped queue not display + self.verify( + "TX Port= 0/Queue={:>2}".format(queue) not in out, + "Fail to stop txq at runtime", + ) + if chgflag == 1: chg_qringsize = qringsize % 1024 + 256 if qringsize == 512: