From: Jouni Malinen Date: Thu, 31 May 2018 13:13:58 +0000 (+0300) Subject: tests: Update mesh_oom to match implementation change X-Git-Tag: hostap_2_7~300 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=13f69792b0c36cb0c8526c778cf45438b093be5c;p=thirdparty%2Fhostap.git tests: Update mesh_oom to match implementation change The initial direct allocation within wpa_supplicant_mesh_init() was removed. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_wpas_mesh.py b/tests/hwsim/test_wpas_mesh.py index bf10645b0..5feb9bee5 100644 --- a/tests/hwsim/test_wpas_mesh.py +++ b/tests/hwsim/test_wpas_mesh.py @@ -1642,7 +1642,7 @@ def test_mesh_oom(dev, apdev): if ev is None: raise Exception("Init failure not reported") - with alloc_fail(dev[0], 3, "=wpa_supplicant_mesh_init"): + with alloc_fail(dev[0], 2, "=wpa_supplicant_mesh_init"): add_open_mesh_network(dev[0], basic_rates="60 120 240") ev = dev[0].wait_event(["Failed to init mesh"]) if ev is None: @@ -1664,7 +1664,7 @@ def test_mesh_oom(dev, apdev): raise logger.info("Ignore no-oom for i=%d" % i) - with alloc_fail(dev[0], 4, "=wpa_supplicant_mesh_init"): + with alloc_fail(dev[0], 3, "=wpa_supplicant_mesh_init"): id = add_mesh_secure_net(dev[0]) dev[0].mesh_group_add(id) ev = dev[0].wait_event(["Failed to init mesh"])