From 561536205adfb7a364177eb6bac0e46e67b62c1c Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 5 Feb 2016 17:07:48 +0200 Subject: [PATCH] tests: WNM BSS Transition Management with invalid operating class Signed-off-by: Jouni Malinen --- tests/hwsim/test_wnm.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/hwsim/test_wnm.py b/tests/hwsim/test_wnm.py index 1fed94226..a2af1c01c 100644 --- a/tests/hwsim/test_wnm.py +++ b/tests/hwsim/test_wnm.py @@ -672,6 +672,17 @@ def test_wnm_bss_tm_global(dev, apdev): finally: stop_wnm_tm(hapd, dev[0]) +def test_wnm_bss_tm_op_class_0(dev, apdev): + """WNM BSS Transition Management with invalid operating class""" + try: + hapd = None + hapd, id = start_wnm_tm(apdev[0], "US", dev[0]) + + logger.info("Preferred Candidate List (no matching neighbor, invalid op class specified for channels)") + wnm_bss_tm_check(hapd, dev[0], "pref=1 neighbor=00:11:22:33:44:59,0x0000,0,149,7 neighbor=00:11:22:33:44:5b,0x0000,0,1,7") + finally: + stop_wnm_tm(hapd, dev[0]) + def test_wnm_action_proto(dev, apdev): """WNM Action protocol testing""" params = { "ssid": "test-wnm" }