X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_gre_interface.py;h=58a68290c60285c3af3beb81a764908d72614a39;hb=b20dd1ba714c0b6de78abfe05dbee5b076cdac72;hp=b6a66332a995feab452636f61b689b95a6647fe2;hpb=177bbdcd8fa4e7621c5bdd3afd8c6e74b603e096;p=vpp.git diff --git a/test/vpp_gre_interface.py b/test/vpp_gre_interface.py index b6a66332a99..58a68290c60 100644 --- a/test/vpp_gre_interface.py +++ b/test/vpp_gre_interface.py @@ -10,6 +10,8 @@ class VppGreInterface(VppInterface): def __init__(self, test, src_ip, dst_ip, outer_fib_id=0, is_teb=0): """ Create VPP loopback interface """ + self._sw_if_index = 0 + super(VppGreInterface, self).__init__(test) self._test = test self.t_src = src_ip self.t_dst = dst_ip @@ -23,7 +25,7 @@ class VppGreInterface(VppInterface): outer_fib_id=self.t_outer_fib, is_teb=self.t_is_teb) self._sw_if_index = r.sw_if_index - self.post_init_setup() + self.generate_remote_hosts() def remove_vpp_config(self): s = socket.inet_pton(socket.AF_INET, self.t_src)