]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Clear sae_pwe at the end of sigma_dut test cases
authorJouni Malinen <jouni@codeaurora.org>
Thu, 28 Nov 2019 22:06:50 +0000 (00:06 +0200)
committerJouni Malinen <j@w1.fi>
Thu, 28 Nov 2019 22:06:50 +0000 (00:06 +0200)
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 <jouni@codeaurora.org>
tests/hwsim/test_sigma_dut.py

index 12f9d3b1f19e5b7573c3b2b7b9ea703cc74c7e91..7f24937f9bf4cc8a83e607224a378164a550b294 100644 (file)
@@ -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"""