zephyr/tests/net/tcp/testcase.yaml
Robert Lubos 8e2722e1ca net: Provide separate configs for TX/RX memory pool for variable bufs
Instead of having a single config specifying the memory pool size for
variable-sized net buffers, have a separate one for TX and RX for better
configuration granularity when optimizing memory usage of the
application.

Deprecate the old configuration but use its value as a default (for now)
for the new configs. This will need to change when the config is
deleted.

Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
2024-03-29 15:56:07 -05:00

18 lines
427 B
YAML

common:
depends_on: netif
tags:
- net
- tcp
tests:
net.tcp.simple:
extra_configs:
- CONFIG_NET_TCP_RECV_QUEUE_TIMEOUT=1000
net.tcp.no_recv_queue:
extra_configs:
- CONFIG_NET_TCP_RECV_QUEUE_TIMEOUT=0
net.tcp.variable_buf_size:
extra_configs:
- CONFIG_NET_BUF_VARIABLE_DATA_SIZE=y
- CONFIG_NET_PKT_BUF_RX_DATA_POOL_SIZE=4096
- CONFIG_NET_PKT_BUF_TX_DATA_POOL_SIZE=4096