28 lines
715 B
Python
28 lines
715 B
Python
|
#!/usr/bin/python
|
||
|
#
|
||
|
# hwsim testing utilities
|
||
|
# 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 subprocess
|
||
|
import logging
|
||
|
logger = logging.getLogger(__name__)
|
||
|
|
||
|
def test_connectivity(ifname1, ifname2):
|
||
|
cmd = ["sudo",
|
||
|
"../../mac80211_hwsim/tools/hwsim_test",
|
||
|
ifname1,
|
||
|
ifname2]
|
||
|
try:
|
||
|
s = subprocess.check_output(cmd)
|
||
|
logger.debug(s)
|
||
|
except subprocess.CalledProcessError, e:
|
||
|
print "hwsim failed: " + str(e.returncode)
|
||
|
print e.output
|
||
|
raise
|
||
|
|
||
|
def test_connectivity_p2p(dev1, dev2):
|
||
|
test_connectivity(dev1.ifname, dev2.ifname)
|