tests: net: trickle: Fix running on frdm-k64f
The trickle API tests were not run properly in frdm-k64f board. Fixes #8171 Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
a803335a7c
commit
b43000f5eb
|
@ -4,19 +4,18 @@ CONFIG_NET_IPV6=y
|
|||
CONFIG_NET_UDP=y
|
||||
CONFIG_NET_TCP=n
|
||||
CONFIG_NET_IPV4=y
|
||||
CONFIG_NET_MAX_CONTEXTS=1
|
||||
CONFIG_NET_L2_DUMMY=y
|
||||
CONFIG_NET_LOG=y
|
||||
CONFIG_SYS_LOG_SHOW_COLOR=y
|
||||
CONFIG_ENTROPY_GENERATOR=y
|
||||
CONFIG_TEST_RANDOM_GENERATOR=y
|
||||
CONFIG_NET_IPV6_ND=n
|
||||
CONFIG_NET_IPV6_DAD=n
|
||||
CONFIG_NET_PKT_TX_COUNT=1
|
||||
CONFIG_NET_PKT_RX_COUNT=1
|
||||
CONFIG_NET_BUF_RX_COUNT=2
|
||||
CONFIG_NET_BUF_TX_COUNT=2
|
||||
CONFIG_NET_PKT_TX_COUNT=2
|
||||
CONFIG_NET_PKT_RX_COUNT=2
|
||||
CONFIG_NET_BUF_RX_COUNT=5
|
||||
CONFIG_NET_BUF_TX_COUNT=5
|
||||
CONFIG_NET_TRICKLE=y
|
||||
#CONFIG_NET_DEBUG_TRICKLE=y
|
||||
#CONFIG_SYS_LOG_NET_LEVEL=4
|
||||
CONFIG_ZTEST=y
|
||||
CONFIG_ZTEST_STACKSIZE=1024
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
|
||||
#include <tc_util.h>
|
||||
|
||||
#include <net/ethernet.h>
|
||||
#include <net/buf.h>
|
||||
#include <net/net_ip.h>
|
||||
#include <net/net_if.h>
|
||||
|
|
Loading…
Reference in a new issue