From 26ea8b728cf4be0adc7175b38988863100b95246 Mon Sep 17 00:00:00 2001 From: Stephen White Date: Tue, 1 Dec 2020 20:35:27 +0000 Subject: [PATCH] Disable some further C* end2end tests on GLES. BUG=dawn:580 Change-Id: Ie5d58ebfa2773899d29ed4279478b9a44d8c266f Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/34540 Reviewed-by: Corentin Wallez Reviewed-by: Austin Eng Commit-Queue: Stephen White --- src/tests/end2end/CopyTextureForBrowserTests.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tests/end2end/CopyTextureForBrowserTests.cpp b/src/tests/end2end/CopyTextureForBrowserTests.cpp index 587532d45d..684139b379 100644 --- a/src/tests/end2end/CopyTextureForBrowserTests.cpp +++ b/src/tests/end2end/CopyTextureForBrowserTests.cpp @@ -182,6 +182,7 @@ TEST_P(CopyTextureForBrowserTests, VerifyCopyOnXDirection) { // OpenGL tests fails due to 'WriteTexture' unimplemented. // Related bug : crbug.com/dawn/483 DAWN_SKIP_TEST_IF(IsOpenGL()); + DAWN_SKIP_TEST_IF(IsOpenGLES()); constexpr uint32_t kWidth = 1000; constexpr uint32_t kHeight = 1; @@ -200,6 +201,7 @@ TEST_P(CopyTextureForBrowserTests, VerifyCopyOnYDirection) { // OpenGL tests fails due to 'WriteTexture' unimplemented. // Related bug : crbug.com/dawn/483 DAWN_SKIP_TEST_IF(IsOpenGL()); + DAWN_SKIP_TEST_IF(IsOpenGLES()); constexpr uint32_t kWidth = 1; constexpr uint32_t kHeight = 1000; @@ -218,6 +220,7 @@ TEST_P(CopyTextureForBrowserTests, VerifyCopyFromLargeTexture) { // OpenGL tests fails due to 'WriteTexture' unimplemented. // Related bug : crbug.com/dawn/483 DAWN_SKIP_TEST_IF(IsOpenGL()); + DAWN_SKIP_TEST_IF(IsOpenGLES()); constexpr uint32_t kWidth = 899; constexpr uint32_t kHeight = 999;