Skip to content

Commit b9a3edc

Browse files
jukkarnashif
authored andcommitted
tests: net: cm: Increase event wait time
This was seen in CI START - test_cycle_ready_CC Assertion failed at ...tests/net/conn_mgr_monitor/src/main.c:262: cycle_ready_ifaces: (stats.conn_count_gen not equal to 1) NET_EVENT_L4_CONNECTED should be fired when connectivity is gained. FAIL - test_cycle_ready_CC in 0.015 seconds As the event wait timeout is very short (1ms) by default, increase it to 10ms so that we will not miss the event. Signed-off-by: Jukka Rissanen <[email protected]>
1 parent e2bfd83 commit b9a3edc

File tree

1 file changed

+1
-1
lines changed
  • tests/net/conn_mgr_monitor/src

1 file changed

+1
-1
lines changed

tests/net/conn_mgr_monitor/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <zephyr/logging/log.h>
2525

2626
/* Time to wait for NET_MGMT events to finish firing */
27-
#define EVENT_WAIT_TIME K_MSEC(1)
27+
#define EVENT_WAIT_TIME K_MSEC(10)
2828

2929

3030
/* Time to wait for IPv6 DAD-gated events to finish.

0 commit comments

Comments
 (0)