diff options
author | Klement Sekera <ksekera@cisco.com> | 2018-03-27 10:34:43 +0200 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-04-03 19:56:37 +0000 |
commit | 3ecc221162d644884048014dbd399a1f78b89700 (patch) | |
tree | 97c8738ba196ca60447f613c10067cf77b78e662 /test | |
parent | 104404348fdb54504e65c39182d405bdcee926fd (diff) |
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 <ksekera@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_reassembly.py | 3 |
1 files changed, 1 insertions, 2 deletions
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__': |