diff options
author | Jouni Malinen <j@w1.fi> | 2017-01-08 14:48:59 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-01-08 14:48:59 (GMT) |
commit | 74582acc14aca491ed759108fe9ee0ee73d555be (patch) | |
tree | 18ded2e7afc9a69045368b135011f89a36b5b809 /tests | |
parent | 35b023b79a0f9a4261fb975fa3521eba5b221d89 (diff) | |
download | hostap-74582acc14aca491ed759108fe9ee0ee73d555be.zip hostap-74582acc14aca491ed759108fe9ee0ee73d555be.tar.gz hostap-74582acc14aca491ed759108fe9ee0ee73d555be.tar.bz2 |
tests: wpa_supplicant SET tdls_trigger_control
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hwsim/test_wpas_ctrl.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/hwsim/test_wpas_ctrl.py b/tests/hwsim/test_wpas_ctrl.py index 7683276..761e901 100644 --- a/tests/hwsim/test_wpas_ctrl.py +++ b/tests/hwsim/test_wpas_ctrl.py @@ -2003,3 +2003,10 @@ def test_wpas_ctrl_set_radio_disabled(dev): # without checking the result for some additional code coverage. dev[0].request("SET radio_disabled 1") dev[0].request("SET radio_disabled 0") + +def test_wpas_ctrl_set_tdls_trigger_control(dev): + """wpa_supplicant SET tdls_trigger_control""" + # This is not supported with upstream nl80211, but execute the commands + # without checking the result for some additional code coverage. + dev[0].request("SET tdls_trigger_control 1") + dev[0].request("SET tdls_trigger_control 0") |