From fbae219b224f26c7f993eeec2d9270b981947f9d Mon Sep 17 00:00:00 2001 From: Jacob Hughes Date: Mon, 16 Oct 2023 21:10:12 -0400 Subject: [PATCH] debug_printf: Disable hlsl-out test DXC doesn't support printf when targeting dxil, disable the test to allow CI to pass. --- tests/snapshots.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/snapshots.rs b/tests/snapshots.rs index 3a3768a309..4b1ddf9030 100644 --- a/tests/snapshots.rs +++ b/tests/snapshots.rs @@ -783,7 +783,7 @@ fn convert_wgsl() { ), ( "debug-printf", - Targets::WGSL | Targets::GLSL | Targets::SPIRV | Targets::HLSL, + Targets::WGSL | Targets::GLSL | Targets::SPIRV, ), ]; @@ -859,11 +859,7 @@ fn convert_spv_all() { true, Targets::METAL | Targets::GLSL | Targets::HLSL | Targets::WGSL, ); - convert_spv( - "debug-printf-s", - false, - Targets::GLSL | Targets::HLSL | Targets::WGSL, - ); + convert_spv("debug-printf-s", false, Targets::GLSL | Targets::WGSL); } #[cfg(feature = "glsl-in")]