From patchwork Thu Nov 26 10:59:43 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: usurekha@marvell.com X-Patchwork-Id: 84568 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 24D93A052A; Thu, 26 Nov 2020 12:04:54 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 03814C940; Thu, 26 Nov 2020 12:04:53 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id A50F3C93A for ; Thu, 26 Nov 2020 12:04:50 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 0AQAuN3o029053 for ; Thu, 26 Nov 2020 03:04:50 -0800 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=pfpt0220; bh=W+wRouijPJBLHShZFK3oC0AWdzPNblSIvXUR/xm3TxQ=; b=BRgpnZjFDZu5bf4NQHRfe0mswsVh5ZdXAKlEfSEhZRJ/l3V0oNp6C1JjVYrlEzObODh+ onRxaM62JlyY1Pp1gf/O/b+0YPRTkZVklYdovr+2LOegMgjZ5NJr0xZui1BE4lL11d0C j+fqvE/TuqUTYupzoRssSqFVphm78kpD8slukKSCBDDt73hg/KzenCi8ayvP0QAyh9Yr RvZrOeRJLJLVXVP7MrcdG9fjYGhJOD8m5/TGx7zkg6zpQrncn4xySI3GlD9bFvi1tBIG 45wBjURfs2/h0XaRtpTQ1p/V7CQHiIshH0697UZh37eoP/oLct2/VElSwy1aBBwFoIFV ug== Received: from sc-exch03.marvell.com ([199.233.58.183]) by mx0b-0016f401.pphosted.com with ESMTP id 34y39rh8bk-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 26 Nov 2020 03:04:50 -0800 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Thu, 26 Nov 2020 03:04:48 -0800 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Thu, 26 Nov 2020 03:04:47 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Thu, 26 Nov 2020 03:04:47 -0800 Received: from cavium.marvell.com (unknown [10.28.8.64]) by maili.marvell.com (Postfix) with ESMTP id 362B33F703F; Thu, 26 Nov 2020 03:04:45 -0800 (PST) From: To: CC: , , usurekha Date: Thu, 26 Nov 2020 16:29:43 +0530 Message-ID: <1606388383-5986-1-git-send-email-usurekha@marvell.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.312, 18.0.737 definitions=2020-11-26_03:2020-11-26, 2020-11-26 signatures=0 Subject: [dts] [PATCH] tests/TestSuite_pmd.py: Excluded the getting system_info details for cavium_nic 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: usurekha Signed-off-by: usurekha --- tests/TestSuite_pmd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestSuite_pmd.py b/tests/TestSuite_pmd.py index 46141d6..bef7429 100644 --- a/tests/TestSuite_pmd.py +++ b/tests/TestSuite_pmd.py @@ -90,7 +90,8 @@ class TestPmd(TestCase): self.dut.ports_info[port_num]['port'].bind_driver() sut = SystemInfo(self.dut, pci_device_id) - self.system_info = sut.get_system_info() + if (self.nic not in ["cavium_a063", "cavium_a064"]): + self.system_info = sut.get_system_info() self.nic_info = sut.get_nic_info() self.dut.ports_info[port_num]['port'].bind_driver(ori_driver)