mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 01:46:26 +00:00
The unit test gives net_context_get() an invalid protocol family value which triggers an assert in net_context.c:160 This assert fails the test when it should not as we properly check the return value. Fix this by disabling asserts for this test. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
10 lines
200 B
YAML
10 lines
200 B
YAML
common:
|
|
depends_on: netif
|
|
platform_whitelist: native_posix qemu_x86 qemu_cortex_m3
|
|
tests:
|
|
net.context:
|
|
min_ram: 16
|
|
extra_configs:
|
|
- CONFIG_ASSERT_LEVEL=0
|
|
tags: net net_context
|