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 101E2A0613 for ; Thu, 29 Aug 2019 09:50:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C53761D161; Thu, 29 Aug 2019 09:50:16 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 40D021D15E for ; Thu, 29 Aug 2019 09:50:15 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Aug 2019 00:50:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,442,1559545200"; d="scan'208";a="381555612" Received: from unknown (HELO dpdktestzhiwei.sh.intel.com) ([10.67.119.33]) by fmsmga006.fm.intel.com with ESMTP; 29 Aug 2019 00:50:13 -0700 From: "zhiwei.he" To: dts@dpdk.org Cc: "zhiwei.he" Date: Thu, 29 Aug 2019 15:50:30 +0800 Message-Id: <1567065030-45950-1-git-send-email-zhiwei.he@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V2] tests/TestSuite_userspace_ethtool: Add CVL nic to support test_dump_driver_info case 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: "zhiwei.he" Signed-off-by: zhiwei.he --- tests/TestSuite_userspace_ethtool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_userspace_ethtool.py b/tests/TestSuite_userspace_ethtool.py index 0a4b772..36349a4 100644 --- a/tests/TestSuite_userspace_ethtool.py +++ b/tests/TestSuite_userspace_ethtool.py @@ -259,7 +259,7 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator): # only detect physical link disconnect status verify_pass = True verify_msg = '' - if self.nic.startswith("fortville") == False: + if (self.nic.startswith("fortville") or self.nic.startswith("columbiaville")) == False: # check link status dump function for port in self.ports: tester_port = self.tester.get_local_port(port) -- 1.8.3.1