From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 242CF58D4 for ; Tue, 17 Nov 2015 10:18:55 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP; 17 Nov 2015 01:18:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,307,1444719600"; d="scan'208";a="840396219" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 17 Nov 2015 01:18:54 -0800 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id tAH9IqLg012153; Tue, 17 Nov 2015 17:18:52 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id tAH9Io99030081; Tue, 17 Nov 2015 17:18:52 +0800 Received: (from jingguox@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id tAH9In9U030077; Tue, 17 Nov 2015 17:18:49 +0800 From: Jingguo Fu To: dts@dpdk.org Date: Tue, 17 Nov 2015 17:18:47 +0800 Message-Id: <1447751927-30047-1-git-send-email-jingguox.fu@intel.com> X-Mailer: git-send-email 1.7.4.1 Cc: Jingguo Fu Subject: [dts] [DTS][PATCH] add sageville and fortpark in settings add sageville and fortpark support in scatter suite 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, 17 Nov 2015 09:18:56 -0000 Signed-off-by: Jingguo Fu --- framework/settings.py | 3 +++ tests/TestSuite_scatter.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/framework/settings.py b/framework/settings.py index 6b02e4d..c99dcaa 100644 --- a/framework/settings.py +++ b/framework/settings.py @@ -57,6 +57,7 @@ NICS = { 'ironpond': '8086:151c', 'twinpond': '8086:1528', 'twinville': '8086:1512', + 'sageville': '8086:1563', 'hartwell': '8086:10d3', '82545EM': '8086:100f', '82540EM': '8086:100e', @@ -73,6 +74,7 @@ NICS = { 'fortville_spirit': '8086:1583', 'fortville_spirit_single': '8086:1584', 'redrockcanyou': '8086:15a4', + 'fortpark':'8086:374c', } DRIVERS = { @@ -87,6 +89,7 @@ DRIVERS = { 'ironpond': 'ixgbe', 'twinpond': 'ixgbe', 'twinville': 'ixgbe', + 'sageville': 'ixgbe', 'hartwell': 'igb', '82545EM': 'igb', '82540EM': 'igb', diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py index 3a761c4..aab2f9c 100644 --- a/tests/TestSuite_scatter.py +++ b/tests/TestSuite_scatter.py @@ -56,7 +56,7 @@ class TestScatter(TestCase): # Verify that enough ports are available self.verify(len(dutPorts) >= 2, "Insufficient ports") self.pmdout = PmdOutput(self.dut) - if self.nic in ["niantic", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond", "twinpond", "springfountain"]: + if self.nic in ["niantic", "sageville", "fortpark", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond", "twinpond", "springfountain"]: self.mbsize = 2048 else: self.mbsize = 1024 -- 1.9.3