mirror of
https://github.com/espressif/openthread.git
synced 2026-09-12 20:20:04 +00:00
[thread-cert] fix 5.3.3 random fail by small chance (#5892)
5.3.3 pktverify fail by small chance when the ping reply is forwarded from Router3 -> Leader -> Router2 instead of Router3 -> Router2. In such case, the direct wpan.dst16 is not Router2's RLOC16, but Leader's RLOC16. This commit change 5.3.3 to check for both 6lowpan mesh dst16 and wpan.dst16 against Router2's RLOC16.
This commit is contained in:
@@ -231,7 +231,7 @@ class Cert_5_3_3_AddressQuery(thread_cert.TestCase):
|
||||
must_next()
|
||||
pkts.filter_ping_reply(identifier=_pkt.icmpv6.echo.identifier).\
|
||||
filter_wpan_src64(ROUTER_3).\
|
||||
filter_wpan_dst16(ROUTER_2_RLOC16).\
|
||||
filter_dst16(ROUTER_2_RLOC16).\
|
||||
must_next()
|
||||
pkts.filter_ping_reply(identifier=_pkt.icmpv6.echo.identifier).\
|
||||
filter_wpan_src64(ROUTER_2).\
|
||||
|
||||
Reference in New Issue
Block a user