X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_reassembly.py;h=b2c271decacdf1297090b3c32ea98249b5cd3ad5;hb=400ded36422689c1783e220a1846447bc0058234;hp=531caa46257c262adc438804ccacef2fb2c2cb5b;hpb=4c53313cd7e9b866412ad3e04b2d91ac098c1398;p=vpp.git diff --git a/test/test_reassembly.py b/test/test_reassembly.py index 531caa46257..b2c271decac 100644 --- a/test/test_reassembly.py +++ b/test/test_reassembly.py @@ -11,7 +11,8 @@ from util import ppp, fragment_rfc791, fragment_rfc8200 from scapy.layers.inet6 import IPv6, IPv6ExtHdrFragment, ICMPv6ParamProblem,\ ICMPv6TimeExceeded from vpp_gre_interface import VppGreInterface, VppGre6Interface -from vpp_ip_route import VppIpRoute, VppRoutePath, DpoProto +from vpp_ip import DpoProto +from vpp_ip_route import VppIpRoute, VppRoutePath test_packet_count = 257 @@ -749,7 +750,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 +965,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__':