Commit 3159b2e5 by Corentin Wallez Committed by Commit Bot

Suppress test crashing on Mac ASAN.

GLSLTest_ES3.LargeNumberOfFloat4Parameters/ES3_OPENGL started crashing after the parallel compile enablement on OpenGL and disabling the workers didn't fix it. BUG=angleproject:3087 Change-Id: I317b140e66b04102059486381ef70e16600fad12 Reviewed-on: https://chromium-review.googlesource.com/c/1419007Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
parent 5fe7c5b9
...@@ -1911,6 +1911,9 @@ TEST_P(GLSLTest_ES3, AmbiguousFunctionCall2x2) ...@@ -1911,6 +1911,9 @@ TEST_P(GLSLTest_ES3, AmbiguousFunctionCall2x2)
// the function name being too long. // the function name being too long.
TEST_P(GLSLTest_ES3, LargeNumberOfFloat4Parameters) TEST_P(GLSLTest_ES3, LargeNumberOfFloat4Parameters)
{ {
// TODO(cwallez@chromium.org): crashing on Mac ASAN, see http://anglebug.com/3087
ANGLE_SKIP_TEST_IF(IsOSX() && (IsNVIDIA() || IsIntel()));
std::stringstream vertexShaderStream; std::stringstream vertexShaderStream;
// This fails on Macos if the number of parameters is larger than 978 when linking in parallel. // This fails on Macos if the number of parameters is larger than 978 when linking in parallel.
// http://anglebug.com/3047 // http://anglebug.com/3047
......
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