test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH] tests vlan: fix vlan not insert
@ 2016-05-05  4:15 Marvin Liu
  0 siblings, 0 replies; only message in thread
From: Marvin Liu @ 2016-05-05  4:15 UTC (permalink / raw)
  To: dts; +Cc: Marvin Liu

Function name for vlan changed in packet module. Vlan suite should also
updated as followed.

Signed-off-by: Marvin Liu <yong.liu@intel.com>
---
 tests/TestSuite_vlan.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_vlan.py b/tests/TestSuite_vlan.py
index ba3741e..1c4608b 100644
--- a/tests/TestSuite_vlan.py
+++ b/tests/TestSuite_vlan.py
@@ -90,7 +90,7 @@ class TestVlan(TestCase):
         pkts = load_sniff_packets(self.inst)
         vlans = []
         for packet in pkts:
-            vlan = packet.strip_element_dot1q("vlan")
+            vlan = packet.strip_element_vlan("vlan")
             vlans.append(vlan)
         return vlans
 
@@ -117,7 +117,7 @@ class TestVlan(TestCase):
         else:
             pkt = Packet(pkt_type='VLAN_UDP')
             pkt.config_layer('ether', {'dst': self.dmac, 'src': self.smac})
-            pkt.config_layer('dot1q', {'vlan': vid})
+            pkt.config_layer('vlan', {'vlan': vid})
 
         pkt.send_pkt(tx_port=self.txItf)
 
-- 
1.9.3

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-05-05  4:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-05  4:15 [dts] [PATCH] tests vlan: fix vlan not insert Marvin Liu

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).