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 EB666A04C1; Fri, 22 Nov 2019 04:29:11 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C6A4E2C28; Fri, 22 Nov 2019 04:29:11 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 278BFA3 for ; Fri, 22 Nov 2019 04:29:09 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Nov 2019 19:29:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,228,1571727600"; d="scan'208";a="216278501" Received: from ubuntu.sh.intel.com ([10.239.250.27]) by fmsmga001.fm.intel.com with ESMTP; 21 Nov 2019 19:29:07 -0800 From: Peng Zhihong To: dts@dpdk.org Cc: Peng Zhihong Date: Fri, 22 Nov 2019 11:21:20 +0800 Message-Id: <20191122032120.5704-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 92724aa..743be63 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