From 3df9201ef33d09394e961df184ff628e49ce3a8d Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Mon, 14 May 2018 15:53:47 +0300 Subject: [PATCH] samples: net: dns_resolver: Add config options for tests Make sure that we compile sanity checked application with more config options in order to catch compile issues faster. In this case DHCPv4 + debugging options are enabled for sanity checker. Signed-off-by: Jukka Rissanen --- samples/net/dns_resolve/sample.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/samples/net/dns_resolve/sample.yaml b/samples/net/dns_resolve/sample.yaml index 0fa4fb8f80b..593ba8faac2 100644 --- a/samples/net/dns_resolve/sample.yaml +++ b/samples/net/dns_resolve/sample.yaml @@ -1,8 +1,13 @@ sample: - description: TBD + description: DNS resolver sample application name: DNS Resolver +common: + harness: net + depends_on: netif + tags: net dns tests: test: - harness: net - depends_on: netif - tags: net dns + extra_configs: + - CONFIG_NET_DHCPV4=y + - CONFIG_NET_DEBUG_APP=y + - CONFIG_SYS_LOG_NET_LEVEL=4