diff --git a/src/dawn/tests/end2end/TextureViewTests.cpp b/src/dawn/tests/end2end/TextureViewTests.cpp index 2ad6cd032d..38ac5238dc 100644 --- a/src/dawn/tests/end2end/TextureViewTests.cpp +++ b/src/dawn/tests/end2end/TextureViewTests.cpp @@ -552,20 +552,12 @@ TEST_P(TextureViewSamplingTest, TextureCubeMapArrayOnWholeTexture) { // Test sampling from a cube map texture array view that covers a sub part of a 2D array texture. TEST_P(TextureViewSamplingTest, TextureCubeMapArrayViewOnPartOfTexture) { - // Test failing on the GPU FYI Mac Pro (AMD), see - // https://bugs.chromium.org/p/dawn/issues/detail?id=58 - DAWN_SUPPRESS_TEST_IF(IsMacOS() && IsMetal() && IsAMD()); - TextureCubeMapTest(20, 3, 12, true); } // Test sampling from a cube map texture array view that covers the last layer of a 2D array // texture. TEST_P(TextureViewSamplingTest, TextureCubeMapArrayViewCoveringLastLayer) { - // Test failing on the GPU FYI Mac Pro (AMD), see - // https://bugs.chromium.org/p/dawn/issues/detail?id=58 - DAWN_SUPPRESS_TEST_IF(IsMacOS() && IsMetal() && IsAMD()); - constexpr uint32_t kTotalLayers = 20; constexpr uint32_t kBaseLayer = 8; TextureCubeMapTest(kTotalLayers, kBaseLayer, kTotalLayers - kBaseLayer, true); @@ -573,10 +565,6 @@ TEST_P(TextureViewSamplingTest, TextureCubeMapArrayViewCoveringLastLayer) { // Test sampling from a cube map array texture view that only has a single cube map. TEST_P(TextureViewSamplingTest, TextureCubeMapArrayViewSingleCubeMap) { - // Test failing on the GPU FYI Mac Pro (AMD), see - // https://bugs.chromium.org/p/dawn/issues/detail?id=58 - DAWN_SUPPRESS_TEST_IF(IsMacOS() && IsMetal() && IsAMD()); - TextureCubeMapTest(20, 7, 6, true); }