Lines Matching full:ignored

58 	/* Some tests mark ifaces as ignored, this must be reset between each test. */  in reset_test_iface_state()
1149 /* Verify that all_if_up brings all ifaces up, but only if they are not ignored or
1157 /* Take all ifaces up (do not skip ignored) */ in ZTEST()
1179 /* Take all ifaces up (skip ignored) */ in ZTEST()
1183 /* Verify all except ignored are up */ in ZTEST()
1184 zassert_true(net_if_is_admin_up(ifa2), "All non-ignored ifaces should be admin-up."); in ZTEST()
1185 zassert_true(net_if_is_admin_up(ifb), "All non-ignored ifaces should be admin-up."); in ZTEST()
1186 zassert_true(net_if_is_admin_up(ifni), "All non-ignored ifaces should be admin-up."); in ZTEST()
1187 zassert_true(net_if_is_admin_up(ifnull), "All non-ignored ifaces should be admin-up."); in ZTEST()
1188 zassert_true(net_if_is_admin_up(ifnone), "All non-ignored ifaces should be admin-up."); in ZTEST()
1190 zassert_false(net_if_is_admin_up(ifa1), "Ignored iface should not be admin-up."); in ZTEST()
1194 * that are not ignored, or all of them if skip_ignored is false
1202 /* Connect all ifaces (do not skip ignored) */ in ZTEST()
1234 /* Connect all ifaces (skip ignored) */ in ZTEST()
1238 /* Verify all except ignored are up */ in ZTEST()
1239 zassert_true(net_if_is_admin_up(ifa2), "All non-ignored ifaces should be admin-up."); in ZTEST()
1240 zassert_true(net_if_is_admin_up(ifb), "All non-ignored ifaces should be admin-up."); in ZTEST()
1241 zassert_true(net_if_is_admin_up(ifni), "All non-ignored ifaces should be admin-up."); in ZTEST()
1242 zassert_true(net_if_is_admin_up(ifnull), "All non-ignored ifaces should be admin-up."); in ZTEST()
1244 zassert_false(net_if_is_admin_up(ifa1), "All ignored ifaces should be admin-down."); in ZTEST()
1245 zassert_false(net_if_is_admin_up(ifnone), "All ignored ifaces should be admin-down."); in ZTEST()
1247 /* Verify bound ifaces are connected, except for ignored */ in ZTEST()
1248 zassert_true(net_if_is_up(ifa2), "All non-ignored bound ifaces should be connected."); in ZTEST()
1249 zassert_true(net_if_is_up(ifb), "All non-ignored bound ifaces should be connected."); in ZTEST()
1250 zassert_true(net_if_is_up(ifni), "All non-ignored bound ifaces should be connected."); in ZTEST()
1252 zassert_false(net_if_is_up(ifa1), "Ignored iface should not be connected."); in ZTEST()
1255 /* Verify that all_if_down takes all ifaces down, but only if they are not ignored,
1272 /* Take all ifaces down (do not skip ignored) */ in ZTEST()
1293 /* Take all ifaces down (skip ignored) */ in ZTEST()
1297 /* Verify that all except the ignored iface is down */ in ZTEST()
1298 zassert_false(net_if_is_admin_up(ifa2), "All non-ignored ifaces should be admin-down."); in ZTEST()
1299 zassert_false(net_if_is_admin_up(ifb), "All non-ignored ifaces should be admin-down."); in ZTEST()
1300 zassert_false(net_if_is_admin_up(ifni), "All non-ignored ifaces should be admin-down."); in ZTEST()
1301 zassert_false(net_if_is_admin_up(ifnull), "All non-ignored ifaces should be admin-down."); in ZTEST()
1302 zassert_false(net_if_is_admin_up(ifnone), "All non-ignored ifaces should be admin-down."); in ZTEST()
1304 zassert_true(net_if_is_admin_up(ifa1), "Ignored iface should be admin-up."); in ZTEST()
1307 /* Verify that all_if_disconnect disconnects all bound ifaces, but only if they are not ignored,
1331 /* Disconnect all ifaces (do not skip ignored) */ in ZTEST()
1357 /* Disconnect all ifaces (skip ignored) */ in ZTEST()
1362 /* Verify that all bound ifaces are disconnected, except the ignored iface */ in ZTEST()
1363 zassert_false(net_if_is_up(ifa2), "All non-ignored bound ifaces should be disconnected."); in ZTEST()
1364 zassert_false(net_if_is_up(ifb), "All non-ignored bound ifaces should be disconnected."); in ZTEST()
1365 zassert_false(net_if_is_up(ifni), "All non-ignored bound ifaces should be disconnected."); in ZTEST()
1367 zassert_true(net_if_is_up(ifa1), "Ignored iface should still be connected"); in ZTEST()