From 30646d4881c8f1d46bc8a4bf4049d0921a1c9b3c Mon Sep 17 00:00:00 2001 From: ArielG-NV <159081215+ArielG-NV@users.noreply.github.com> Date: Fri, 8 Aug 2025 19:26:56 -0700 Subject: Fix `tests\bugs\op-select-return-composite.slang` Test Failing (#8132) What is fixed: Since we make `vk` tests compile as GLSL, we must use a capability that specifies a GLSL equivalent. If we do not do this, we will get an error since we are not specifying GLSL capabilities (but are specifying a profile). Since a profile is specified, we emit capability errors. --- tests/bugs/op-select-return-composite.slang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/bugs/op-select-return-composite.slang b/tests/bugs/op-select-return-composite.slang index eb453d457..87eb7059b 100644 --- a/tests/bugs/op-select-return-composite.slang +++ b/tests/bugs/op-select-return-composite.slang @@ -1,6 +1,6 @@ //TEST(compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-d3d12 -output-using-type -use-dxil //TEST(compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-vk -output-using-type -//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-vk -output-using-type -profile spirv_1_3 +//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=BUF):-vk -output-using-type -profile sm_6_0 //TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):out,name=outputBuffer RWStructuredBuffer outputBuffer; -- cgit v1.2.3