zephyr/samples/net/syslog_net/sample.yaml
Gerard Marull-Paretas 93b63df762 samples, tests: convert string-based twister lists to YAML lists
Twister now supports using YAML lists for all fields that were written
as space-separated lists. Used twister_to_list.py script. Some artifacts
on string length are due to how ruamel dumps content.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2023-05-10 09:52:37 +02:00

34 lines
932 B
YAML

common:
harness: net
depends_on: netif
tags:
- net
- syslog
sample:
description: syslog network backend
name: syslog_net
tests:
sample.net.syslog.with_timefuncs:
filter: TOOLCHAIN_HAS_NEWLIB == 1
extra_configs:
- CONFIG_NEWLIB_LIBC=y
sample.net.syslog.ipv4_only:
filter: TOOLCHAIN_HAS_NEWLIB == 1
extra_configs:
- CONFIG_NET_IPV6=n
- CONFIG_NET_CONFIG_NEED_IPV6=n
- CONFIG_NET_CONFIG_MY_IPV6_ADDR=""
- CONFIG_NET_CONFIG_PEER_IPV6_ADDR=""
- CONFIG_LOG_BACKEND_NET_SERVER="192.0.2.1:514"
sample.net.syslog.ipv6_only:
filter: TOOLCHAIN_HAS_NEWLIB == 1
extra_configs:
- CONFIG_NET_IPV4=n
- CONFIG_NET_CONFIG_NEED_IPV4=n
- CONFIG_NET_CONFIG_MY_IPV4_ADDR=""
- CONFIG_NET_CONFIG_PEER_IPV4_ADDR=""
sample.net.syslog.no_autostart:
filter: TOOLCHAIN_HAS_NEWLIB == 1
extra_configs:
- CONFIG_LOG_BACKEND_NET_AUTOSTART=n