diff options
author | Eyal Bari <ebari@cisco.com> | 2018-07-08 08:15:56 +0300 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2018-07-09 21:08:54 +0000 |
commit | dd47ecadcf63772a6037a1bb3715772d80e87f51 (patch) | |
tree | 32b9b47118a59b18be92a9d521be5d36425fa8a5 /test | |
parent | a1ff01e5c91cadc3d95060aa1ca4b9faa6fa2f49 (diff) |
vxlan:use bihash_16_8 for ipv4 lookup
Change-Id: I0d4630c88d6caacffcd073ebaa12766dfc893f70
Signed-off-by: Eyal Bari <ebari@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_vxlan6.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test_vxlan6.py b/test/test_vxlan6.py index 0457f9b627d..fd89f05b03b 100644 --- a/test/test_vxlan6.py +++ b/test/test_vxlan6.py @@ -11,8 +11,8 @@ from scapy.layers.vxlan import VXLAN from scapy.utils import atol -class TestVxlan(BridgeDomain, VppTestCase): - """ VXLAN Test Case """ +class TestVxlan6(BridgeDomain, VppTestCase): + """ VXLAN over IPv6 Test Case """ def __init__(self, *args): BridgeDomain.__init__(self) @@ -112,7 +112,7 @@ class TestVxlan(BridgeDomain, VppTestCase): # @param cls The class pointer. @classmethod def setUpClass(cls): - super(TestVxlan, cls).setUpClass() + super(TestVxlan6, cls).setUpClass() try: cls.dport = 4789 @@ -168,14 +168,14 @@ class TestVxlan(BridgeDomain, VppTestCase): cls.vapi.sw_interface_set_l2_bridge(cls.pg3.sw_if_index, bd_id=cls.ucast_flood_bd) except Exception: - super(TestVxlan, cls).tearDownClass() + super(TestVxlan6, cls).tearDownClass() raise # Method to define VPP actions before tear down of the test case. # Overrides tearDown method in VppTestCase class. # @param self The object pointer. def tearDown(self): - super(TestVxlan, self).tearDown() + super(TestVxlan6, self).tearDown() if not self.vpp_dead: self.logger.info(self.vapi.cli("show bridge-domain 1 detail")) self.logger.info(self.vapi.cli("show bridge-domain 2 detail")) |