summaryrefslogtreecommitdiffstats
path: root/tests/bugs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs')
-rw-r--r--tests/bugs/texture2d-ms.hlsl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/bugs/texture2d-ms.hlsl b/tests/bugs/texture2d-ms.hlsl
index 3fb84f72d..2de9da7bf 100644
--- a/tests/bugs/texture2d-ms.hlsl
+++ b/tests/bugs/texture2d-ms.hlsl
@@ -1,10 +1,12 @@
-//TEST:CROSS_COMPILE: -profile lib_6_3 -entry main -stage compute -target spirv-assembly
+//TEST:SIMPLE(filecheck=CHECK): -profile lib_6_3 -entry main -stage compute -target spirv
[[vk::binding(0, 0)]]
Texture2DMS tex : register(t1);
RWStructuredBuffer<float4> outBuffer;
+// CHECK: %{{.*}} = OpImageFetch %v4float %{{.*}} %{{.*}} Sample %int_0
+
[numthreads(4, 4, 1)]
void main(uint3 groupId : SV_GroupID)
{