From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 4F79F5A90 for ; Tue, 13 Jan 2015 14:42:36 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 13 Jan 2015 05:42:35 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,750,1413270000"; d="scan'208";a="650408917" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 13 Jan 2015 05:42:35 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t0DDgXMP012857; Tue, 13 Jan 2015 21:42:33 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t0DDgVtY025858; Tue, 13 Jan 2015 21:42:33 +0800 Received: (from dayuqiu@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t0DDgUCC025854; Tue, 13 Jan 2015 21:42:30 +0800 From: Michael Qiu To: dts@dpdk.org Date: Tue, 13 Jan 2015 21:42:16 +0800 Message-Id: <1421156540-25810-3-git-send-email-michael.qiu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1421156540-25810-1-git-send-email-michael.qiu@intel.com> References: <1421156540-25810-1-git-send-email-michael.qiu@intel.com> Cc: yong.liu@intel.com Subject: [dts] [PATCH 2/6] framework/crbs: Info clean up of crbs 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, 13 Jan 2015 13:42:36 -0000 It is not a good idea to add exactly IP and other details of one machine inside a company. Make it more clean and more general. Signed-off-by: Michael Qiu --- framework/crbs.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/framework/crbs.py b/framework/crbs.py index 98821ea..77446c3 100644 --- a/framework/crbs.py +++ b/framework/crbs.py @@ -3,12 +3,13 @@ Static configuration data for any CRBs that can be used. """ from settings import IXIA +# Todo: modify this script to a config file, like crbs.cfg crbs = [ - {'IP': '10.239.128.117', + {'IP': '', 'name': 'CrownPassCRB1', - 'user': 'root', - 'pass': 'tester', - 'tester IP': '10.239.128.116', + 'user': '', + 'pass': '', + 'tester IP': '', IXIA: None, 'memory channels': 4, 'bypass core0': True}, -- 1.9.3