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 08279A00BE; Thu, 31 Oct 2019 06:17:38 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CFB721C19B; Thu, 31 Oct 2019 06:17:38 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 857311BE91 for ; Thu, 31 Oct 2019 06:17:37 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Oct 2019 22:17:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,250,1569308400"; d="scan'208";a="230722701" Received: from unknown (HELO dpdk-wenjielx-KVM190.icx.intel.com) ([10.238.54.190]) by fmsmga002.fm.intel.com with ESMTP; 30 Oct 2019 22:17:36 -0700 From: Wenjie Li To: dts@dpdk.org Cc: Wenjie Li Date: Thu, 31 Oct 2019 14:07:18 +0000 Message-Id: <1572530838-44694-1-git-send-email-wenjiex.a.li@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/userspace_ethtool: cannot change CVL link status by the peer port 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" In case dump_driver_info, like fortville, CVL link status cannot be changed by the peer ports. After change the peer port status by running "ip link set dev PORT down|up", CVL link status will not change. So skip this step. Signed-off-by: Wenjie Li --- 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 116fd3a..8d18b0c 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") == False and self.nic.startswith("columbiaville") == False: # check link status dump function for port in self.ports: tester_port = self.tester.get_local_port(port) -- 2.17.1