From 2add5183dacda6f598b485a31adcb15de5cfd772 Mon Sep 17 00:00:00 2001 From: Alex Sepkowski Date: Wed, 8 Apr 2026 16:25:44 -0700 Subject: [PATCH 1/3] Fix requirement names --- tools/clang/unittests/HLSLExec/LongVectors.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/clang/unittests/HLSLExec/LongVectors.cpp b/tools/clang/unittests/HLSLExec/LongVectors.cpp index 927efd0d49..5eea345358 100644 --- a/tools/clang/unittests/HLSLExec/LongVectors.cpp +++ b/tools/clang/unittests/HLSLExec/LongVectors.cpp @@ -2731,7 +2731,7 @@ class DxilConf_SM69_Vectorized_Core : public TestClassCommon { BEGIN_TEST_METHOD_PROPERTIES() \ TEST_METHOD_PROPERTY( \ "Kits.Specification", \ - "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision") \ + "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision.Optional") \ END_TEST_METHOD_PROPERTIES() \ runTest(); \ } @@ -2741,7 +2741,7 @@ class DxilConf_SM69_Vectorized_Core : public TestClassCommon { BEGIN_TEST_METHOD_PROPERTIES() \ TEST_METHOD_PROPERTY( \ "Kits.Specification", \ - "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision") \ + "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision.Optional") \ END_TEST_METHOD_PROPERTIES() \ runWaveOpTest(); \ } @@ -2758,7 +2758,7 @@ class DxilConf_SM69_Vectorized_Double : public TestClassCommon { "Validates required double precision SM 6.9 vectorized DXIL operations") TEST_METHOD_PROPERTY( "Kits.Specification", - "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision") + "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision.Optinal") TEST_METHOD_PROPERTY(L"Priority", L"0") END_TEST_CLASS() From d2dacf040a6f36c240fef28c1e63ddf9a3b660d8 Mon Sep 17 00:00:00 2001 From: Alex Sepkowski Date: Wed, 8 Apr 2026 16:26:34 -0700 Subject: [PATCH 2/3] Typeo --- tools/clang/unittests/HLSLExec/LongVectors.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/clang/unittests/HLSLExec/LongVectors.cpp b/tools/clang/unittests/HLSLExec/LongVectors.cpp index 5eea345358..8fb3064f1b 100644 --- a/tools/clang/unittests/HLSLExec/LongVectors.cpp +++ b/tools/clang/unittests/HLSLExec/LongVectors.cpp @@ -2758,7 +2758,7 @@ class DxilConf_SM69_Vectorized_Double : public TestClassCommon { "Validates required double precision SM 6.9 vectorized DXIL operations") TEST_METHOD_PROPERTY( "Kits.Specification", - "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision.Optinal") + "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision.Optional") TEST_METHOD_PROPERTY(L"Priority", L"0") END_TEST_CLASS() From c5633f8133a44bc5e8ef2527403a86ab52b72cfd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 8 Apr 2026 23:42:28 +0000 Subject: [PATCH 3/3] chore: autopublish 2026-04-08T23:42:28Z --- tools/clang/unittests/HLSLExec/LongVectors.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/clang/unittests/HLSLExec/LongVectors.cpp b/tools/clang/unittests/HLSLExec/LongVectors.cpp index 8fb3064f1b..a590bc7cb9 100644 --- a/tools/clang/unittests/HLSLExec/LongVectors.cpp +++ b/tools/clang/unittests/HLSLExec/LongVectors.cpp @@ -2729,9 +2729,9 @@ class DxilConf_SM69_Vectorized_Core : public TestClassCommon { #define HLK_TEST_DOUBLE(Op, DataType) \ TEST_METHOD(Op##_##DataType) { \ BEGIN_TEST_METHOD_PROPERTIES() \ - TEST_METHOD_PROPERTY( \ - "Kits.Specification", \ - "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision.Optional") \ + TEST_METHOD_PROPERTY("Kits.Specification", \ + "Device.Graphics.D3D12.DXILCore.ShaderModel69." \ + "DoublePrecision.Optional") \ END_TEST_METHOD_PROPERTIES() \ runTest(); \ } @@ -2739,9 +2739,9 @@ class DxilConf_SM69_Vectorized_Core : public TestClassCommon { #define HLK_WAVEOP_TEST_DOUBLE(Op, DataType) \ TEST_METHOD(Op##_##DataType) { \ BEGIN_TEST_METHOD_PROPERTIES() \ - TEST_METHOD_PROPERTY( \ - "Kits.Specification", \ - "Device.Graphics.D3D12.DXILCore.ShaderModel69.DoublePrecision.Optional") \ + TEST_METHOD_PROPERTY("Kits.Specification", \ + "Device.Graphics.D3D12.DXILCore.ShaderModel69." \ + "DoublePrecision.Optional") \ END_TEST_METHOD_PROPERTIES() \ runWaveOpTest(); \ }