aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordan sinclair <dj2@everburning.com>2019-03-18 12:56:13 -0700
committerGitHub <noreply@github.com>2019-03-18 12:56:13 -0700
commit34c750892a8a8bf7e3440ea25cf4c8c690a44827 (patch)
treecbf276edd0f498b1bdb8f09ff4b87fd27952436f /tests
parent38003d56be765faa0efce8a5a068f66cf513277c (diff)
downloadamber-34c750892a8a8bf7e3440ea25cf4c8c690a44827.tar.gz
[vulkan] More MoltenVK suppressions (#378)
This CL suppresses two more tests due to lack of std140 support for matrices in SPIRV-Cross. "compute_mat2x2.vkscript", "compute_mat3x2.vkscript" Issue #216.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run_tests.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/run_tests.py b/tests/run_tests.py
index fd3b3e4..098a813 100755
--- a/tests/run_tests.py
+++ b/tests/run_tests.py
@@ -28,7 +28,15 @@ SUPPRESSIONS = {
# No geometry shader on MoltenVK
"draw_triangle_list_using_geom_shader.vkscript",
# No tessellation shader on MoltenVK
- "draw_triangle_list_using_tessellation.vkscript"
+ "draw_triangle_list_using_tessellation.vkscript",
+ # No std140 support for matrices in SPIRV-Cross
+ "compute_mat2x2.vkscript",
+ "compute_mat3x2.vkscript",
+ # Metal vertex shaders cannot simultaneously write to a buffer and return
+ # a value to the rasterizer rdar://48348476
+ # https://github.com/KhronosGroup/MoltenVK/issues/527
+ "multiple_ssbo_update_with_graphics_pipeline.vkscript",
+ "multiple_ubo_update_with_graphics_pipeline.vkscript"
]
}