Skip to content

Commit f26add3

Browse files
committed
drivers: video: api: do not wait the timeout
Fail immediately during tests rather than letting K_FOREVER trigger a CI timeout. Signed-off-by: Josuah Demangeon <me@josuah.net>
1 parent a01ff2d commit f26add3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/drivers/video/api/src/video_emul.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ ZTEST(video_common, test_video_vbuf)
157157
zexpect_ok(video_set_format(rx_dev, VIDEO_EP_OUT, &fmt));
158158

159159
/* Allocate a buffer, assuming prj.conf gives enough memory for it */
160-
vbuf = video_buffer_alloc(fmt.pitch * fmt.height, K_FOREVER);
160+
vbuf = video_buffer_alloc(fmt.pitch * fmt.height, K_NO_WAIT);
161161
zexpect_not_null(vbuf);
162162

163163
/* Start the virtual hardware */

0 commit comments

Comments
 (0)