From: Jouni Malinen Date: Sat, 9 Mar 2019 09:26:38 +0000 (+0200) Subject: tests: Fix ap_ft_pmf_over_ds X-Git-Tag: hostap_2_8~269 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46b8ea210585f20a29b44230518fde513b92c706;p=thirdparty%2Fhostap.git tests: Fix ap_ft_pmf_over_ds The main step of the test case was accidentally removed when adding the cipher specific versions. Fixes: ffcaca68d3ed ("tests: FT with different BIP algorithms") Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_ft.py b/tests/hwsim/test_ap_ft.py index cfcf68e33..92448bc94 100644 --- a/tests/hwsim/test_ap_ft.py +++ b/tests/hwsim/test_ap_ft.py @@ -790,6 +790,8 @@ def test_ap_ft_pmf_over_ds(dev, apdev): params["ieee80211w"] = "2" hapd1 = hostapd.add_ap(apdev[1], params) + run_roams(dev[0], apdev, hapd0, hapd1, ssid, passphrase, over_ds=True) + def test_ap_ft_pmf_bip_cmac_128_over_ds(dev, apdev): """WPA2-PSK-FT AP over DS with PMF/BIP-CMAC-128""" run_ap_ft_pmf_bip_over_ds(dev, apdev, "AES-128-CMAC")