From 3ecc221162d644884048014dbd399a1f78b89700 Mon Sep 17 00:00:00 2001 From: Klement Sekera Date: Tue, 27 Mar 2018 10:34:43 +0200 Subject: reassembly: bug fixes This change fixes a bug which would corrupt features infra by making feature infra resistant to double-removal. It also fixes 'out of memory' issue by properly initializing the bihash tables. Change-Id: I78ac03139234a9a0e0b48e7bdfac1c38a0069e82 Signed-off-by: Klement Sekera --- test/test_reassembly.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test') diff --git a/test/test_reassembly.py b/test/test_reassembly.py index 531caa46257..76aabcb3fb7 100644 --- a/test/test_reassembly.py +++ b/test/test_reassembly.py @@ -749,7 +749,6 @@ class TestIPv6Reassembly(VppTestCase): self.assert_equal(icmp[ICMPv6ParamProblem].code, 0, "ICMP code") -@unittest.skip("removing GRE tunnels broken, need fix") class TestFIFReassembly(VppTestCase): """ Fragments in fragments reassembly """ @@ -965,7 +964,7 @@ class TestFIFReassembly(VppTestCase): # TODO remove gre vpp config by hand until VppIpRoute gets fixed # so that it's query_vpp_config() works as it should - # self.gre6.remove_vpp_config() + self.gre6.remove_vpp_config() if __name__ == '__main__': -- cgit 1.2.3-korg