tests: Verify that sec_dev_type gets reported for P2P peer
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
4e5367516b
commit
d6df0d7e62
1 changed files with 3 additions and 0 deletions
|
@ -148,6 +148,9 @@ def test_discovery_dev_type(dev):
|
||||||
ev = dev[0].wait_event(['P2P-DEVICE-FOUND'], timeout=2)
|
ev = dev[0].wait_event(['P2P-DEVICE-FOUND'], timeout=2)
|
||||||
if ev is None:
|
if ev is None:
|
||||||
raise Exception("P2P device not found")
|
raise Exception("P2P device not found")
|
||||||
|
peer = dev[0].get_peer(dev[1].p2p_dev_addr())
|
||||||
|
if "1-0050F204-2" not in peer['sec_dev_type']:
|
||||||
|
raise Exception("sec_device_type not reported properly")
|
||||||
|
|
||||||
def test_discovery_dev_type_go(dev):
|
def test_discovery_dev_type_go(dev):
|
||||||
"""P2P device discovery with Device Type filter on GO"""
|
"""P2P device discovery with Device Type filter on GO"""
|
||||||
|
|
Loading…
Reference in a new issue