1
0
Fork 0
forked from wry/wry

it: add fifo test

This commit is contained in:
Julian Orth 2025-09-03 17:46:33 +02:00
parent f45cbed53b
commit 73bf4465e2
9 changed files with 264 additions and 3 deletions

View file

@ -80,6 +80,7 @@ mod t0046_buffer_release;
mod t0047_surface_damage;
mod t0048_frame_callback;
mod t0049_surface_damage_backend;
mod t0050_fifo;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -148,5 +149,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0047_surface_damage,
t0048_frame_callback,
t0049_surface_damage_backend,
t0050_fifo,
}
}