| commit | 067004dbc368a8bec682a1d62702dba7907fc040 | [log] [tgz] |
|---|---|---|
| author | Antonio Maiorano <amaiorano@google.com> | Thu Jun 05 13:21:50 2025 -0700 |
| committer | Dawn LUCI CQ <dawn-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Jun 05 13:21:50 2025 -0700 |
| tree | 6f8eb6488a43244c8c5db5e96cd1b108f39a0bae | |
| parent | 037a39858053e07f19aca4c1d8ffc90cbc8fcb70 [diff] |
Fix over-suppression of ETC2 tests This was supposed to be only suppressed for OpenGLES + ETC2 as part of https://dawn-review.googlesource.com/c/dawn/+/207554 Bug: 362762192 Change-Id: Ibb17043ac8b8cbb65e55ec18e53abc5baf9f1c98 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/245635 Commit-Queue: Antonio Maiorano <amaiorano@google.com> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Auto-Submit: Antonio Maiorano <amaiorano@google.com> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
diff --git a/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp b/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp index ad4b4c0..608869c 100644 --- a/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp +++ b/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp
@@ -757,8 +757,8 @@ const wgpu::TextureFormat format = GetParam().mTextureFormat; // TODO(crbug.com/362762192): diagnose this failure on GLES with ASTC and ETC2 texture formats - DAWN_SUPPRESS_TEST_IF(IsOpenGLES() && (utils::IsASTCTextureFormat(format)) || - utils::IsETC2TextureFormat(format)); + DAWN_SUPPRESS_TEST_IF( + IsOpenGLES() && (utils::IsASTCTextureFormat(format) || utils::IsETC2TextureFormat(format))); constexpr uint32_t kLayers = 6; CopyConfig config = GetDefaultSmallConfig(kLayers);