mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-17 17:43:06 -05:00
tests: Use full prefix of the P2P-GO-NEG-FAILURE
Couple of waits for this event used the "GO-NEG-FAILURE" string instead of the full event prefix. While this worked in the tests due to a substring matching, it is better to use the full event prefix here. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
e4ab0d9034
commit
d75fcb9760
@ -518,7 +518,7 @@ def test_grpform_reject(dev):
|
||||
raise Exception("P2P_REJECT failed")
|
||||
dev[1].request("P2P_STOP_FIND")
|
||||
dev[1].p2p_go_neg_init(addr0, None, "pbc")
|
||||
ev = dev[1].wait_global_event(["GO-NEG-FAILURE"], timeout=10)
|
||||
ev = dev[1].wait_global_event(["P2P-GO-NEG-FAILURE"], timeout=10)
|
||||
if ev is None:
|
||||
raise Exception("Rejection not reported")
|
||||
if "status=11" not in ev:
|
||||
@ -590,7 +590,7 @@ def test_go_neg_two_peers(dev):
|
||||
if ev is None:
|
||||
raise Exception("timeout on GO Neg RX event")
|
||||
dev[2].request("P2P_CONNECT " + addr0 + " pbc")
|
||||
ev = dev[2].wait_global_event(["GO-NEG-FAILURE"], timeout=10)
|
||||
ev = dev[2].wait_global_event(["P2P-GO-NEG-FAILURE"], timeout=10)
|
||||
if ev is None:
|
||||
raise Exception("Rejection not reported")
|
||||
if "status=5" not in ev:
|
||||
|
Loading…
x
Reference in New Issue
Block a user