Skip ComputeCopyStorageBufferTests.SizedArrayOfStruct on D3D12 (#225)

This commit is contained in:
Kai Ninomiya 2018-07-17 11:14:47 -07:00 committed by GitHub
parent cfa524b86b
commit 6aaa10fa60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -105,9 +105,13 @@ TEST_P(ComputeCopyStorageBufferTests, SizedArrayOfBasic) {
}
// Test that a slightly-less-trivial compute-shader memcpy implementation works.
//
// TODO(kainino@chromium.org): Fails on D3D12 backend. Probably due to a limitation in SPIRV-Cross?
TEST_P(ComputeCopyStorageBufferTests, SizedArrayOfStruct) {
if (IsD3D12()) {
// TODO(kainino@chromium.org): Fails on D3D12. Probably due to a limitation in SPIRV-Cross?
std::cout << "Test skipped on D3D12" << std::endl;
return;
}
BasicTest(R"(
#version 450
#define kInstances 4