Browse Source

tests: Make p2p_service_discovery_peer_not_listening a bit more robust

It was apparently possible for the P2P_FIND operation to terminate
before the peer device was found. Increase the timeout to avoid this.

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 7 years ago
parent
commit
87ad672108
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/hwsim/test_p2p_service.py

+ 1 - 1
tests/hwsim/test_p2p_service.py

@@ -478,7 +478,7 @@ def test_p2p_service_discovery_peer_not_listening(dev):
     add_bonjour_services(dev[0])
     add_upnp_services(dev[0])
     dev[0].p2p_listen()
-    dev[1].global_request("P2P_FIND 1 type=social")
+    dev[1].global_request("P2P_FIND 4 type=social")
     ev = dev[1].wait_global_event(["P2P-DEVICE-FOUND"], timeout=4)
     if ev is None:
         raise Exception("Peer not found")