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 C48E9A32A2 for ; Fri, 25 Oct 2019 08:29:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BC65F1E8C9; Fri, 25 Oct 2019 08:29:23 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id AC0951E87A for ; Fri, 25 Oct 2019 08:29:22 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x9P6MxRk020935 for ; Thu, 24 Oct 2019 23:29:22 -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=4jNp2z79aIzlm/T4Rqrq/zOojVA+P+85u9HCvxD9GzY=; b=Tes6ulFCNtg9bTic917hA48szUQ2SX/giAZsXCfAwR92SbNBBTK4MHWVtTaPyBDcSoLj W4ttWKM5DmBb0G8J8SHRt3sL8yzxHvv/hdHUk3oam3EtVV73KYVVqqIqdyzp30tfTjs/ TubZi4+2H3fkXlWXATEBENpVholOTvtIUsO/RNosd+ZNgJLQwdJ5/XaODIPH2yvESZNy IU2E/JqO2F6j+d7JmQwrIXk0XMB0gTlauNaaM7Cuz6hCcWp5zRYqQFJcuHLeaU9Wa1if 5z6sM3jhvlBNrX1n53GTvbsMR6YGRlFPqbXNJPU2KKoSJBmZ+Mx0YmhTYDscuLTnhnj/ Zw== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0b-0016f401.pphosted.com with ESMTP id 2vt9ujtt54-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 24 Oct 2019 23:29:21 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 24 Oct 2019 23:29:19 -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, 24 Oct 2019 23:29:19 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id 8A5883F703F; Thu, 24 Oct 2019 23:29:18 -0700 (PDT) From: To: CC: , , Praneeth Reddy Date: Fri, 25 Oct 2019 11:59:09 +0530 Message-ID: <1571984949-7319-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:6.0.95,1.0.8 definitions=2019-10-25_04:2019-10-23,2019-10-25 signatures=0 Subject: [dts] [PATCH] TestSuite_generic_filter.py: Max packet lenght supported is 9200 for cavium_a063 and 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 For cavium_a063 and cavium_a064 setting max packet lenght to 9200 Signed-off-by: Praneeth Reddy --- tests/TestSuite_generic_filter.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_generic_filter.py b/tests/TestSuite_generic_filter.py index 4f14fc1..66b95d2 100644 --- a/tests/TestSuite_generic_filter.py +++ b/tests/TestSuite_generic_filter.py @@ -634,8 +634,12 @@ class TestGeneric_filter(TestCase): def test_jumbo_frame_size(self): self.verify(self.nic not in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV", "carlsville"], "%s nic not support this test" % self.nic) - self.pmdout.start_testpmd( - "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1 --mbcache=200 --mbuf-size=2048 --max-pkt-len=9600" % portMask) + if (self.nic in ["cavium_a063", "cavium_a064"]): + self.pmdout.start_testpmd( + "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1 --mbcache=200 --mbuf-size=2048 --max-pkt-len=9200" % portMask) + else: + self.pmdout.start_testpmd( + "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1 --mbcache=200 --mbuf-size=2048 --max-pkt-len=9600" % portMask) port = self.tester.get_local_port(valports[0]) txItf = self.tester.get_interface(port) -- 1.8.3.1