diff options
| author | ArielG-NV <159081215+ArielG-NV@users.noreply.github.com> | 2024-04-19 23:18:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-19 20:18:40 -0700 |
| commit | f9bcad35562c1f08638e6d3eb397d370d7d2f8f8 (patch) | |
| tree | 4e2a993689209bd5b597263922af03cb87d07c3d /tests/hlsl-intrinsic | |
| parent | 2da28c50d9c3699692eccde4b86d0b8d2323e55c (diff) | |
Initial pass to add capability declarations to stdlib intrinsics. (#3912)
Diffstat (limited to 'tests/hlsl-intrinsic')
| -rw-r--r-- | tests/hlsl-intrinsic/debug-break.slang | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/hlsl-intrinsic/debug-break.slang b/tests/hlsl-intrinsic/debug-break.slang index 5c783f332..c16139f72 100644 --- a/tests/hlsl-intrinsic/debug-break.slang +++ b/tests/hlsl-intrinsic/debug-break.slang @@ -1,4 +1,4 @@ -//TEST:SIMPLE(filecheck=CHECK):-stage compute -entry computeMain -target glsl -line-directive-mode none +//TEST:SIMPLE(filecheck=CHECK_GLSL):-stage compute -entry computeMain -target glsl -line-directive-mode none // We can't enable because output source includes path to prelude. //DISABLE_TEST:SIMPLE:-stage compute -entry computeMain -target cpp -line-directive-mode none //DISABLE_TEST:SIMPLE:-stage compute -entry computeMain -target cuda -line-directive-mode none @@ -10,10 +10,10 @@ //TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0 0 0 0 0], stride=4):out,name outputBuffer -// CHECK: spirv_instruction(id = 1, set = "NonSemantic.DebugBreak") -// CHECK: void debugBreak{{.*}}(); -// CHECK: void main -// CHECK: debugBreak{{.*}}(); +// CHECK_GLSL: spirv_instruction(id = 1, set = "NonSemantic.DebugBreak") +// CHECK_GLSL: glslDebugBreak{{.*}}(); +// CHECK_GLSL: void main +// CHECK_GLSL: glslDebugBreak{{.*}}(); RWStructuredBuffer<int> outputBuffer; |
