diff options
author | Ole Troan <ot@cisco.com> | 2019-10-25 17:03:54 +0200 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-10-29 10:03:16 +0000 |
commit | 9a4e5878b0b4d1d25d3b62ce6590a3ac3009ea43 (patch) | |
tree | 66bfa7baa87515bcd5e9ad5f66ad9f13bced49d2 /test | |
parent | abad677803bde8b8eed86a9ceecbc5f19d08e916 (diff) |
l2: l2bd nd termination test instability
The test for ND event suppression reused the previous test run
ipv6 address, and would sometimes consider that a duplicate,
and therefore suppressing that one too.
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I1b115aa4eba9d57770fa03fcf38b7a1c251cfe88
(cherry picked from commit df0191ead2cf39611714b6603cdc5bdddc445b57)
Diffstat (limited to 'test')
-rw-r--r-- | test/test_l2bd_arp_term.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_l2bd_arp_term.py b/test/test_l2bd_arp_term.py index bdf0a80caa7..279dcf2d3c6 100644 --- a/test/test_l2bd_arp_term.py +++ b/test/test_l2bd_arp_term.py @@ -467,7 +467,7 @@ class TestL2bdArpTerm(VppTestCase): """ L2BD ND term - send duplicate ns, verify suppression """ dst_host = self.ip6_host(50, 50, "00:00:11:22:33:44") - macs = self.mac_list(range(10, 11)) + macs = self.mac_list(range(16, 17)) hosts = self.ip6_hosts(5, 1, macs) reqs = self.ns_reqs_dst(hosts, dst_host) * 5 self.bd_swifs(1)[0].add_stream(reqs) |