mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
tests: Use cmd_execute() in set_powersave()
hwsim_utils.set_powersace() used to do file operations locally in python. Start using the cmd_execute() general function for file operations so that this would also work on remote setups. Signed-off-by: Jonathan Afek <jonathanx.afek@intel.com>
This commit is contained in:
parent
f9442f2967
commit
f11005812a
@ -174,6 +174,8 @@ def test_connectivity_sta(dev1, dev2, dscp=None, tos=None):
|
||||
|
||||
def set_powersave(dev, val):
|
||||
phy = dev.get_driver_status_field("phyname")
|
||||
psf = open('/sys/kernel/debug/ieee80211/%s/hwsim/ps' % phy, 'w')
|
||||
psf.write('%d\n' % val)
|
||||
psf.close()
|
||||
fname = '/sys/kernel/debug/ieee80211/%s/hwsim/ps' % phy
|
||||
data = '%d' % val
|
||||
(res, data) = dev.cmd_execute(["echo", data, ">", fname], shell=True)
|
||||
if res != 0:
|
||||
raise Exception("Failed to set power save for device")
|
||||
|
Loading…
Reference in New Issue
Block a user