]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Fix p2p_channel_random_social_with_op_class_change cleanup
authorJouni Malinen <jouni@qca.qualcomm.com>
Fri, 28 Nov 2014 13:54:08 +0000 (15:54 +0200)
committerJouni Malinen <j@w1.fi>
Fri, 28 Nov 2014 21:02:29 +0000 (23:02 +0200)
p2p_oper_reg_class and p2p_oper_channel need to be restored to 0, not an
arbitrary 2.4 GHz channel to avoid issues for following test cases. For
example, p2p_channel_random_social_with_op_class_change followed by
p2p_autogo_pref_chan_not_in_regulatory ended up with the latter test
case failing.

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

index a2fb6ae6791b507570cbccadc0480a677eb99776..c8c1d6327c7ffb4cfae9ec5d668f06f1ee05950f 100644 (file)
@@ -144,8 +144,8 @@ def test_p2p_channel_random_social_with_op_class_change(dev, apdev, params):
     finally:
         set_country("00")
         dev[0].request("P2P_SET disallow_freq ")
-        dev[0].request("SET p2p_oper_reg_class 81")
-        dev[0].request("SET p2p_oper_channel 11")
+        dev[0].request("SET p2p_oper_reg_class 0")
+        dev[0].request("SET p2p_oper_channel 0")
 
 def test_p2p_channel_avoid(dev):
     """P2P and avoid frequencies driver event"""