Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/clang/unittests/HLSLExec/LongVectorTestData.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ template <typename T> const std::vector<T> &getInputSet(InputSet InputSet) {
default: \
break; \
} \
VERIFY_FAIL("Missing input set"); \
VERIFY_FAIL(L"Missing input set"); \
std::abort(); \
}

Expand Down
15 changes: 8 additions & 7 deletions tools/clang/unittests/HLSLExec/LongVectors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1345,14 +1345,15 @@ using namespace LongVector;
class DxilConf_SM69_Vectorized {
public:
BEGIN_TEST_CLASS(DxilConf_SM69_Vectorized)
TEST_CLASS_PROPERTY("Kits.TestName",
"D3D12 - Shader Model 6.9 - Vectorized DXIL - Core Tests")
TEST_CLASS_PROPERTY("Kits.TestId", "81db1ff8-5bc5-48a1-8d7b-600fc600a677")
TEST_CLASS_PROPERTY("Kits.Description",
"Validates required SM 6.9 vectorized DXIL operations")
TEST_CLASS_PROPERTY(
"Kits.Specification",
"Device.Graphics.D3D12.DXILCore.ShaderModel69.CoreRequirement")
L"Kits.TestName",
L"D3D12 - Shader Model 6.9 - Vectorized DXIL - Core Tests")
TEST_CLASS_PROPERTY(L"Kits.TestId", L"81db1ff8-5bc5-48a1-8d7b-600fc600a677")
TEST_CLASS_PROPERTY(L"Kits.Description",
L"Validates required SM 6.9 vectorized DXIL operations")
TEST_CLASS_PROPERTY(
L"Kits.Specification",
L"Device.Graphics.D3D12.DXILCore.ShaderModel69.CoreRequirement")
END_TEST_CLASS()

TEST_CLASS_SETUP(classSetup) {
Expand Down