The DPP Enrollee might wait for up to 60 seconds for the configuration,
so use a longer timeout value to be able to cover this negative test
case where the Configurator never sends the response.
Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
if "OK" not in dev[1].request(("DPP_CONF_SET peer=%d " % id1) + conf):
raise Exception("DPP_CONF_SET failed")
- ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=15)
+ ev = dev[0].wait_event(["DPP-CONF-RECEIVED", "DPP-CONF-FAILED"], timeout=65)
if ev is None:
raise Exception("DPP configuration not completed (Enrollee)")
if failure and "DPP-CONF-FAILED" not in ev: