From 6465e738251315892611c26f8ef2a22ed1cbfbd4 Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Fri, 24 May 2024 14:14:47 +0300 Subject: [PATCH] tests: net: dns_resolve: Increase the number of socket descriptors The test needs couple of more socket/file descriptors to work because CONFIG_POSIX_API creates three more file descriptors namely the stdin, stdout and stderr descriptors. Signed-off-by: Jukka Rissanen --- tests/net/lib/dns_resolve/prj.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/net/lib/dns_resolve/prj.conf b/tests/net/lib/dns_resolve/prj.conf index 4bc1b8706ce..9f5452f5834 100644 --- a/tests/net/lib/dns_resolve/prj.conf +++ b/tests/net/lib/dns_resolve/prj.conf @@ -30,4 +30,4 @@ CONFIG_ZTEST=y CONFIG_MAIN_STACK_SIZE=1344 CONFIG_NET_SOCKETS_POLL_MAX=9 -CONFIG_POSIX_MAX_FDS=5 +CONFIG_POSIX_MAX_FDS=8