aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Prestwood <prestwoj@gmail.com>2024-02-28 09:47:43 -0800
committerDenis Kenzior <denkenz@gmail.com>2024-03-01 08:42:02 -0600
commitc76f7eac05e291216f9475aa862d437644ae585d (patch)
tree9699eb9282227d40e3cf0ae4c8d17e6c406f6200
parentc2ad0006ebac2718adc752c7f4d0dcf15e092599 (diff)
auto-t: add ability to reserve radios not for IWD/hostapd/etc
If the test needs to do something very specific it may be useful to prevent IWD from managing all the radios. This can now be done by setting a "reserve" option in the radio settings. The value of this should be something other than iwd, hostapd, or wpa_supplicant. For example: [rad1] reserve=false
-rwxr-xr-xtools/run-tests9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/run-tests b/tools/run-tests
index 11ad73c05..fdd0b989d 100755
--- a/tools/run-tests
+++ b/tools/run-tests
@@ -73,10 +73,10 @@ class Interface:
Process(['ip', 'link', 'set', self.name, state], namespace=self.ns.name).wait()
class Radio:
- def __init__(self, name, default_ns):
+ def __init__(self, name, default_ns, used_by='iwd'):
self.name = name
# hostapd will reset this if this radio is used by it
- self.use = 'iwd'
+ self.use = used_by
self.interface = None
self.ns = default_ns
@@ -131,15 +131,18 @@ class VirtualRadio(Radio):
self.hwsim = config.hwsim.Hwsim()
+ used_by = 'iwd'
+
if cfg:
self.disable_iftype = cfg.get('iftype_disable', None)
self.disable_cipher = cfg.get('cipher_disable', None)
+ used_by = cfg.get('reserve', 'iwd')
self._radio = self.hwsim.radios.create(name, p2p_device=True,
iftype_disable=self.disable_iftype,
cipher_disable=self.disable_cipher)
- super().__init__(self._radio.name, default_ns)
+ super().__init__(self._radio.name, default_ns, used_by)
def __del__(self):
super().__del__()