1
0
Fork 0
forked from wry/wry

it: test idle timeout

This commit is contained in:
Julian Orth 2024-04-03 16:06:35 +02:00
parent b966a73682
commit d4f49bf947
4 changed files with 43 additions and 3 deletions

View file

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