diff options
author | Neale Ranns <nranns@cisco.com> | 2019-10-06 01:04:26 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-10-06 01:04:26 -0700 |
commit | ac3e72cb9765f78f1cf03ff5d5ccd9ff944668b6 (patch) | |
tree | 278c18482d750a1b6917d0828d0796ac4f1296b7 /test/test_neighbor.py | |
parent | ac78f8a902fc61465edf657f7c7da7ff575210c8 (diff) |
ip: Fix IP unnumbered dump of one interface
Type: fix
Change-Id: I35fb6fdfba50c4a59cf1ffb94cb51487bcf5afc9
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/test_neighbor.py')
-rw-r--r-- | test/test_neighbor.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_neighbor.py b/test/test_neighbor.py index 69b00ea6ff2..81c3acb09a3 100644 --- a/test/test_neighbor.py +++ b/test/test_neighbor.py @@ -311,7 +311,16 @@ class ARPTestCase(VppTestCase): # self.pg2.set_unnumbered(self.pg1.sw_if_index) + # + # test the unnumbered dump both by all interfaces and just the enabled + # one + # unnum = self.vapi.ip_unnumbered_dump() + self.assertTrue(len(unnum)) + self.assertEqual(unnum[0].ip_sw_if_index, self.pg1.sw_if_index) + self.assertEqual(unnum[0].sw_if_index, self.pg2.sw_if_index) + unnum = self.vapi.ip_unnumbered_dump(self.pg2.sw_if_index) + self.assertTrue(len(unnum)) self.assertEqual(unnum[0].ip_sw_if_index, self.pg1.sw_if_index) self.assertEqual(unnum[0].sw_if_index, self.pg2.sw_if_index) |