diff mbox series

tests: Flush correct iface in P2PS stale group removal tests

Message ID 20190403151719.12165-7-andrei.otcheretianski@intel.com
State Accepted
Headers show
Series tests: Flush correct iface in P2PS stale group removal tests | expand

Commit Message

Otcheretianski, Andrei April 3, 2019, 3:17 p.m. UTC
FLUSH should be done on P2P device interface, otherwise the networks are
not removed. Fix that.

Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
---
 tests/hwsim/test_p2ps.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Jouni Malinen April 6, 2019, 3:51 p.m. UTC | #1
On Wed, Apr 03, 2019 at 06:17:17PM +0300, Andrei Otcheretianski wrote:
> FLUSH should be done on P2P device interface, otherwise the networks are
> not removed. Fix that.

Thanks, applied.
diff mbox series

Patch

diff --git a/tests/hwsim/test_p2ps.py b/tests/hwsim/test_p2ps.py
index 1430db1b04..b85fcd766a 100644
--- a/tests/hwsim/test_p2ps.py
+++ b/tests/hwsim/test_p2ps.py
@@ -870,7 +870,7 @@  def test_p2ps_stale_group_removal(dev):
 
     # Drop the first persistent group on dev[1] and form new persistent groups
     # on both devices.
-    dev[1].request("FLUSH")
+    dev[1].p2pdev_request("FLUSH")
     go_neg_pin_authorized_persistent(i_dev=dev[0], i_intent=15,
                                      r_dev=dev[1], r_intent=0)
     dev[0].remove_group()
@@ -909,7 +909,7 @@  def test_p2ps_stale_group_removal2(dev):
 
     # Drop the first persistent group on dev[1] and form new persistent groups
     # on both devices.
-    dev[1].request("FLUSH")
+    dev[1].p2pdev_request("FLUSH")
     go_neg_pin_authorized_persistent(i_dev=dev[0], i_intent=0,
                                      r_dev=dev[1], r_intent=15)
     dev[1].remove_group()