From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 0A7B21DB1 for ; Thu, 15 Oct 2015 06:21:52 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 14 Oct 2015 21:21:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,684,1437462000"; d="scan'208";a="811382915" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.238.55.12]) by fmsmga001.fm.intel.com with ESMTP; 14 Oct 2015 21:21:51 -0700 From: lijuan tu To: dts@dpdk.org Date: Thu, 15 Oct 2015 12:17:29 +0800 Message-Id: <1444882649-3394-1-git-send-email-lijuanx.a.tu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [patch] fix ironpond change_linkspeed bug ironpond just support speed 1000/10000M, not support 100M Signed-off-by: lijuan tu 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: , X-List-Received-Date: Thu, 15 Oct 2015 04:21:53 -0000 Signed-off-by: lijuan tu --- tests/TestSuite_shutdown_api.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/TestSuite_shutdown_api.py b/tests/TestSuite_shutdown_api.py index 05cce31..37c2481 100644 --- a/tests/TestSuite_shutdown_api.py +++ b/tests/TestSuite_shutdown_api.py @@ -312,6 +312,9 @@ class TestShutdownApi(TestCase): configs = m[:-(len(m) / 2)] for config in configs: print config + if self.nic in ["ironpond"]: + if config[0] != '1000' or '10000': + continue self.dut.send_expect("port stop all", "testpmd> ", 100) for port in self.ports: self.dut.send_expect("port config %d speed %s duplex %s" % (port, -- 2.1.0