From e0cd7172c2a80616af89e92d24d4852400668c8b Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 28 Nov 2019 15:32:56 +0200 Subject: [PATCH] tests: Advertise UTF-8 SSID in DPP-provisioned AP Signed-off-by: Jouni Malinen --- tests/hwsim/test_dpp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/test_dpp.py b/tests/hwsim/test_dpp.py index e1b25d5b9..c96aeee04 100644 --- a/tests/hwsim/test_dpp.py +++ b/tests/hwsim/test_dpp.py @@ -1624,6 +1624,7 @@ def update_hapd_config(hapd): logger.info("Update AP configuration to use key_mgmt=DPP") hapd.disable() hapd.set("ssid", ssid) + hapd.set("utf8_ssid", "1") hapd.set("wpa", "2") hapd.set("wpa_key_mgmt", "DPP") hapd.set("ieee80211w", "2")