From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 98BB2CF9 for ; Tue, 20 Oct 2015 04:22:35 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 19 Oct 2015 19:22:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,705,1437462000"; d="scan'208";a="797534457" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga001.jf.intel.com with ESMTP; 19 Oct 2015 19:22:34 -0700 Received: from fmsmsx120.amr.corp.intel.com (10.18.124.208) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 19 Oct 2015 19:22:34 -0700 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by fmsmsx120.amr.corp.intel.com (10.18.124.208) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 19 Oct 2015 19:22:33 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.204]) by shsmsx102.ccr.corp.intel.com ([169.254.2.253]) with mapi id 14.03.0248.002; Tue, 20 Oct 2015 10:22:32 +0800 From: "Liu, Yong" To: "Tu, LijuanX A" , "dts@dpdk.org" Thread-Topic: [dts] [patch] fix ironpond change_linkspeed bug ironpond just support speed 1000/10000M, not support 100M Signed-off-by: lijuan tu Thread-Index: AQHRBwESMhNldq1VAke/zPZ1ke0Xap5zrg8g Date: Tue, 20 Oct 2015 02:22:31 +0000 Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E10F2DE87@SHSMSX103.ccr.corp.intel.com> References: <1444882649-3394-1-git-send-email-lijuanx.a.tu@intel.com> In-Reply-To: <1444882649-3394-1-git-send-email-lijuanx.a.tu@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [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: Tue, 20 Oct 2015 02:22:36 -0000 Applied, please take care your email subject. Remove useless word "Signed-o= ff-by..." in subject. =20 > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lijuan tu > Sent: Thursday, October 15, 2015 12:17 PM > To: dts@dpdk.org > Subject: [dts] [patch] fix ironpond change_linkspeed bug ironpond just > support speed 1000/10000M, not support 100M Signed-off-by: lijuan tu > >=20 > Signed-off-by: lijuan tu > --- > tests/TestSuite_shutdown_api.py | 3 +++ > 1 file changed, 3 insertions(+) >=20 > 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 =3D m[:-(len(m) / 2)] > for config in configs: > print config > + if self.nic in ["ironpond"]: > + if config[0] !=3D '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