From 656f4a3edd94a77f34de87a3efee79f9a4b3db7f Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Tue, 5 Mar 2019 17:12:44 +0200 Subject: [PATCH] tests: Enable needed SAE groups explicitly in sigma_dut_sae Configure the sae_groups parameter for hostapd explicitly in preparation for the default value change in the implementation. Signed-off-by: Jouni Malinen --- tests/hwsim/test_sigma_dut.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/test_sigma_dut.py b/tests/hwsim/test_sigma_dut.py index acf3ea475..c0d826bd0 100644 --- a/tests/hwsim/test_sigma_dut.py +++ b/tests/hwsim/test_sigma_dut.py @@ -268,6 +268,7 @@ def test_sigma_dut_sae(dev, apdev): params = hostapd.wpa2_params(ssid=ssid, passphrase="12345678") params['wpa_key_mgmt'] = 'SAE' params["ieee80211w"] = "2" + params['sae_groups'] = '19 20 21' hapd = hostapd.add_ap(apdev[0], params) sigma_dut_cmd_check("sta_reset_default,interface,%s" % ifname)