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 B0156A0471 for ; Mon, 12 Aug 2019 07:10:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6AF9BDE3; Mon, 12 Aug 2019 07:10:42 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id BBCEC3DC for ; Mon, 12 Aug 2019 07:10:41 +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 x7C5AefE023945 for ; Sun, 11 Aug 2019 22:10:40 -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=EWwBUmKA6tHsgYNnDmdZu6Hf9M2EzRLhI46en+aABeY=; b=IIAgCiSuLabJl4JgboFV4BdCRUe7EZqtc1cFHERrvxJUq9mumrJT7g5wkopV7m4vje0i MUeFCwscRtCqqNH/9mPYlJhk1WO+dCf+tf8JYomcTKGUbtiSJ3r6bPn0lsxoe2nPZb6u e8f/uHmjJjFC6ihGHTMriVURQ/do9gIsZ8g4c8OCTBGv86/2V8cDJslGqN2SHMQNNZ0Q NJQ6GzxPB6uhVrc9QeN7BP9VVvILgLgMlQNof60Gmf++zmfBWMMyqtJzV1ngXu3ipyiz yf+Oupn964BUx7u6nZ7KEvjSZk8qRJuxVb52Pu3AowT5svdMYsydpio6/PbhrOXawF6E Cg== Received: from sc-exch03.marvell.com ([199.233.58.183]) by mx0b-0016f401.pphosted.com with ESMTP id 2u9wem4nrc-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Sun, 11 Aug 2019 22:10:40 -0700 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.1367.3; Sun, 11 Aug 2019 22:10:39 -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; Sun, 11 Aug 2019 22:10:39 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id AB8BB3F7040; Sun, 11 Aug 2019 22:10:37 -0700 (PDT) From: To: CC: , , Praneeth Reddy Date: Mon, 12 Aug 2019 10:40:35 +0530 Message-ID: <1565586635-833-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-12_03:2019-08-09,2019-08-12 signatures=0 Subject: [dts] [PATCH] TestSuite_nvgre.py: Modified packet type 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 For cavium_a064 packet type is L3_IPV4/L3_IPV6 Signed-off-by: Praneeth Reddy --- tests/TestSuite_nvgre.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_nvgre.py b/tests/TestSuite_nvgre.py index aea915c..62aac3a 100644 --- a/tests/TestSuite_nvgre.py +++ b/tests/TestSuite_nvgre.py @@ -162,7 +162,7 @@ class NvgreTestConfig(object): """ Return nvgre packet type """ - if "cavium_a063" in nic: + if (self.nic in ["cavium_a063", "cavium_a064"]): if self.outer_ip_proto !=47: if self.outer_l3_type == 'IPv4': return 'L3_IPV4' @@ -361,7 +361,7 @@ class TestNvgre(TestCase): nvgre Prerequisites """ # this feature only enable in FVL now - if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV", "cavium_a063"]: + if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV", "cavium_a063", "cavium_a064"]: self.compile_switch = 'CONFIG_RTE_LIBRTE_I40E_INC_VECTOR' elif self.nic in ["sageville", "sagepond"]: self.compile_switch = 'CONFIG_RTE_IXGBE_INC_VECTOR' -- 1.8.3.1