tests: Make autogo_join_auto_go_neg more robust
authorJouni Malinen <jouni@qca.qualcomm.com>
Tue, 10 Feb 2015 10:09:07 +0000 (12:09 +0200)
committerJouni Malinen <j@w1.fi>
Tue, 10 Feb 2015 10:09:07 +0000 (12:09 +0200)
This test cases used to fail if dev1 had seen dev0 as a GO in an earlier
test case, e.g., when running it after autogo_fail. Fix this by clearing
scan results on dev1 at the beginning of the test case.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
tests/hwsim/test_p2p_autogo.py

index 385a786..6e8758d 100644 (file)
@@ -538,6 +538,7 @@ def test_autogo_join_auto(dev):
 
 def test_autogo_join_auto_go_neg(dev):
     """P2P_CONNECT-auto fallback to GO Neg"""
+    dev[1].flush_scan_cache()
     dev[0].p2p_listen()
     addr = dev[0].p2p_dev_addr()
     if "OK" not in dev[1].global_request("P2P_CONNECT " + addr + " pbc auto"):