tests: Rename AP testing scripts to be more generic
authorJouni Malinen <j@w1.fi>
Fri, 29 Mar 2013 15:19:47 +0000 (17:19 +0200)
committerJouni Malinen <j@w1.fi>
Fri, 29 Mar 2013 15:19:47 +0000 (17:19 +0200)
Signed-hostap: Jouni Malinen <j@w1.fi>

tests/hwsim/run-all.sh
tests/hwsim/run-ap-tests.py [moved from tests/hwsim/run-ap-wpa2-tests.py with 97% similarity]
tests/hwsim/start-ap.sh [moved from tests/hwsim/start-ap-wpa2-psk.sh with 100% similarity]
tests/hwsim/test_ap_tdls.py [moved from tests/hwsim/test_ap_wpa2.py with 97% similarity]

index 49376e6..fab4751 100755 (executable)
@@ -3,8 +3,8 @@
 errors=0
 ./start-p2p.sh
 ./run-p2p-tests.py || errors=1
-./start-ap-wpa2-psk.sh
-./run-ap-wpa2-tests.py || errors=1
+./start-ap.sh
+./run-ap-tests.py || errors=1
 ./stop-wifi.sh
 if [ $errors -gt 0 ]; then
     exit 1
similarity index 97%
rename from tests/hwsim/run-ap-wpa2-tests.py
rename to tests/hwsim/run-ap-tests.py
index 3a18cbf..96f823e 100755 (executable)
@@ -44,7 +44,7 @@ def main():
 
     tests = []
     for t in os.listdir("."):
-        m = re.match(r'(test_ap_wpa2.*)\.py$', t)
+        m = re.match(r'(test_ap_.*)\.py$', t)
         if m:
             print "Import test cases from " + t
             mod = __import__(m.group(1))
similarity index 97%
rename from tests/hwsim/test_ap_wpa2.py
rename to tests/hwsim/test_ap_tdls.py
index 4b2ba7e..44e687c 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Tests with a WPA2-PSK AP
+# TDLS tests
 # Copyright (c) 2013, Jouni Malinen <j@w1.fi>
 #
 # This software may be distributed under the terms of the BSD license.
@@ -27,10 +27,6 @@ def connect_2sta(dev):
     hwsim_utils.test_connectivity(dev[0].ifname, "wlan2")
     hwsim_utils.test_connectivity(dev[1].ifname, "wlan2")
 
-def test_ap_wpa2_psk_2sta(dev):
-    """WPA2-PSK AP and two stations"""
-    connect_2sta(dev)
-
 def wlantest_tdls(field, bssid, addr1, addr2):
     res = subprocess.check_output(["../../wlantest/wlantest_cli",
                                    "get_tdls_counter", field, bssid, addr1,
@@ -190,7 +186,6 @@ def test_ap_wpa2_tdls_diff_rsnie(dev):
     teardown_tdls(dev[1], dev[0], bssid)
 
 def add_tests(tests):
-    tests.append(test_ap_wpa2_psk_2sta)
     tests.append(test_ap_wpa2_tdls)
     tests.append(test_ap_wpa2_tdls_concurrent_init)
     tests.append(test_ap_wpa2_tdls_concurrent_init2)