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 4A8DCA0471 for ; Mon, 12 Aug 2019 10:05:10 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 080271252; Mon, 12 Aug 2019 10:05:10 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 6901A2C5 for ; Mon, 12 Aug 2019 10:05:08 +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 x7C853ss018496 for ; Mon, 12 Aug 2019 01:05:07 -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=4Jxi3saey3DHiYUPft5/w4+95VmTbSwHDw70FthOgGo=; b=KwY+YkocQJ/UpkO9cijCJn7f/ToMc9Zzpa3dZvwAH546GFwpjfj32jcrsJKnBhzB6qyE CVrzpBTIlm08/5EqVFJUXxO4sxRbsHhCfiBAQUUaXLfm4EoVfiCZulw7mqk8QR7TEY2E 8y4UD3+Ou35lTz0/rjQEFQbQNGy589zrsMPp0QVOOfYl7eAdSSQRdIuM1ItwOJTu8hA9 VoL1YMDhJ7FOkPcnagIeHnqGphi0KutX6yg4sMdCaOmBRXv9jF6xalO7NvWfS9dGMnrN M7AFo4L5W6O7ozm4IOh/J/mEEFeLU9kJKm4+gRhxm5/7VllfTo9sz8gDgWZO4rnQ7wa6 rA== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0a-0016f401.pphosted.com with ESMTP id 2u9u9qdkc9-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 12 Aug 2019 01:05:07 -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; Mon, 12 Aug 2019 01:05:06 -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; Mon, 12 Aug 2019 01:05:06 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id D98A93F7041; Mon, 12 Aug 2019 01:05:04 -0700 (PDT) From: To: CC: , , Praneeth Reddy Date: Mon, 12 Aug 2019 13:35:02 +0530 Message-ID: <1565597102-7273-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_04:2019-08-09,2019-08-12 signatures=0 Subject: [dts] [PATCH] TestSuite_vlan_ethertype_config.py: only tpid 0x8100 is 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 Only tpid 0x8100 is supported for cavium_a064 Signed-off-by: Praneeth Reddy --- tests/TestSuite_vlan_ethertype_config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/TestSuite_vlan_ethertype_config.py b/tests/TestSuite_vlan_ethertype_config.py index 1cb1083..16063a4 100644 --- a/tests/TestSuite_vlan_ethertype_config.py +++ b/tests/TestSuite_vlan_ethertype_config.py @@ -199,7 +199,7 @@ class TestVlanEthertypeConfig(TestCase): dutRxPortId, "testpmd> ", 20) rx_vlans = [1, random_vlan, MAX_VLAN] # caium_a063 card support only default '0x8100' tpid in rx mode - if self.nic == "cavium_a063": + if (self.nic in ["cavium_a063", "cavium_a064"]): tpids = [0x8100] else: tpids = [0x8100, 0xA100] @@ -231,7 +231,7 @@ class TestVlanEthertypeConfig(TestCase): self.dut.send_expect("start", "testpmd> ") # caium_a063 card support only default '0x8100' tpid in rx mode - if self.nic == "cavium_a063": + if (self.nic in ["cavium_a063", "cavium_a064"]): tpids = [0x8100] else: tpids = [0x8100, 0xA100] @@ -263,7 +263,7 @@ class TestVlanEthertypeConfig(TestCase): self.dut.send_expect("start", "testpmd> ", 20) # caium_a063 card support only default '0x8100' tpid in rx mode - if self.nic == "cavium_a063": + if (self.nic in ["cavium_a063", "cavium_a064"]): tpids = [0x8100] else: tpids = [0x8100, 0xA100] @@ -292,7 +292,7 @@ class TestVlanEthertypeConfig(TestCase): self.dut.send_expect("start", "testpmd> ") # caium_a063 card support only default '0x8100' tpid in rx mode - if self.nic == "cavium_a063": + if (self.nic in ["cavium_a063", "cavium_a064"]): tpids = [0x8100] else: tpids = [0x8100, 0xA100] -- 1.8.3.1