mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 18:28:23 -05:00
tests: ap_open_out_of_memory to skip i802_init test if needed
The eloop_register_read_sock() call in i802_init() will be skipped if the driver supports control port for EAPOL RX, so need to skip this part of the test case conditionally. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
c3bb8865a0
commit
e480ed38eb
@ -277,6 +277,7 @@ def hapd_out_of_mem(hapd, apdev, count, func):
|
|||||||
def test_ap_open_out_of_memory(dev, apdev):
|
def test_ap_open_out_of_memory(dev, apdev):
|
||||||
"""hostapd failing to setup interface due to allocation failure"""
|
"""hostapd failing to setup interface due to allocation failure"""
|
||||||
hapd = hostapd.add_ap(apdev[0], {"ssid": "open"})
|
hapd = hostapd.add_ap(apdev[0], {"ssid": "open"})
|
||||||
|
flags2 = hapd.request("DRIVER_FLAGS2").splitlines()[1:]
|
||||||
hapd_out_of_mem(hapd, apdev[1], 1, "hostapd_alloc_bss_data")
|
hapd_out_of_mem(hapd, apdev[1], 1, "hostapd_alloc_bss_data")
|
||||||
|
|
||||||
for i in range(1, 3):
|
for i in range(1, 3):
|
||||||
@ -292,6 +293,7 @@ def test_ap_open_out_of_memory(dev, apdev):
|
|||||||
for i in range(1, 3):
|
for i in range(1, 3):
|
||||||
hapd_out_of_mem(hapd, apdev[1], i, "=wpa_driver_nl80211_drv_init")
|
hapd_out_of_mem(hapd, apdev[1], i, "=wpa_driver_nl80211_drv_init")
|
||||||
|
|
||||||
|
if 'CONTROL_PORT_RX' not in flags2:
|
||||||
# eloop_register_read_sock() call from i802_init()
|
# eloop_register_read_sock() call from i802_init()
|
||||||
hapd_out_of_mem(hapd, apdev[1], 1, "eloop_sock_table_add_sock;?eloop_register_sock;?eloop_register_read_sock;=i802_init")
|
hapd_out_of_mem(hapd, apdev[1], 1, "eloop_sock_table_add_sock;?eloop_register_sock;?eloop_register_read_sock;=i802_init")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user