From: David Spinadel Date: Wed, 6 Apr 2016 16:42:05 +0000 (+0300) Subject: tests: Update NEIGHBOR_REP_REQUEST format X-Git-Tag: hostap_2_6~592 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56de6fe4fe1ee373776059ef668fbc83624195a6;p=thirdparty%2Fhostap.git tests: Update NEIGHBOR_REP_REQUEST format Use quotation marks to match the new SSID encoding format in the NEIGHBOR_REP_REQUEST command. In this specific test case, the exact SSID value did not make any difference for behavior. The previous version ended up getting decoded as a hexstring after the NEIGHBOR_REP_REQUEST format change. The new version goes back to the ASCII string version of "abcdef". Signed-off-by: David Spinadel --- diff --git a/tests/hwsim/test_wpas_ctrl.py b/tests/hwsim/test_wpas_ctrl.py index 8bbacd2ef..48421d3cd 100644 --- a/tests/hwsim/test_wpas_ctrl.py +++ b/tests/hwsim/test_wpas_ctrl.py @@ -1278,7 +1278,7 @@ def test_wpas_ctrl_neighbor_rep_req(dev, apdev): dev[0].connect("test", key_mgmt="NONE", scan_freq="2412") if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST"): raise Exception("Request succeeded unexpectedly") - if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=abcdef"): + if "FAIL" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"abcdef\""): raise Exception("Request succeeded unexpectedly") dev[0].request("DISCONNECT") @@ -1300,7 +1300,7 @@ def test_wpas_ctrl_neighbor_rep_req(dev, apdev): raise Exception("RRM report result not indicated") logger.info("RRM result: " + ev) - if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=abcdef"): + if "OK" not in dev[0].request("NEIGHBOR_REP_REQUEST ssid=\"abcdef\""): raise Exception("Request failed") ev = dev[0].wait_event([ "RRM-NEIGHBOR-REP-RECEIVED", "RRM-NEIGHBOR-REP-REQUEST-FAILED" ], timeout=10)