[PATCH 16/17] tests: Increase timeouts when MCC is enabled
Ilan Peer
ilan.peer
Mon Jul 27 12:24:33 PDT 2015
When MCC is enabled, the remain of channel scheduling might
incur additional delays, so increase the timeouts to be able
to receive delays frames.
Signed-off-by: Ilan Peer <ilan.peer at intel.com>
---
tests/hwsim/test_p2p_messages.py | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/tests/hwsim/test_p2p_messages.py b/tests/hwsim/test_p2p_messages.py
index bd88a4d..19d551b 100644
--- a/tests/hwsim/test_p2p_messages.py
+++ b/tests/hwsim/test_p2p_messages.py
@@ -1309,7 +1309,7 @@ def test_p2p_msg_pd(dev, apdev):
raise Exception("Unexpected PD result event")
def check_p2p_response(hapd, dialog_token, status):
- resp = hapd.mgmt_rx(timeout=1)
+ resp = hapd.mgmt_rx(timeout=2)
if resp is None:
raise Exception("No GO Neg Response " + str(dialog_token))
p2p = parse_p2p_public_action(resp['payload'])
@@ -1388,7 +1388,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
attrs += p2p_attr_operating_channel()
msg['payload'] += ie_p2p(attrs)
hapd.mgmt_tx(msg)
- if hapd.mgmt_rx(timeout=1) is None:
+ if hapd.mgmt_rx(timeout=2) is None:
raise Exception("No GO Neg Response " + str(dialog_token))
time.sleep(0.1)
@@ -1405,7 +1405,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
#attrs += p2p_attr_operating_channel()
msg['payload'] += ie_p2p(attrs)
hapd.mgmt_tx(msg)
- if hapd.mgmt_rx(timeout=1) is None:
+ if hapd.mgmt_rx(timeout=2) is None:
raise Exception("No GO Neg Response " + str(dialog_token))
time.sleep(0.1)
@@ -1422,7 +1422,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
attrs += p2p_attr_operating_channel()
msg['payload'] += ie_p2p(attrs)
hapd.mgmt_tx(msg)
- if hapd.mgmt_rx(timeout=1) is None:
+ if hapd.mgmt_rx(timeout=2) is None:
raise Exception("No GO Neg Response " + str(dialog_token))
time.sleep(0.1)
@@ -1439,7 +1439,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
attrs += p2p_attr_operating_channel()
msg['payload'] += ie_p2p(attrs)
hapd.mgmt_tx(msg)
- if hapd.mgmt_rx(timeout=1) is None:
+ if hapd.mgmt_rx(timeout=2) is None:
raise Exception("No GO Neg Response " + str(dialog_token))
time.sleep(0.1)
@@ -1456,7 +1456,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
attrs += p2p_attr_operating_channel()
msg['payload'] += ie_p2p(attrs)
hapd.mgmt_tx(msg)
- if hapd.mgmt_rx(timeout=1) is None:
+ if hapd.mgmt_rx(timeout=2) is None:
raise Exception("No GO Neg Response " + str(dialog_token))
time.sleep(0.1)
@@ -1474,7 +1474,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
attrs += p2p_attr_operating_channel()
msg['payload'] += ie_p2p(attrs)
hapd.mgmt_tx(msg)
- if hapd.mgmt_rx(timeout=1) is None:
+ if hapd.mgmt_rx(timeout=2) is None:
raise Exception("No GO Neg Response " + str(dialog_token))
time.sleep(0.1)
@@ -1493,7 +1493,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
attrs += p2p_attr_status(status=P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE)
msg['payload'] += ie_p2p(attrs)
hapd.mgmt_tx(msg)
- if hapd.mgmt_rx(timeout=1) is None:
+ if hapd.mgmt_rx(timeout=2) is None:
raise Exception("No GO Neg Response(1) " + str(dialog_token))
time.sleep(0.1)
@@ -1513,7 +1513,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
hapd.mgmt_tx(msg)
check_p2p_response(hapd, dialog_token,
P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE)
- ev = dev[0].wait_global_event(["P2P-GO-NEG-REQUEST"], timeout=1)
+ ev = dev[0].wait_global_event(["P2P-GO-NEG-REQUEST"], timeout=2)
if ev is None:
raise Exception("Timeout on GO Neg event " + str(dialog_token))
@@ -1534,7 +1534,7 @@ def test_p2p_msg_go_neg_req(dev, apdev):
attrs += p2p_attr_operating_channel()
msg['payload'] += ie_p2p(attrs)
hapd.mgmt_tx(msg)
- if hapd.mgmt_rx(timeout=1) is None:
+ if hapd.mgmt_rx(timeout=2) is None:
raise Exception("No GO Neg Response " + str(dialog_token))
# ready - invalid GO Intent GO Neg Req
--
1.9.1
More information about the Hostap
mailing list