test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [DTS][PATCH V2] fix dut port config bug: numa is int, does not have lower attr
@ 2015-11-23  8:29 Jingguo Fu
  2015-11-25  2:22 ` Liu, Yong
  0 siblings, 1 reply; 2+ messages in thread
From: Jingguo Fu @ 2015-11-23  8:29 UTC (permalink / raw)
  To: dts; +Cc: Jingguo Fu

Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
---
 framework/dut.py | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/framework/dut.py b/framework/dut.py
index 70bd146..90a86f5 100644
--- a/framework/dut.py
+++ b/framework/dut.py
@@ -776,11 +776,17 @@ class Dut(Crb):
             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:
+                if port_cfg['numa'] != port['numa']:
+                    self.logger.warning("CONFIGURED NUMA NOT SAME AS SCANNED!!!")
+                port['numa'] = port_cfg['numa']
+                
+                
 
     def map_available_ports(self):
         """
-- 
1.9.3

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-25  2:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-23  8:29 [dts] [DTS][PATCH V2] fix dut port config bug: numa is int, does not have lower attr Jingguo Fu
2015-11-25  2:22 ` Liu, Yong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).