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 370D9A00E6 for ; Fri, 9 Aug 2019 06:29:56 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DB4C2374; Fri, 9 Aug 2019 06:29:55 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 7473D27D for ; Fri, 9 Aug 2019 06:29:54 +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 x794Tr9g008340 for ; Thu, 8 Aug 2019 21:29:53 -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=ugqSWwkw9lRQIa3HSCYlSj6STv9M6pxCU7zOfrcIRy4=; b=j727tjzbeKej+6XSZBrGre6euhDQ1bTRyyeUeF+0F2LzCy3OdxyGRHkYylEB01xLtyuA 6sP34gkFvqJ1HUbwksLSvNC4CoF4W/6sxylD6yqv/bqw0aQdnk3sWKDkNJ2VKaxHZ3/O yfzjTDbTbQSQQICjsQEEE443FyKvHsfwBGhzfWISLFZiATdVB3nYmXPJiCzrT7wcYRdO n7B5p/ibGdlZb6CNin5icWFtAzMn4EWFBfBeyDxLivbSAeFTKDmjhPmUqf3K8dp3iCyw BLMM6+wmbDhmWGzl8s2PlQKEvt1ehQ9EJCJTgTmLy8uea0HDy4az0FHd5bC0hXfHGwVu HQ== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0a-0016f401.pphosted.com with ESMTP id 2u8cqjcn4j-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 08 Aug 2019 21:29:53 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 8 Aug 2019 21:29:52 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 8 Aug 2019 21:29:52 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id C17923F7040; Thu, 8 Aug 2019 21:29:50 -0700 (PDT) From: To: CC: , , Praneeth Reddy Date: Fri, 9 Aug 2019 09:59:48 +0530 Message-ID: <1565324988-4100-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_link_flowctrl.py: pause_frame_fwd is not supported 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 removed pause_frame_fwd parameter and also disabled verifying packets for cavium_a064 Signed-off-by: Praneeth Reddy --- tests/TestSuite_link_flowctrl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_link_flowctrl.py b/tests/TestSuite_link_flowctrl.py index 841951f..4229aa4 100644 --- a/tests/TestSuite_link_flowctrl.py +++ b/tests/TestSuite_link_flowctrl.py @@ -168,7 +168,7 @@ class TestLinkFlowctrl(TestCase): tgenInput = [] tgenInput.append((tester_tx_port, tester_rx_port, "test.pcap")) - if (self.nic in ["cavium_a063"]): + if (self.nic in ["cavium_a063", "cavium_a064"]): self.dut.send_expect("set flow_ctrl rx %s tx %s 300 50 10 1 autoneg %s %d " % ( flow_control, flow_control, @@ -277,7 +277,7 @@ class TestLinkFlowctrl(TestCase): PAUSE Frames must not be received by testpmd """ - if (self.nic in ["cavium_a063"]): + if (self.nic in ["cavium_a063", "cavium_a064"]): pause_frames = [self.build_pause_frame(0), self.build_pause_frame(1)] else: @@ -296,7 +296,7 @@ class TestLinkFlowctrl(TestCase): PAUSE Frames must not be received by testpmd """ - if (self.nic in ["cavium_a063"]): + if (self.nic in ["cavium_a063", "cavium_a064"]): pause_frames = [self.build_pause_frame(0), self.build_pause_frame(1)] else: -- 1.8.3.1