tests: Wi-Fi Display through the global interface
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
a7ca6dac44
commit
20066e3fe7
1 changed files with 7 additions and 0 deletions
|
@ -137,6 +137,13 @@ def test_wifi_display(dev):
|
|||
if dev[0].request("WFD_SUBELEM_GET 8") != "":
|
||||
raise Exception("Unexpected WFD_SUBELEM_GET 8 response")
|
||||
|
||||
if dev[0].global_request("WFD_SUBELEM_GET 2") != audio:
|
||||
raise Exception("Unexpected WFD_SUBELEM_GET 2 value from global interface")
|
||||
if "OK" not in dev[0].global_request("WFD_SUBELEM_SET 1 0006020304050608"):
|
||||
raise Exception("WFD_SUBELEM_SET failed on global interface")
|
||||
if dev[0].request("WFD_SUBELEM_GET 1") != "0006020304050608":
|
||||
raise Exception("Unexpected WFD_SUBELEM_GET 1 value (per-interface)")
|
||||
|
||||
dev[0].request("SET wifi_display 0")
|
||||
dev[1].request("SET wifi_display 0")
|
||||
dev[2].request("SET wifi_display 0")
|
||||
|
|
Loading…
Reference in a new issue