mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 01:55:22 +00:00
This checks if the net logger backend compiles if either ipv4 or ipv6 is enabled. Signed-off-by: Christian Taedcke <christian.taedcke@lemonbeat.com>
28 lines
759 B
YAML
28 lines
759 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:
|
|
extra_configs:
|
|
- CONFIG_NEWLIB_LIBC=y
|
|
sample.net.syslog.without_timefuncs:
|
|
extra_configs:
|
|
- CONFIG_NEWLIB_LIBC=n
|
|
sample.net.syslog.ipv4_only:
|
|
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:
|
|
extra_configs:
|
|
- CONFIG_NET_IPV4=n
|
|
- CONFIG_NET_CONFIG_NEED_IPV4=n
|
|
- CONFIG_NET_CONFIG_MY_IPV4_ADDR=""
|
|
- CONFIG_NET_CONFIG_PEER_IPV4_ADDR=""
|