1
0
Fork 0
forked from wry/wry

it: test direct-scanout feedback

This commit is contained in:
Julian Orth 2024-04-03 15:52:25 +02:00
parent 6baa7ab07f
commit b966a73682
9 changed files with 302 additions and 1 deletions

View file

@ -66,6 +66,7 @@ mod t0032_content_type;
mod t0032_data_control;
mod t0033_float_size_memoization;
mod t0034_workspace_restoration;
mod t0035_scanout_feedback;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -119,5 +120,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0032_data_control,
t0033_float_size_memoization,
t0034_workspace_restoration,
t0035_scanout_feedback,
}
}