diff --git a/tests/out/hlsl/debug-printf-s.hlsl b/tests/out/hlsl/debug-printf-s.hlsl deleted file mode 100644 index 638bbf0d9a..0000000000 --- a/tests/out/hlsl/debug-printf-s.hlsl +++ /dev/null @@ -1,11 +0,0 @@ -void main_1() -{ - printf("%d",42); - return; -} - -[numthreads(1, 1, 1)] -void main() -{ - main_1(); -} diff --git a/tests/out/hlsl/debug-printf-s.ron b/tests/out/hlsl/debug-printf-s.ron deleted file mode 100644 index a07b03300b..0000000000 --- a/tests/out/hlsl/debug-printf-s.ron +++ /dev/null @@ -1,12 +0,0 @@ -( - vertex:[ - ], - fragment:[ - ], - compute:[ - ( - entry_point:"main", - target_profile:"cs_5_1", - ), - ], -) diff --git a/tests/snapshots.rs b/tests/snapshots.rs index 1d96e9e2e2..d534b27527 100644 --- a/tests/snapshots.rs +++ b/tests/snapshots.rs @@ -784,7 +784,7 @@ fn convert_wgsl() { ("separate-entry-points", Targets::SPIRV | Targets::GLSL), ( "debug-printf", - Targets::WGSL | Targets::GLSL | Targets::SPIRV | Targets::HLSL, + Targets::WGSL | Targets::GLSL | Targets::SPIRV, ), ]; @@ -860,11 +860,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")]