Commit 8b92c53b by Jamie Madill

Skip EnableQueryExtensions test on Win/AMD/GL.

This test seems to be causing device lost. Bug: angleproject:2423 Change-Id: If759aa6478df89d1cf5a5fd199a6065300c4c8ec Reviewed-on: https://chromium-review.googlesource.com/974888Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 3395c8b9
...@@ -597,6 +597,9 @@ TEST_P(WebGLCompatibilityTest, EnableBlendMinMaxExtension) ...@@ -597,6 +597,9 @@ TEST_P(WebGLCompatibilityTest, EnableBlendMinMaxExtension)
// Test enabling the query extensions // Test enabling the query extensions
TEST_P(WebGLCompatibilityTest, EnableQueryExtensions) TEST_P(WebGLCompatibilityTest, EnableQueryExtensions)
{ {
// Seems to be causing a device lost. http://anglebug.com/2423
ANGLE_SKIP_TEST_IF(IsAMD() && IsWindows() && IsOpenGL());
EXPECT_FALSE(extensionEnabled("GL_EXT_occlusion_query_boolean")); EXPECT_FALSE(extensionEnabled("GL_EXT_occlusion_query_boolean"));
EXPECT_FALSE(extensionEnabled("GL_EXT_disjoint_timer_query")); EXPECT_FALSE(extensionEnabled("GL_EXT_disjoint_timer_query"));
EXPECT_FALSE(extensionEnabled("GL_CHROMIUM_sync_query")); EXPECT_FALSE(extensionEnabled("GL_CHROMIUM_sync_query"));
......
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