tests: Modify use of GET command to support P2P Device interface
authorAvraham Stern <avraham.stern@intel.com>
Thu, 7 Apr 2016 10:32:01 +0000 (13:32 +0300)
committerJouni Malinen <j@w1.fi>
Sun, 24 Apr 2016 20:45:19 +0000 (23:45 +0300)
Support configurations that use a dedicated P2P Device interface by
using the global control interface and specifying the interface name for
the GET commands fetching the ip_addr_go parameter.

Signed-off-by: Avraham Stern <avraham.stern@intel.com>
tests/hwsim/test_nfc_p2p.py

index 3236ce2..4425a06 100644 (file)
@@ -48,7 +48,7 @@ def test_nfc_p2p_go_neg(dev):
 
 def _test_nfc_p2p_go_neg(dev):
     set_ip_addr_info(dev[0])
-    ip = dev[0].request("GET ip_addr_go")
+    ip = dev[0].p2pdev_request("GET ip_addr_go")
     if ip != "192.168.42.1":
         raise Exception("Unexpected ip_addr_go returned: " + ip)
     dev[0].global_request("SET p2p_go_intent 10")
@@ -99,7 +99,7 @@ def test_nfc_p2p_go_neg_ip_pool_oom(dev):
 
 def _test_nfc_p2p_go_neg_ip_pool_oom(dev):
     set_ip_addr_info(dev[0])
-    ip = dev[0].request("GET ip_addr_go")
+    ip = dev[0].p2pdev_request("GET ip_addr_go")
     if ip != "192.168.42.1":
         raise Exception("Unexpected ip_addr_go returned: " + ip)
     dev[0].global_request("SET p2p_go_intent 10")