From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CD833A00E6 for ; Fri, 9 Aug 2019 06:14:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5CAD0A69; Fri, 9 Aug 2019 06:14:07 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 26D82A69 for ; Fri, 9 Aug 2019 06:14:05 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x7949xUC009312 for ; Thu, 8 Aug 2019 21:14:04 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-type; s=pfpt0818; bh=fWrJ8lhodMGMisjCtHZZiceqVETNhm1mneOmqPH2O8s=; b=W1p5dJcXaMRA2m9i/6+GRTksNL/AL3hbCajkSCco78q0u3I6l5SwESCSm0jj2jkAJ/4d OnQJnGVweL8iAcbleZbIIp1SesKMC5qWKZz2UF25dHSxZifSS9dN/+CAotTe/O78TIdW uCnMTUgYFYWU0VD0wOyxPQ+CJCLt2OgL4WkVim7xsEHKHEo5ug6zYkqrr/qQOjxerdvD dXHC1FJhrbrvp5fYbcQxXw4RsU+FR7SK+X5A5za1DoGdcsEAcSGtIWvNN8dZaJEShV/T Sm5cLMOGAuNg+1D3lS2Uca9KNJ1HvWLJhCkbN8fItttrDz+kI3C7djrSu22D5J7Oem6N RQ== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0a-0016f401.pphosted.com with ESMTP id 2u8cqjckrw-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 08 Aug 2019 21:14:04 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 8 Aug 2019 21:14:03 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 8 Aug 2019 21:14:03 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id 2848F3F703F; Thu, 8 Aug 2019 21:14:01 -0700 (PDT) From: To: CC: , , Praneeth Reddy Date: Fri, 9 Aug 2019 09:43:59 +0530 Message-ID: <1565324039-2755-1-git-send-email-nareddy@marvell.com> X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:5.22.84,1.0.8 definitions=2019-08-09_01:2019-08-07,2019-08-09 signatures=0 Subject: [dts] [PATCH] TestSuite_dynamic_queue.py: max_pools parameter is required for cavium_a064 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 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 Sender: "dts" From: Praneeth Reddy To assign tx and rx queues max_pools parameter is required for cavium_a064 Signed-off-by: Praneeth Reddy --- tests/TestSuite_dynamic_queue.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_dynamic_queue.py b/tests/TestSuite_dynamic_queue.py index 89373bc..dd05eab 100644 --- a/tests/TestSuite_dynamic_queue.py +++ b/tests/TestSuite_dynamic_queue.py @@ -33,7 +33,7 @@ class TestDynamicQueue(TestCase): self.dut_testpmd.start_testpmd( "all", "--port-topology=chained --txq=%s --rxq=%s" % (self.PF_QUEUE, self.PF_QUEUE)) - elif (self.nic in ["cavium_a063"]): + elif (self.nic in ["cavium_a063", "cavium_a064"]): eal_opts = "" for port in self.dut_ports: eal_opts += "-w %s,max_pools=256 "%(self.dut.get_port_pci(self.dut_ports[port])) @@ -152,7 +152,7 @@ class TestDynamicQueue(TestCase): out = self.dut_testpmd.execute_cmd('stop') tx_num = qringsize - 1 - if self.nic == "cavium_a063": + if (self.nic in ["cavium_a063", "cavium_a064"]): self.verify("TX-packets: 0" in out, "Fail to stop txq at runtime") else: -- 1.8.3.1