mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 14:22:33 +00:00
We need to increase the stack sizes if user enables CONFIG_COVERAGE option. You can test this by this command sanitycheck --coverage -p qemu_x86 -T tests/net/udp \ -T tests/net/mgmt -T tests/net/mld This is partial fix for issues described in #17323 Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
25 lines
593 B
Plaintext
25 lines
593 B
Plaintext
CONFIG_NETWORKING=y
|
|
CONFIG_NET_TEST=y
|
|
CONFIG_NET_L2_DUMMY=y
|
|
CONFIG_NET_UDP=y
|
|
CONFIG_NET_TCP=n
|
|
CONFIG_NET_MAX_CONN=64
|
|
CONFIG_NET_IPV6=y
|
|
CONFIG_NET_IPV4=y
|
|
CONFIG_NET_BUF=y
|
|
CONFIG_ZTEST_STACKSIZE=2048
|
|
CONFIG_MAIN_STACK_SIZE=2048
|
|
CONFIG_NET_PKT_RX_COUNT=10
|
|
CONFIG_NET_PKT_TX_COUNT=10
|
|
CONFIG_NET_BUF_RX_COUNT=15
|
|
CONFIG_NET_BUF_TX_COUNT=15
|
|
CONFIG_NET_LOG=y
|
|
CONFIG_ENTROPY_GENERATOR=y
|
|
CONFIG_TEST_RANDOM_GENERATOR=y
|
|
CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT=2
|
|
CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT=2
|
|
|
|
# Turn off UDP checksum checking as the test fails otherwise.
|
|
CONFIG_NET_UDP_CHECKSUM=n
|
|
CONFIG_ZTEST=y
|