]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: P2P GO and 5 GHz channels 165 (allowed) and 169 (disallowed) in US
authorJouni Malinen <jouni@qca.qualcomm.com>
Fri, 12 Jun 2015 17:54:01 +0000 (20:54 +0300)
committerJouni Malinen <j@w1.fi>
Fri, 12 Jun 2015 17:54:01 +0000 (20:54 +0300)
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
tests/hwsim/test_p2p_channel.py

index 56bba04f89853633aeb89b28b26997113ce366fe..db458d3fb178e59d43e6713da67c987fb8867511 100644 (file)
@@ -658,3 +658,18 @@ def test_p2p_channel_5ghz_only(dev):
     finally:
         set_country("00")
         dev[0].request("P2P_SET disallow_freq ")
+
+def test_p2p_channel_5ghz_165_169_us(dev):
+    """P2P GO and 5 GHz channels 165 (allowed) and 169 (disallowed) in US"""
+    try:
+        set_country("US", dev[0])
+        res = dev[0].p2p_start_go(freq=5825)
+        if res['freq'] != "5825":
+            raise Exception("Unexpected frequency: " + res['freq'])
+        dev[0].remove_group()
+
+        res = dev[0].global_request("P2P_GROUP_ADD freq=5845")
+        if "FAIL" not in res:
+            raise Exception("GO on channel 169 allowed unexpectedly")
+    finally:
+        set_country("00")