tests: Modify pmksa_cache test sets for python3

Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
Masashi Honma 2019-01-24 16:46:19 +09:00 committed by Jouni Malinen
parent 26b91346b9
commit 1699309378
1 changed files with 5 additions and 5 deletions

View File

@ -1038,8 +1038,8 @@ def test_rsn_preauth_processing(dev, apdev):
socket.htons(0x88c7)) socket.htons(0x88c7))
sock.bind(("lo", socket.htons(0x88c7))) sock.bind(("lo", socket.htons(0x88c7)))
foreign = "\x02\x03\x04\x05\x06\x07" foreign = b"\x02\x03\x04\x05\x06\x07"
proto = "\x88\xc7" proto = b"\x88\xc7"
tests = [] tests = []
# RSN: too short pre-auth packet (len=14) # RSN: too short pre-auth packet (len=14)
tests += [ _bssid + foreign + proto ] tests += [ _bssid + foreign + proto ]
@ -1077,9 +1077,9 @@ def test_rsn_preauth_local_errors(dev, apdev):
socket.htons(0x88c7)) socket.htons(0x88c7))
sock.bind(("lo", socket.htons(0x88c7))) sock.bind(("lo", socket.htons(0x88c7)))
foreign = "\x02\x03\x04\x05\x06\x07" foreign = b"\x02\x03\x04\x05\x06\x07"
foreign2 = "\x02\x03\x04\x05\x06\x08" foreign2 = b"\x02\x03\x04\x05\x06\x08"
proto = "\x88\xc7" proto = b"\x88\xc7"
with alloc_fail(hapd, 1, "ap_sta_add;rsn_preauth_receive"): with alloc_fail(hapd, 1, "ap_sta_add;rsn_preauth_receive"):
sock.send(_bssid + foreign + proto + struct.pack('>BBH', 2, 1, 0)) sock.send(_bssid + foreign + proto + struct.pack('>BBH', 2, 1, 0))