Disable broken tests on Fuchsia (reland)
This disables tests that do not work on Fuchsia. Most of them are related
to cube maps which currently crash inside the intel driver.
Reland disabling -Wextra-semi.
BUG=angleproject:2475, angleproject:3145, angleproject:3081
TEST=angle_end2end_tests on Fuchsia
Change-Id: I65ad84f43c88e8ee83c581cc2f41046d00bbae7f
Reviewed-on: https://chromium-review.googlesource.com/c/1467604
Commit-Queue: Michael Spang <spang@chromium.org>
Reviewed-by: Michael Spang <spang@chromium.org>
diff --git a/src/tests/gl_tests/TextureTest.cpp b/src/tests/gl_tests/TextureTest.cpp
index dc65d7e..85485a5 100644
--- a/src/tests/gl_tests/TextureTest.cpp
+++ b/src/tests/gl_tests/TextureTest.cpp
@@ -1349,6 +1349,9 @@
// https://code.google.com/p/angleproject/issues/detail?id=849
TEST_P(TextureCubeTest, CubeMapFBO)
{
+ // http://anglebug.com/3145
+ ANGLE_SKIP_TEST_IF(IsFuchsia() && IsIntel() && IsVulkan());
+
GLFramebuffer fbo;
glBindFramebuffer(GL_FRAMEBUFFER, fbo);
@@ -1391,6 +1394,9 @@
// TODO(jie.a.chen): Diagnose and fix. http://anglebug.com/2822
ANGLE_SKIP_TEST_IF(IsVulkan() && IsIntel() && IsWindows());
+ // http://anglebug.com/3145
+ ANGLE_SKIP_TEST_IF(IsFuchsia() && IsIntel() && IsVulkan());
+
constexpr size_t kSize = 16;
GLFramebuffer fbo;