11
11
const struct device * rx_dev = DEVICE_DT_GET (DT_NODELABEL (test_video_emul_rx ));
12
12
const struct device * imager_dev = DEVICE_DT_GET (DT_NODELABEL (test_video_emul_imager ));
13
13
14
- ZTEST (video_common , test_video_device )
14
+ ZTEST (video_emul , test_video_device )
15
15
{
16
16
zexpect_true (device_is_ready (rx_dev ));
17
17
zexpect_true (device_is_ready (imager_dev ));
@@ -23,7 +23,7 @@ ZTEST(video_common, test_video_device)
23
23
zexpect_ok (video_stream_stop (rx_dev ));
24
24
}
25
25
26
- ZTEST (video_common , test_video_format )
26
+ ZTEST (video_emul , test_video_format )
27
27
{
28
28
struct video_caps caps = {0 };
29
29
struct video_format fmt = {0 };
@@ -73,7 +73,7 @@ ZTEST(video_common, test_video_format)
73
73
zexpect_not_equal (fmt .pixelformat , 0x00000000 , "should not store wrong formats" );
74
74
}
75
75
76
- ZTEST (video_common , test_video_frmival )
76
+ ZTEST (video_emul , test_video_frmival )
77
77
{
78
78
struct video_format fmt ;
79
79
struct video_frmival_enum fie = {.format = & fmt };
@@ -125,7 +125,7 @@ ZTEST(video_common, test_video_frmival)
125
125
} while (video_enum_frmival (imager_dev , VIDEO_EP_OUT , & fie ) == 0 );
126
126
}
127
127
128
- ZTEST (video_common , test_video_ctrl )
128
+ ZTEST (video_emul , test_video_ctrl )
129
129
{
130
130
int value ;
131
131
@@ -140,7 +140,7 @@ ZTEST(video_common, test_video_ctrl)
140
140
zexpect_equal (value , 30 );
141
141
}
142
142
143
- ZTEST (video_common , test_video_vbuf )
143
+ ZTEST (video_emul , test_video_vbuf )
144
144
{
145
145
struct video_caps caps ;
146
146
struct video_format fmt ;
0 commit comments