From 898c959a6f6c1cd6aa5dff16f7135473aaf09980 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 20 Mar 2015 15:32:30 +0200 Subject: [PATCH] tests: P2P_SERVICE_DEL asp all Signed-off-by: Jouni Malinen --- tests/hwsim/test_p2ps.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/hwsim/test_p2ps.py b/tests/hwsim/test_p2ps.py index 9e8cd4257..0f96b3df2 100644 --- a/tests/hwsim/test_p2ps.py +++ b/tests/hwsim/test_p2ps.py @@ -737,6 +737,10 @@ def test_p2ps_service_discovery_multiple_queries(dev): if ev4 is None: raise Exception("Unable to remove the advertisement instance") + if "OK" not in dev[0].global_request("P2P_SERVICE_ADD asp 1 12345678 1 1108 org.wi-fi.wfds.foobar svc_info='Test'"): + raise Exception("P2P_SERVICE_ADD failed") + if "OK" not in dev[0].global_request("P2P_SERVICE_DEL asp all"): + raise Exception("P2P_SERVICE_DEL asp all failed") if "OK" not in dev[0].global_request("P2P_SERVICE_ADD asp 1 12345678 1 1108 org.wi-fi.wfds.foobar svc_info='Test'"): raise Exception("P2P_SERVICE_ADD failed") if "OK" not in dev[0].global_request("P2P_SERVICE_REP asp 1 12345678 1 1108 org.wi-fi.wfds.foobar svc_info='Test'"):