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 D36A4A00E6 for ; Fri, 9 Aug 2019 05:56:20 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BB4C22B8C; Fri, 9 Aug 2019 05:56:20 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id BD2E929CB for ; Fri, 9 Aug 2019 05:56:18 +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 x793tLE6008660 for ; Thu, 8 Aug 2019 20:56:15 -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=V2kuLZziwfiI8lUi9M1su0HRQgaqNiVaHGYVB2QVzUo=; b=io4xYJ9X+oEtTOAldfrXv8vBYZqKri23m/LTOQ3hgRwX4gMVcEWssSbZlXvPE7CAxRd1 vk7qpatagbEclZlsf+OxYVay3YU7MJj7H6fCTnVxzCslBjoi1O/vQxwHPCAOlVmUkZ0S uA0kUgsfh+dEMw0AUVIgD+sWmywNdkMxCviBpdLTpp1OCt3R6MtfQQDmnbhpx69KYSND zE2VHFODQlHMXnu0uEfYmKxg7VaAns0j0WfNOrdBheGIXyFc+5EpG41eNZn22K46r4RX BbSWlBjbujnaXWrwrFDOS2Y2vhXRA6nuQh0iX77lZSA1Omz6VwYKFnUuPtZpcfcy9fkB KQ== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2u59sm6fgh-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 08 Aug 2019 20:56:15 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 8 Aug 2019 20:56:14 -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; Thu, 8 Aug 2019 20:56:14 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id 885113F7043; Thu, 8 Aug 2019 20:56:12 -0700 (PDT) From: To: CC: , , Praneeth Reddy Date: Fri, 9 Aug 2019 09:26:09 +0530 Message-ID: <1565322969-1632-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-09_01:2019-08-07,2019-08-09 signatures=0 Subject: [dts] [PATCH] TestSuite_dual_vlan.py: test_vlan_stripq_config is not 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 Added cavium_a064 in not support list Signed-off-by: Praneeth Reddy --- tests/TestSuite_dual_vlan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_dual_vlan.py b/tests/TestSuite_dual_vlan.py index 45343a1..a688096 100644 --- a/tests/TestSuite_dual_vlan.py +++ b/tests/TestSuite_dual_vlan.py @@ -339,7 +339,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", "cavium_a063"], "%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", "cavium_a064"], "%s NIC not support queue vlan strip " % self.nic) self.mode_config(filter="off") self.mode_config(qinq="off") -- 1.8.3.1