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 B0F7FA2EDB for ; Fri, 6 Sep 2019 07:08:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A7FE61F0FB; Fri, 6 Sep 2019 07:08:08 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 08AF91F0F1 for ; Fri, 6 Sep 2019 07:08:06 +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 x8655aE3008551 for ; Thu, 5 Sep 2019 22:08:06 -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=20Kvpe2tvuLS0zlUVTFGAbZlB7vTYKO+Fmo1G2tVzNg=; b=C3hAUJi6swXd83HumcYDQRkyQ/759qQVfI98euf9y6wQMOs6rVBy5IbQaLiAjHD4+Yup v62NvqCk4/ucQBm6tdUv7EBmn1dnSUd36oMOHTVpB0AVOevWJ+IAmycqlEdFEZzTcxWt brgFBaNFNvFeULHd7Nu9LCI+TuiltVljvHeHxDc/aKv9qTXjKs6bLHoPH0dHBHkF1RAB BcUs2N62ivdbKcwbLgh6nZn5InslSPlwsPOKIy3Psb6TQJzhaz+zTwl8hN3jb40sWtSr XkPyORw2m2n5+6u3F0QQ9H+8oJ0rVUm4pkaxymdygbyEViPIEL9BFSWCEzU/rOU/Q9hj uQ== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0b-0016f401.pphosted.com with ESMTP id 2uqrdmnphg-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 05 Sep 2019 22:08:06 -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; Thu, 5 Sep 2019 22:08:04 -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; Thu, 5 Sep 2019 22:08:04 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id 12BBF3F7040; Thu, 5 Sep 2019 22:08:01 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Fri, 6 Sep 2019 10:37:57 +0530 Message-ID: <1567746477-22414-1-git-send-email-pvukkisala@marvell.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.70,1.0.8 definitions=2019-09-06_03:2019-09-04,2019-09-06 signatures=0 Subject: [dts] [PATCH] dual_vlan: Skip qinq on tests in random and synthetic tests for cavium devices 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: Phanendra Vukkisala Configuring QinQ ON is not supported now in cavium devices Signed-off-by: Phanendra Vukkisala --- conf/test_case_checklist.json | 4 +--- tests/TestSuite_dual_vlan.py | 3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json index 71faa19..504a089 100644 --- a/conf/test_case_checklist.json +++ b/conf/test_case_checklist.json @@ -510,9 +510,7 @@ "fortpark_TLV", "sagepond", "sageville", - "cavium_a063", - "cavium_a064", - "carlsville" + "carlsville" ], "Target": [ "ALL" diff --git a/tests/TestSuite_dual_vlan.py b/tests/TestSuite_dual_vlan.py index f81fda1..9cb3879 100644 --- a/tests/TestSuite_dual_vlan.py +++ b/tests/TestSuite_dual_vlan.py @@ -205,6 +205,9 @@ class TestDualVlan(TestCase): temp.append("on") if (caseDef & stripCase) != 0 else temp.append("off") temp.append("on") if (caseDef & filterCase) != 0 else temp.append("off") temp.append("on") if (caseDef & qinqCase) != 0 else temp.append("off") + if (self.nic in ["cavium_a063", "cavium_a064"]) and temp[2] == "on": + ## Skip QinQ for cavium devices as it is not supported. + return self.mode_config(strip=temp[0], filter=temp[1], qinq=temp[2]) if (caseDef & txCase) != 0: -- 1.7.9.5