Commit 2e84e59a by Tim Van Patten Committed by Commit Bot

Skip EndWithDifferentProgram() on Vulkan+Pixel 2

Skip the the test TransformFeedbackTest::EndWithDifferentProgram() on Vulkan + Pixel 2 since it appears to be flaky. Test: TransformFeedbackTest::EndWithDifferentProgram() Bug: chromium:1207380 Change-Id: Iedfe1e96a204eca5954097be9e61820b775eb0b0 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2886358Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent caf9742d
...@@ -2120,6 +2120,9 @@ TEST_P(TransformFeedbackTest, EndWithDifferentProgram) ...@@ -2120,6 +2120,9 @@ TEST_P(TransformFeedbackTest, EndWithDifferentProgram)
// AMD drivers fail because they perform transform feedback when it should be paused. // AMD drivers fail because they perform transform feedback when it should be paused.
ANGLE_SKIP_TEST_IF(IsAMD() && IsOpenGL()); ANGLE_SKIP_TEST_IF(IsAMD() && IsOpenGL());
// https://crbug.com/1207380 Pixel 2 is crashing during ES3_Vulkan_AsyncQueue testing
ANGLE_SKIP_TEST_IF(IsVulkan() && IsPixel2());
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