From 46b8ea210585f20a29b44230518fde513b92c706 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 9 Mar 2019 11:26:38 +0200 Subject: [PATCH] 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 --- tests/hwsim/test_ap_ft.py | 2 ++ 1 file changed, 2 insertions(+) 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")