Parcourir la source

tests: Initialize hapd variable before try-finally uses

Some TDLS and WPS test cases reference the hapd variable in the finally
block even if the test failed before assigning the value to this
variable. This makes the code in the finally block to fail on
referencing this variable. Assign None to the hapd variable before
starting the tests to avoid this.

Signed-off-by: Jonathan Afek <jonathanx.afek@intel.com>
Jonathan Afek il y a 8 ans
Parent
commit
f8b9e61ef0
2 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 1 0
      tests/hwsim/test_ap_tdls.py
  2. 2 0
      tests/hwsim/test_nfc_wps.py

+ 1 - 0
tests/hwsim/test_ap_tdls.py

@@ -361,6 +361,7 @@ def test_ap_open_tdls_vht(dev, apdev):
                "vht_capab": "",
                "vht_capab": "",
                "vht_oper_chwidth": "0",
                "vht_oper_chwidth": "0",
                "vht_oper_centr_freq_seg0_idx": "0" }
                "vht_oper_centr_freq_seg0_idx": "0" }
+    hapd = None
     try:
     try:
         hapd = hostapd.add_ap(apdev[0], params)
         hapd = hostapd.add_ap(apdev[0], params)
         wlantest_setup(hapd)
         wlantest_setup(hapd)

+ 2 - 0
tests/hwsim/test_nfc_wps.py

@@ -233,6 +233,7 @@ def test_nfc_wps_handover(dev, apdev):
 
 
 def test_nfc_wps_handover_5ghz(dev, apdev):
 def test_nfc_wps_handover_5ghz(dev, apdev):
     """Connect to WPS AP with NFC connection handover on 5 GHz band"""
     """Connect to WPS AP with NFC connection handover on 5 GHz band"""
+    hapd = None
     try:
     try:
         ssid = "test-wps-nfc-handover"
         ssid = "test-wps-nfc-handover"
         params = ap_wps_params(ssid)
         params = ap_wps_params(ssid)
@@ -265,6 +266,7 @@ def test_nfc_wps_handover_5ghz(dev, apdev):
 
 
 def test_nfc_wps_handover_chan14(dev, apdev):
 def test_nfc_wps_handover_chan14(dev, apdev):
     """Connect to WPS AP with NFC connection handover on channel 14"""
     """Connect to WPS AP with NFC connection handover on channel 14"""
+    hapd = None
     try:
     try:
         ssid = "test-wps-nfc-handover"
         ssid = "test-wps-nfc-handover"
         params = ap_wps_params(ssid)
         params = ap_wps_params(ssid)