tests: Fix ap_cipher_tkip_countermeasures_sta test
Write the main interface address to the tkip_mic_test debugfs file to generate Michael MIC failure event (which is different than the p2p_dev_addr when a dedicated P2P Device interface is used). Signed-off-by: Avraham Stern <avraham.stern@intel.com>
This commit is contained in:
parent
2bd5bdcd4b
commit
f3b7761ab7
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ def test_ap_cipher_tkip_countermeasures_sta(dev, apdev):
|
||||||
|
|
||||||
dev[0].dump_monitor()
|
dev[0].dump_monitor()
|
||||||
with open(testfile, "w") as f:
|
with open(testfile, "w") as f:
|
||||||
f.write(dev[0].p2p_dev_addr())
|
f.write(dev[0].own_addr())
|
||||||
ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=1)
|
ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=1)
|
||||||
if ev is not None:
|
if ev is not None:
|
||||||
raise Exception("Unexpected disconnection on first Michael MIC failure")
|
raise Exception("Unexpected disconnection on first Michael MIC failure")
|
||||||
|
|
Loading…
Reference in a new issue