Commit 8aa20069 by Jian Li Committed by Commit Bot

Skip some tests on Mali because of a known issue

Type decorations may be ignored when using multiple OpAccessChains. Bug: angleproject:4492 Change-Id: I2e51af600394a69cb5f7e02228ca7e4fd1c826e0 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2105529Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent a38e20e4
...@@ -172,6 +172,7 @@ Arm Ltd. ...@@ -172,6 +172,7 @@ Arm Ltd.
Xiaoxuan Liu Xiaoxuan Liu
Ancheng Qiao Ancheng Qiao
Amy Liu Amy Liu
Jian Li
Broadcom Inc. Broadcom Inc.
Gary Sweet Gary Sweet
......
...@@ -7118,6 +7118,9 @@ TEST_P(GLSLTest_ES31, MixedRowAndColumnMajorMatrices) ...@@ -7118,6 +7118,9 @@ TEST_P(GLSLTest_ES31, MixedRowAndColumnMajorMatrices)
// Fails input verification as well as std140 SSBO validation. http://anglebug.com/3844 // Fails input verification as well as std140 SSBO validation. http://anglebug.com/3844
ANGLE_SKIP_TEST_IF(IsWindows() && IsAMD() && IsVulkan()); ANGLE_SKIP_TEST_IF(IsWindows() && IsAMD() && IsVulkan());
// Fails on ARM on Vulkan. http://anglebug.com/4492
ANGLE_SKIP_TEST_IF(IsARM() && IsVulkan());
constexpr char kCS[] = R"(#version 310 es constexpr char kCS[] = R"(#version 310 es
precision highp float; precision highp float;
layout(local_size_x=1) in; layout(local_size_x=1) in;
...@@ -7914,6 +7917,9 @@ TEST_P(GLSLTest_ES31, MixedRowAndColumnMajorMatrices_WriteArrayOfArray) ...@@ -7914,6 +7917,9 @@ TEST_P(GLSLTest_ES31, MixedRowAndColumnMajorMatrices_WriteArrayOfArray)
// Fails compiling shader on Android/Vulkan. http://anglebug.com/4290 // Fails compiling shader on Android/Vulkan. http://anglebug.com/4290
ANGLE_SKIP_TEST_IF(IsAndroid() && IsVulkan()); ANGLE_SKIP_TEST_IF(IsAndroid() && IsVulkan());
// Fails on ARM on Vulkan. http://anglebug.com/4492
ANGLE_SKIP_TEST_IF(IsARM() && IsVulkan());
constexpr char kCS[] = R"(#version 310 es constexpr char kCS[] = R"(#version 310 es
precision highp float; precision highp float;
layout(local_size_x=1) in; layout(local_size_x=1) in;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment