1common:
2  depends_on: netif
3  tags:
4    - net
5    - icmp
6tests:
7  net.icmp.offloaded:
8    extra_configs:
9      - CONFIG_NET_OFFLOAD=y
10      - CONFIG_NET_IF_MAX_IPV6_COUNT=2
11      - CONFIG_NET_IF_MAX_IPV4_COUNT=2
12  net.icmp.socket_offloaded:
13    extra_configs:
14      - CONFIG_NET_SOCKETS_OFFLOAD=y
15      - CONFIG_NET_IF_MAX_IPV6_COUNT=2
16      - CONFIG_NET_IF_MAX_IPV4_COUNT=2
17  net.icmp.coop:
18    extra_configs:
19      - CONFIG_NET_TC_THREAD_COOPERATIVE=y
20      - CONFIG_NET_IF_MAX_IPV6_COUNT=2
21      - CONFIG_NET_IF_MAX_IPV4_COUNT=2
22  net.icmp.preempt:
23    extra_configs:
24      - CONFIG_NET_TC_THREAD_PREEMPTIVE=y
25      - CONFIG_NET_IF_MAX_IPV6_COUNT=2
26      - CONFIG_NET_IF_MAX_IPV4_COUNT=2
27  net.icmp.no_ipv4:
28    extra_configs:
29      - CONFIG_NET_IPV4=n
30      - CONFIG_NET_IF_MAX_IPV6_COUNT=2
31  net.icmp.no_ipv6:
32    extra_configs:
33      - CONFIG_NET_IPV6=n
34      - CONFIG_NET_IF_MAX_IPV4_COUNT=2
35