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 E44F4A04F3; Mon, 16 Dec 2019 07:32:53 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D06E51C114; Mon, 16 Dec 2019 07:32:53 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 971371C10E for ; Mon, 16 Dec 2019 07:32:51 +0100 (CET) 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 xBG6UaJ0012679 for ; Sun, 15 Dec 2019 22:32:50 -0800 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=Fc2CGy3k8mY8kPP3zFl90bBGTj1OWe2El//nE6CCrLM=; b=ReFcOyUo0m2/0UZB6LIxx+0kodc/cLJFo/4NFses3Ncwuch9QFfahXWjeSOVEBTec7Mb W+hWPFtqXiebRu2XBjY3W1DzzHe5knL5oyBpZUqlPsaSD3/q8ITFDTDX5VUloagNraxB cPcKr0tzZ+g7rgGCqOmlxZce2jQMkEQ4DCh36BtfijEcEpL4K5taI9sdzDwiYIBSGLkY ttQZBPoe6VSt8YemaTELn7u+zyKfJJS/rg2F8vcp7DG2DXJMopV8KgxLoKr4DJBDBkZj 0WE7/8qeV6FATzEEFGp0XCx8+oPgLJg2ruIaxKKW/BbkfkcBNwsrwzruEUTkNnEd924e ag== Received: from sc-exch03.marvell.com ([199.233.58.183]) by mx0a-0016f401.pphosted.com with ESMTP id 2wvwyv5b5k-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Sun, 15 Dec 2019 22:32:50 -0800 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Sun, 15 Dec 2019 22:32:49 -0800 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.1497.2 via Frontend Transport; Sun, 15 Dec 2019 22:32:49 -0800 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id 6FC593F7040; Sun, 15 Dec 2019 22:32:48 -0800 (PST) From: To: CC: , Praneeth Reddy Date: Mon, 16 Dec 2019 12:02:44 +0530 Message-ID: <1576477964-13578-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,18.0.572 definitions=2019-12-16_01:2019-12-16,2019-12-16 signatures=0 Subject: [dts] [PATCH] TestSuite_ieee1588.py: ptype supported offload feature is disabled in 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 ptype supported offload feature is disabled, enabling ptype mask for cavium_a063 and cavium_a064 in DTS script Signed-off-by: Praneeth Reddy --- tests/TestSuite_ieee1588.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TestSuite_ieee1588.py b/tests/TestSuite_ieee1588.py index f3fea42..19f17d1 100644 --- a/tests/TestSuite_ieee1588.py +++ b/tests/TestSuite_ieee1588.py @@ -76,6 +76,8 @@ class TestIeee1588(TestCase): IEEE1588 Enable test case. """ self.dut.send_expect("set fwd ieee1588", "testpmd> ", 10) + if (self.nic in ["cavium_a063", "cavium_a064"]): + self.dut.send_expect("set port 0 ptype_mask 0xf", "testpmd> ", 10) # Waiting for 'testpmd> ' Fails due to log messages, "Received non PTP # packet", in the output self.dut.send_expect("start", ">", 10) -- 1.8.3.1