summaryrefslogtreecommitdiffstats
path: root/tests/metal/discard.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/metal/discard.slang')
-rw-r--r--tests/metal/discard.slang10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/metal/discard.slang b/tests/metal/discard.slang
index 7c2622561..b670e462a 100644
--- a/tests/metal/discard.slang
+++ b/tests/metal/discard.slang
@@ -1,9 +1,9 @@
-//TEST:SIMPLE(filecheck=CHECK): -target metal
-//TEST:SIMPLE(filecheck=CHECK-ASM): -target metallib
+//TEST:SIMPLE(filecheck=METAL): -target metal
+//TEST:SIMPLE(filecheck=METALLIB): -target metallib
-// CHECK: discard_fragment();
+// METAL: discard_fragment();
-// CHECK-ASM: define {{.*}} @main_fragment1
+// METALLIB: define {{.*}} @main_fragment1
struct VOut
{
@@ -19,4 +19,4 @@ float4 main_fragment1(VOut fragmentIn)
if (fragmentIn.vertexColor.x == 0.0)
discard;
return fragmentIn.vertexColor;
-} \ No newline at end of file
+}