tests: Parse group results in a couple of p2p_channel tests
authorIlan Peer <ilan.peer@intel.com>
Thu, 7 Apr 2016 10:32:02 +0000 (13:32 +0300)
committerJouni Malinen <j@w1.fi>
Sun, 24 Apr 2016 20:45:57 +0000 (23:45 +0300)
In p2p_channel_vht80_autogo and p2p_channel_vht80p80_autogo, parse the
P2P-GROUP-STARTED event prior to calling the group_request() method, as
otherwise the group ifname is not set.

Signed-off-by: Ilan Peer <ilan.peer@intel.com>
tests/hwsim/test_p2p_channel.py

index 5b41c14..1e36a39 100644 (file)
@@ -1120,6 +1120,7 @@ def test_p2p_channel_vht80p80_autogo(dev):
         if ev is None:
             raise Exception("Peer did not get connected")
 
+        dev[1].group_form_result(ev)
         sig = dev[1].group_request("SIGNAL_POLL").splitlines()
         if "FREQUENCY=5180" not in sig:
             raise Exception("Unexpected SIGNAL_POLL value(1): " + str(sig))
@@ -1155,6 +1156,7 @@ def test_p2p_channel_vht80_autogo(dev):
         if ev is None:
             raise Exception("Peer did not get connected")
 
+        dev[1].group_form_result(ev)
         sig = dev[1].group_request("SIGNAL_POLL").splitlines()
         if "FREQUENCY=5180" not in sig:
             raise Exception("Unexpected SIGNAL_POLL value(1): " + str(sig))