From ee275671980fdb095572535ddac6ede44e82c898 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 29 Nov 2019 00:06:50 +0200 Subject: [PATCH] tests: Clear sae_pwe at the end of sigma_dut test cases sigma_dut does not clear sae_pwe value when the command line argument "-2" is used, so we need to explicitly clear this from wpa_supplicant at the end of the test case. Signed-off-by: Jouni Malinen --- tests/hwsim/test_sigma_dut.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/hwsim/test_sigma_dut.py b/tests/hwsim/test_sigma_dut.py index 12f9d3b1f..7f24937f9 100644 --- a/tests/hwsim/test_sigma_dut.py +++ b/tests/hwsim/test_sigma_dut.py @@ -3334,6 +3334,7 @@ def test_sigma_dut_sae_h2e(dev, apdev): raise Exception("Unexpected error result: " + res) finally: stop_sigma_dut(sigma) + dev[0].set("sae_pwe", "0") def test_sigma_dut_sae_h2e_ap_loop(dev, apdev): """sigma_dut controlled SAE H2E association (AP using loop-only)""" @@ -3350,6 +3351,7 @@ def test_sigma_dut_sae_h2e_ap_loop(dev, apdev): no_connect_sae_pwe_sta(dev[0], ifname, extra="sae_pwe,h2e") finally: stop_sigma_dut(sigma) + dev[0].set("sae_pwe", "0") def test_sigma_dut_sae_h2e_ap_h2e(dev, apdev): """sigma_dut controlled SAE H2E association (AP using H2E-only)""" @@ -3366,6 +3368,7 @@ def test_sigma_dut_sae_h2e_ap_h2e(dev, apdev): connect_sae_pwe_sta(dev[0], ifname, extra="sae_pwe,h2e") finally: stop_sigma_dut(sigma) + dev[0].set("sae_pwe", "0") def test_sigma_dut_ap_sae_h2e(dev, apdev, params): """sigma_dut controlled AP with SAE H2E"""