From: Jouni Malinen Date: Tue, 27 Dec 2016 19:14:34 +0000 (+0200) Subject: tests: hostapd global ctrl_iface INTERFACES X-Git-Tag: hostap_2_7~1897 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1d7742c535be672eada6c34916c629f3448f437;p=thirdparty%2Fhostap.git tests: hostapd global ctrl_iface INTERFACES Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_hapd_ctrl.py b/tests/hwsim/test_hapd_ctrl.py index 125924c93..1bbe241ca 100644 --- a/tests/hwsim/test_hapd_ctrl.py +++ b/tests/hwsim/test_hapd_ctrl.py @@ -476,6 +476,16 @@ def test_hapd_ctrl_global(dev, apdev): res = hapd_global.request("IFNAME=" + ifname + " GET version") if "FAIL" in res: raise Exception("Could not get hostapd version for " + ifname + " via global control interface") + res = hapd_global.request("INTERFACES") + if "FAIL" in res: + raise Exception("INTERFACES command failed") + if apdev[0]['ifname'] not in res.splitlines(): + raise Exception("AP interface missing from INTERFACES") + res = hapd_global.request("INTERFACES ctrl") + if "FAIL" in res: + raise Exception("INTERFACES ctrl command failed") + if apdev[0]['ifname'] + " ctrl_iface=" not in res: + raise Exception("AP interface missing from INTERFACES ctrl") def dup_network(hapd_global, src, dst, param): res = hapd_global.request("DUP_NETWORK %s %s %s" % (src, dst, param))