From d84276f475400d6322feb975d95d0f9c8d334a11 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Thu, 21 Nov 2024 23:31:23 -0500 Subject: [PATCH] WIP: test: cover pass timestamp write validation --- tests/tests/query_set.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/tests/query_set.rs b/tests/tests/query_set.rs index 69d0f868db..ca51d32f0f 100644 --- a/tests/tests/query_set.rs +++ b/tests/tests/query_set.rs @@ -21,3 +21,8 @@ static DROP_FAILED_TIMESTAMP_QUERY_SET: GpuTestConfiguration = GpuTestConfigurat assert!(pollster::block_on(ctx.device.pop_error_scope()).is_some()); }); + +#[gpu_test] +static VALIDATE_PASS_TIMESTAMP_WRITES: GpuTestConfiguration = GpuTestConfiguration::new() + .parameters(TestParameters::default().features(wgpu::Features::TIMESTAMP_QUERY)) + .run_sync(|ctx| todo!());