diff options
author | Neale Ranns <nranns@cisco.com> | 2017-02-21 17:30:26 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-03-09 10:50:41 +0000 |
commit | 37be73693a46b05360483778efee3313a71654f5 (patch) | |
tree | 33c6672e46759f9f338702ce90b0af3eb2c1e88f /test/vpp_interface.py | |
parent | 794813fda16b6935d01034112ff795a69410acfd (diff) |
Tests to target holes in adjacency and DPO test coverage
Change-Id: Ic6ac7e441a7b75baa02f03c1585d1ae00903a399
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/vpp_interface.py')
-rw-r--r-- | test/vpp_interface.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/vpp_interface.py b/test/vpp_interface.py index 53a0ae8de98..8135bc84d0e 100644 --- a/test/vpp_interface.py +++ b/test/vpp_interface.py @@ -335,6 +335,13 @@ class VppInterface(object): self.sw_if_index, ip_sw_if_index) + def unset_unnumbered(self, ip_sw_if_index): + """ Unaet the interface to unnumbered via ip_sw_if_index """ + self.test.vapi.sw_interface_set_unnumbered( + self.sw_if_index, + ip_sw_if_index, + is_add=0) + def set_proxy_arp(self, enable=1): """ Set the interface to enable/disable Proxy ARP """ self.test.vapi.proxy_arp_intfc_enable_disable( |