From: Jouni Malinen Date: Sat, 4 Jun 2016 18:47:22 +0000 (+0300) Subject: tests: Mesh and default beacon interval X-Git-Tag: hostap_2_6~418 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mech_eap.git;a=commitdiff_plain;h=521a98a8f695acda761702be3f5d797a519f3799 tests: Mesh and default beacon interval Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_wpas_mesh.py b/tests/hwsim/test_wpas_mesh.py index c8226d5..b43df81 100644 --- a/tests/hwsim/test_wpas_mesh.py +++ b/tests/hwsim/test_wpas_mesh.py @@ -1242,3 +1242,13 @@ def test_mesh_invalid_frequency(dev, apdev): "Could not join mesh"]) if ev is None or "Could not join mesh" not in ev: raise Exception("Mesh join failure not reported") + +def test_mesh_default_beacon_int(dev, apdev): + """Mesh and default beacon interval""" + check_mesh_support(dev[0]) + try: + dev[0].request("SET beacon_int 200") + add_open_mesh_network(dev[0]) + check_mesh_group_added(dev[0]) + finally: + dev[0].request("SET beacon_int 0")