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 7A612A04C1; Fri, 22 Nov 2019 06:42:09 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4D51C2C28; Fri, 22 Nov 2019 06:42:09 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id EFCCD2C08 for ; Fri, 22 Nov 2019 06:42:07 +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 orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Nov 2019 21:42:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,228,1571727600"; d="scan'208";a="238484809" Received: from ubuntu.sh.intel.com ([10.239.250.27]) by fmsmga002.fm.intel.com with ESMTP; 21 Nov 2019 21:42:05 -0800 From: Peng Zhihong To: dts@dpdk.org Cc: Peng Zhihong Date: Fri, 22 Nov 2019 13:38:19 +0800 Message-Id: <20191122053819.6954-1-zhihongx.peng@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/TestSuite_userspace_ethtool.py:Fvl and cvl do not check the nic status 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" tests/TestSuite_userspace_ethtool.py:Fvl and cvl do not check the nic status Signed-off-by: Peng Zhihong --- 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 6e19888..e9b6ccf 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 or self.nic.startswith("columbiaville"): + 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