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 B6F7CA05D3 for ; Tue, 23 Apr 2019 08:27:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A5D801B454; Tue, 23 Apr 2019 08:27:34 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id B6EC21B0F7 for ; Tue, 23 Apr 2019 08:27:33 +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 x3N6QgfT028780 for ; Mon, 22 Apr 2019 23:27:33 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=pfpt0818; bh=N9yvzUEnH1+IpFlXNkgp6bzQglkTkinV+A4idPDueHk=; b=bHBRjFjdGhHlN0/TPj+KvVDFOhtQOCl8BqhoIVx3r2AYrMYB+4p+eDfwUDuJJu7LNGks yEMmloxAi634lLJSeYu8xvuKSTAwzuWUoQc1XGTcNietGTQf8qOrcjjWcLVfV4nVBXHz 8WCHareU46/kmP5BAtSNTrCMvw+v/zUu7mjDzkOCC5m4no8jHqAMDBYh1mrOb8t9wIBv +5voOFTUyXmb9ksKFMeRY3KLF0ZKQCKmaKI7pydL4AfQbk2QjxbQN6ERK6NZBFfh99uD nU7R15oMGnXSrXdPu1obWXbZlYb4IWBRhfap87MoQA1CJ7ELQ9fZGyyLSvgJgqtuGui8 8Q== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2s0tjrdqtq-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 22 Apr 2019 23:27:32 -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:27:31 -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:27:31 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id 3A9E53F7040; Mon, 22 Apr 2019 23:27:30 -0700 (PDT) From: To: CC: , , Praneeth Reddy Date: Tue, 23 Apr 2019 11:57:27 +0530 Message-ID: <1556000847-24681-1-git-send-email-nareddy@marvell.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1555999456-23742-1-git-send-email-nareddy@marvell.com> References: <1555999456-23742-1-git-send-email-nareddy@marvell.com> 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 v2] 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..239cd89 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