From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 822F4A05D3 for ; Tue, 23 Apr 2019 08:04:24 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 74B3A1B4D5; Tue, 23 Apr 2019 08:04:24 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 3C9AF293B for ; Tue, 23 Apr 2019 08:04:22 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x3N5tREV004250 for ; Mon, 22 Apr 2019 23:04:21 -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=q238i4fibVXZLy4Q3Uvd/58XDyPbu9h3Uh+MNoAtHyI=; b=vpsXK/MinmQ/AQ/OyZh5vgh33Qv4HZ4eixXUoz5e6Hp9F5iOvm809CxNgP8pQP4/2/Ez Ih4k2+06GvirVaDsu0AHNPMAG7fDLj+oWtHRHHdxm6wQxXTfQty6hTT1JBCTDAC5O3kT uZsHM8S8gZZEFJMFbq6YSN0dVrK5X/xcEJL/TsvfFaR3wpaYxzBvp9xLiNG1faG5j0Bu j3590pdozBV3Jzb7NKzO2K3sap7HZL9xNan1OIMRxE/wkk4IuqjZi7yWE9E+ABoyhPC1 Y/FXwYbdvOuc6kVsgxKaAinUyExReK5hsKhcOuZijBTEk1tF5wFd5A3wOG3IGfXLfXNS zg== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2s0tjrdnyr-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 22 Apr 2019 23:04:21 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Mon, 22 Apr 2019 23:04:20 -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, 22 Apr 2019 23:04:20 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id D00D13F703F; Mon, 22 Apr 2019 23:04:18 -0700 (PDT) From: To: CC: , , Date: Tue, 23 Apr 2019 11:34:16 +0530 Message-ID: <1555999456-23742-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:, , definitions=2019-04-22_01:, , signatures=0 Subject: [dts] [PATCH] TestSuite_dual_vlan.py : vlan_stripq_config is not supported for cavium_a063 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 rx_vlan_strip_set_on_queue is not supported for cavium_a063. Adding cavium_a063 to unsupported to list. Signed-off-by: Praneeth Reddy --- conf/test_case_checklist.json | 3 ++- tests/TestSuite_dual_vlan.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json index a1aa90b..caa091d 100644 --- a/conf/test_case_checklist.json +++ b/conf/test_case_checklist.json @@ -265,7 +265,8 @@ "kawela_4", "springville", "fortville_25g", - "fortpark_TLV" + "fortpark_TLV", ++ "cavium_a063" ], "Target": [ "ALL" diff --git a/tests/TestSuite_dual_vlan.py b/tests/TestSuite_dual_vlan.py index 405a5a2..63bb715 100644 --- a/tests/TestSuite_dual_vlan.py +++ b/tests/TestSuite_dual_vlan.py @@ -338,7 +338,7 @@ class TestDualVlan(TestCase): """ Enable/Disable VLAN packets strip on queue """ - self.verify(self.nic not in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV"], "%s NIC not support queue vlan strip " % self.nic) + self.verify(self.nic not in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV", "cavium_a063"], "%s NIC not support queue vlan strip " % self.nic) self.mode_config(filter="off") self.mode_config(qinq="off") -- 1.8.3.1