dd34860dcd
Command line parameter to run-p2p-tests.py can now be used to select which test case is run instead of always running all test cases. Signed-hostap: Jouni Malinen <j@w1.fi>
77 lines
1.8 KiB
Python
Executable file
77 lines
1.8 KiB
Python
Executable file
#!/usr/bin/python
|
|
#
|
|
# P2P tests
|
|
# Copyright (c) 2013, Jouni Malinen <j@w1.fi>
|
|
#
|
|
# This software may be distributed under the terms of the BSD license.
|
|
# See README for more details.
|
|
|
|
import os
|
|
import sys
|
|
import time
|
|
|
|
import logging
|
|
|
|
from wpasupplicant import WpaSupplicant
|
|
|
|
import test_p2p_grpform
|
|
|
|
def main():
|
|
idx = 1
|
|
if len(sys.argv) > 1 and sys.argv[1] == '-d':
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
idx = idx + 1
|
|
elif len(sys.argv) > 1 and sys.argv[1] == '-q':
|
|
logging.basicConfig(level=logging.WARNING)
|
|
idx = idx + 1
|
|
else:
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
if len(sys.argv) > idx:
|
|
test_filter = sys.argv[idx]
|
|
else:
|
|
test_filter = None
|
|
|
|
dev0 = WpaSupplicant('wlan0')
|
|
dev1 = WpaSupplicant('wlan1')
|
|
dev2 = WpaSupplicant('wlan2')
|
|
dev = [ dev0, dev1, dev2 ]
|
|
|
|
for d in dev:
|
|
if not d.ping():
|
|
print d.ifname + ": No response from wpa_supplicant"
|
|
return
|
|
d.reset()
|
|
print "DEV: " + d.ifname + ": " + d.p2p_dev_addr()
|
|
|
|
tests = []
|
|
test_p2p_grpform.add_tests(tests)
|
|
|
|
passed = []
|
|
failed = []
|
|
|
|
for t in tests:
|
|
if test_filter:
|
|
if test_filter not in t.__name__:
|
|
continue
|
|
print "START " + t.__name__
|
|
for d in dev:
|
|
d.request("NOTE TEST-START " + t.__name__)
|
|
try:
|
|
t(dev)
|
|
passed.append(t.__name__)
|
|
print "PASS " + t.__name__
|
|
except Exception, e:
|
|
print e
|
|
failed.append(t.__name__)
|
|
print "FAIL " + t.__name__
|
|
for d in dev:
|
|
d.request("NOTE TEST-STOP " + t.__name__)
|
|
|
|
print "passed tests: " + str(passed)
|
|
print "failed tests: " + str(failed)
|
|
if len(failed):
|
|
sys.exit(1)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|