From: Janusz Dziedzic Date: Thu, 7 Apr 2016 05:38:05 +0000 (+0200) Subject: tests: Use hostapd.add_ap() instead of HostapdGlobal() (DFS) X-Git-Tag: hostap_2_6~553 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b29c46beb92df6d58113de95aaaa16374a05d590;p=thirdparty%2Fhostap.git tests: Use hostapd.add_ap() instead of HostapdGlobal() (DFS) This makes the DFS test cases that use start_dfs_ap() more usable for testing with remote hosts. Signed-off-by: Janusz Dziedzic --- diff --git a/tests/hwsim/test_dfs.py b/tests/hwsim/test_dfs.py index 49b061185..9bf6e54fe 100644 --- a/tests/hwsim/test_dfs.py +++ b/tests/hwsim/test_dfs.py @@ -30,13 +30,7 @@ def start_dfs_ap(ap, allow_failure=False, ssid="dfs", ht=True, ht40=False, channel=None): ifname = ap['ifname'] logger.info("Starting AP " + ifname + " on DFS channel") - hapd_global = hostapd.HostapdGlobal() - hapd_global.remove(ifname) - hapd_global.add(ifname) - hapd = hostapd.Hostapd(ifname) - if not hapd.ping(): - raise Exception("Could not ping hostapd") - hapd.set_defaults() + hapd = hostapd.add_ap(ap, {}, no_enable=True) hapd.set("ssid", ssid) hapd.set("country_code", "FI") hapd.set("ieee80211d", "1")