From 15c04bb39590af1a96be6a62870425a045e509cf Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Tue, 29 Sep 2020 18:37:11 +0200 Subject: [PATCH] test-runner: Enable --p2p when creating interfaces Enable p2p for the hwsim radios so that we can test P2P. This can be made optional for the tests but it seems safe to enable always. --- tools/test-runner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-runner b/tools/test-runner index 94c10199..fa23a631 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -312,7 +312,7 @@ class VirtualRadio(Radio): self.disable_cipher = None self.disable_iftype = None - args = ['hwsim', '--create', '--name', self.name, '--nointerface'] + args = ['hwsim', '--create', '--name', self.name, '--nointerface', '--p2p'] if config: self.disable_iftype = config.get('iftype_disable', False)