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 3A0F7231C for ; Fri, 13 Nov 2015 06:17:24 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP; 12 Nov 2015 21:17:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,285,1444719600"; d="scan'208";a="836536588" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 12 Nov 2015 21:17:22 -0800 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id tAD5HK29012927; Fri, 13 Nov 2015 13:17:20 +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 tAD5HI61015234; Fri, 13 Nov 2015 13:17:20 +0800 Received: (from jingguox@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id tAD5HIGw015230; Fri, 13 Nov 2015 13:17:18 +0800 From: Jingguo Fu To: dts@dpdk.org Date: Fri, 13 Nov 2015 13:17:14 +0800 Message-Id: <1447391834-15200-1-git-send-email-jingguox.fu@intel.com> X-Mailer: git-send-email 1.7.4.1 Cc: Jingguo Fu Subject: [dts] [DTS][PATCH] fix dut port config bug: numa is int, does not have lower attr Changes to be committed: modified: framework/dut.py 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: Fri, 13 Nov 2015 05:17:24 -0000 Signed-off-by: Jingguo Fu --- framework/dut.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/framework/dut.py b/framework/dut.py index 70bd146..37d6050 100644 --- a/framework/dut.py +++ b/framework/dut.py @@ -775,12 +775,13 @@ class Dut(Crb): port_cfg['source'] = 'cfg' else: port_cfg = {} - - for key in ['intf', 'mac', 'numa', 'peer', 'source']: + for key in ['intf', 'mac', 'peer', 'source']: if key in port_cfg: if key in port and port_cfg[key].lower() != port[key].lower(): self.logger.warning("CONFIGURED %s NOT SAME AS SCANNED!!!" % (key.upper())) port[key] = port_cfg[key].lower() + if 'numa' in port_cfg: + port['numa'] = port_cfg['numa'] def map_available_ports(self): """ -- 1.9.3