Commit 4720cfb7 by Jonathan Ross Committed by Commit Bot

Disable TransformFeedbackTest.SwitchProgramBeforeDraw/ES3_OpenGL

This test hase begun failing consistently on the Arm based Apple DTK. This adds a skip to the test for that config. Test: TransformFeedbackTest.SwitchProgramBeforeDraw/ES3_OpenGL Bug: chromium:1140113 Change-Id: Ie9499f4f90327429c02b3e690d4059838ad835d0 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2485296 Commit-Queue: Jonah Ryan-Davis <jonahr@google.com> Reviewed-by: 's avatarJonah Ryan-Davis <jonahr@google.com>
parent 61ab3819
...@@ -1628,6 +1628,8 @@ TEST_P(TransformFeedbackTest, NoTransformFeedbackVaryingsInUse) ...@@ -1628,6 +1628,8 @@ TEST_P(TransformFeedbackTest, NoTransformFeedbackVaryingsInUse)
// Test that you can pause transform feedback without drawing first. // Test that you can pause transform feedback without drawing first.
TEST_P(TransformFeedbackTest, SwitchProgramBeforeDraw) TEST_P(TransformFeedbackTest, SwitchProgramBeforeDraw)
{ {
// TODO(crbug.com/1132295): Failing on ARM-based Apple DTKs.
ANGLE_SKIP_TEST_IF(IsOSX() && IsARM64() && IsDesktopOpenGL());
std::vector<std::string> tfVaryings; std::vector<std::string> tfVaryings;
tfVaryings.push_back("gl_Position"); tfVaryings.push_back("gl_Position");
compileDefaultProgram(tfVaryings, GL_INTERLEAVED_ATTRIBS); compileDefaultProgram(tfVaryings, GL_INTERLEAVED_ATTRIBS);
......
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