Commit 35c847eb by Jonah Ryan-Davis Committed by Commit Bot

Skip EGLFeatureControlTest.InvalidDisplay on all Win/Intel

Was skipped only on Vulkan, but it hangs on other backends too, like D3D11. Bug: angleproject:3629 Change-Id: I3a812d86e1765507fb03a58c6d10c6a48edc0f2f Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1687124Reviewed-by: 's avatarJonah Ryan-Davis <jonahr@google.com> Commit-Queue: Jonah Ryan-Davis <jonahr@google.com>
parent a87ce835
......@@ -31,9 +31,8 @@ class EGLFeatureControlTest : public ANGLETest
bool initTest()
{
// http://anglebug.com/3629 This test sporadically times out on Win10/Intel/Vulkan
bool isVulkan = GetParam().getRenderer() == EGL_PLATFORM_ANGLE_TYPE_VULKAN_ANGLE;
if (isVulkan && IsWindows() && IsIntel())
// http://anglebug.com/3629 This test sporadically times out on Win10/Intel
if (IsWindows() && IsIntel())
return false;
EGLAttrib dispattrs[] = {EGL_PLATFORM_ANGLE_TYPE_ANGLE, GetParam().getRenderer(), EGL_NONE};
......
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