Browse Source

tests: Move hessid and access_network_type reset to test case

This removes unnecessary reset() steps from between every test case.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen 10 years ago
parent
commit
e4d7b5134e
2 changed files with 7 additions and 2 deletions
  1. 7 0
      tests/hwsim/test_ap_hs20.py
  2. 0 2
      tests/hwsim/wpasupplicant.py

+ 7 - 0
tests/hwsim/test_ap_hs20.py

@@ -241,6 +241,13 @@ def test_ap_nai_home_realm_query(dev, apdev):
 
 def test_ap_interworking_scan_filtering(dev, apdev):
     """Interworking scan filtering with HESSID and access network type"""
+    try:
+        return _test_ap_interworking_scan_filtering(dev, apdev)
+    finally:
+        dev[0].request("SET hessid 00:00:00:00:00:00")
+        dev[0].request("SET access_network_type 15")
+
+def _test_ap_interworking_scan_filtering(dev, apdev):
     bssid = apdev[0]['bssid']
     params = hs20_ap_params()
     ssid = "test-hs20-ap1"

+ 0 - 2
tests/hwsim/wpasupplicant.py

@@ -93,8 +93,6 @@ class WpaSupplicant:
             logger.info("FLUSH to " + self.ifname + " failed: " + res)
         self.request("WPS_ER_STOP")
         self.request("SET pmf 0")
-        self.request("SET hessid 00:00:00:00:00:00")
-        self.request("SET access_network_type 15")
         self.request("SET p2p_add_cli_chan 0")
         self.request("SET p2p_no_go_freq ")
         self.request("SET p2p_pref_chan ")