mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
tests: Make dpp_pkex_test_fail and dpp_pkex_alloc_fail more robust
Wait for test/allocation failure for longer than the wait_fail_trigger() default two seconds to allow DPP (in particular, PKEX) retransmission to occur. This removes some issues where the previous wait was more or less exactly the same duration as the retransmission interval and the first Listen operation not always starting quickly enough to receive the first frame. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
481d88c060
commit
8b5a497325
@ -3877,7 +3877,7 @@ def test_dpp_pkex_alloc_fail(dev, apdev):
|
||||
with alloc_fail(dev[1], count, func):
|
||||
cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=sta-dpp configurator=%d code=secret" % (id1, conf_id)
|
||||
dev[1].request(cmd)
|
||||
wait_fail_trigger(dev[1], "GET_ALLOC_FAIL")
|
||||
wait_fail_trigger(dev[1], "GET_ALLOC_FAIL", max_iter=100)
|
||||
ev = dev[0].wait_event(["GAS-QUERY-START"], timeout=0.01)
|
||||
if ev:
|
||||
dev[0].request("DPP_STOP_LISTEN")
|
||||
@ -3931,7 +3931,7 @@ def test_dpp_pkex_alloc_fail(dev, apdev):
|
||||
with alloc_fail(dev[0], count, func):
|
||||
cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=sta-dpp configurator=%d code=secret" % (id1, conf_id)
|
||||
dev[1].request(cmd)
|
||||
wait_fail_trigger(dev[0], "GET_ALLOC_FAIL")
|
||||
wait_fail_trigger(dev[0], "GET_ALLOC_FAIL", max_iter=100)
|
||||
ev = dev[0].wait_event(["GAS-QUERY-START"], timeout=0.01)
|
||||
if ev:
|
||||
dev[0].request("DPP_STOP_LISTEN")
|
||||
@ -4011,7 +4011,7 @@ def test_dpp_pkex_test_fail(dev, apdev):
|
||||
with fail_test(dev[1], count, func):
|
||||
cmd = "DPP_PKEX_ADD own=%d identifier=test init=1 conf=sta-dpp configurator=%d code=secret" % (id1, conf_id)
|
||||
dev[1].request(cmd)
|
||||
wait_fail_trigger(dev[1], "GET_FAIL")
|
||||
wait_fail_trigger(dev[1], "GET_FAIL", max_iter=100)
|
||||
ev = dev[0].wait_event(["GAS-QUERY-START"], timeout=0.01)
|
||||
if ev:
|
||||
dev[0].request("DPP_STOP_LISTEN")
|
||||
|
Loading…
Reference in New Issue
Block a user