From: Janusz Dziedzic Date: Thu, 7 Apr 2016 05:38:05 +0000 (+0200) Subject: tests: Use hostapd.add_ap() instead of HostapdGlobal() (PSK) X-Git-Tag: hostap_2_6~555 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=84f3f3a5e6659319a134ef0a7ca18f4faf23f803;p=thirdparty%2Fhostap.git tests: Use hostapd.add_ap() instead of HostapdGlobal() (PSK) This makes ap_cli_order more usable for testing with remote hosts. Signed-off-by: Janusz Dziedzic --- diff --git a/tests/hwsim/test_ap_psk.py b/tests/hwsim/test_ap_psk.py index d5c22af43..ac638374a 100644 --- a/tests/hwsim/test_ap_psk.py +++ b/tests/hwsim/test_ap_psk.py @@ -2125,14 +2125,8 @@ def test_rsn_ie_proto_psk_sta(dev, apdev): def test_ap_cli_order(dev, apdev): ssid = "test-rsn-setup" passphrase = 'zzzzzzzz' - ifname = apdev[0]['ifname'] - - hapd_global = hostapd.HostapdGlobal() - hapd_global.remove(ifname) - hapd_global.add(ifname) - hapd = hostapd.Hostapd(ifname) - hapd.set_defaults() + hapd = hostapd.add_ap(apdev[0], {}, no_enable=True) hapd.set('ssid', ssid) hapd.set('wpa_passphrase', passphrase) hapd.set('rsn_pairwise', 'CCMP')