Skip to content
This repository has been archived by the owner on Feb 25, 2025. It is now read-only.

Commit

Permalink
Suppress EmptyBuffer test on Android GLES.
Browse files Browse the repository at this point in the history
Seems to fail on the Pixel XL.

Bug: angleproject:2861
Change-Id: Ic1690abccd867251e83c0ae5e38c2bbd1c41615b
Reviewed-on: https://chromium-review.googlesource.com/c/1441774
Reviewed-by: Jamie Madill <[email protected]>
Commit-Queue: Jamie Madill <[email protected]>
  • Loading branch information
null77 authored and Commit Bot committed Jan 29, 2019
1 parent 0cb3b0f commit 4b2e00f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/tests/gl_tests/RobustBufferAccessBehaviorTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,9 +440,8 @@ TEST_P(RobustBufferAccessBehaviorTest, EmptyBuffer)
// AMD GL does not support robustness. http://anglebug.com/3099
ANGLE_SKIP_TEST_IF(IsAMD() && IsOpenGL());

// TODO([email protected]): Test failing on Pixel XL, see
// http://anglebug.com/3109
ANGLE_SKIP_TEST_IF(IsVulkan() && IsAndroid());
// http://anglebug.com/2861: Fails abnormally on Pixel XL
ANGLE_SKIP_TEST_IF(IsAndroid() && IsOpenGLES());

ANGLE_GL_PROGRAM(program, kWebGLVS, kWebGLFS);
glUseProgram(program);
Expand Down

0 comments on commit 4b2e00f

Please sign in to comment.