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 19124959E for ; Mon, 16 Nov 2015 03:58:14 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 15 Nov 2015 18:58:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,300,1444719600"; d="scan'208";a="851499718" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.238.55.12]) by orsmga002.jf.intel.com with ESMTP; 15 Nov 2015 18:58:14 -0800 From: Lijuan Tu To: dts@dpdk.org Date: Mon, 16 Nov 2015 10:53:42 +0800 Message-Id: <1447642422-2938-1-git-send-email-lijuanx.a.tu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH]test_change_linkspeed: fortville only supoort speed:10000M 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: Mon, 16 Nov 2015 02:58:15 -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 3800669..a6bf917 100644 --- a/tests/TestSuite_shutdown_api.py +++ b/tests/TestSuite_shutdown_api.py @@ -319,6 +319,9 @@ class TestShutdownApi(TestCase): if self.nic in ["ironpond"]: if config[0] != '1000' or '10000': continue + elif self.nic in ["fortville_eagle"]: + if config[0] != '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, -- 1.9.1