From b2210bd2890592e0b67abfedfeff73bf4823140f Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Mon, 24 Feb 2014 13:55:42 +0200 Subject: [PATCH] tests: Stop WPS ER on station reset This seems to be needed in some cases to avoid issues in test cases that assume there are no other ERs running. Signed-off-by: Jouni Malinen --- tests/hwsim/wpasupplicant.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/hwsim/wpasupplicant.py b/tests/hwsim/wpasupplicant.py index 3a7908b1e..3c6c4352a 100644 --- a/tests/hwsim/wpasupplicant.py +++ b/tests/hwsim/wpasupplicant.py @@ -84,6 +84,7 @@ class WpaSupplicant: res = self.request("FLUSH") if not "OK" in res: logger.info("FLUSH to " + self.ifname + " failed: " + res) + self.request("WPS_ER_STOP") self.request("SET external_sim 0") self.request("SET hessid 00:00:00:00:00:00") self.request("SET access_network_type 15")