diff --git a/src/dawn/tests/end2end/DepthStencilCopyTests.cpp b/src/dawn/tests/end2end/DepthStencilCopyTests.cpp index 91e399716b..261909f2aa 100644 --- a/src/dawn/tests/end2end/DepthStencilCopyTests.cpp +++ b/src/dawn/tests/end2end/DepthStencilCopyTests.cpp @@ -933,6 +933,10 @@ TEST_P(DepthStencilCopyTests_RegressionDawn1083, Run) { DAWN_SUPPRESS_TEST_IF(IsAMD() && IsMetal() && GetParam().mTextureFormat == wgpu::TextureFormat::Depth32FloatStencil8); + // TODO(crbug.com/dawn/1828): depth16unorm broken on Apple GPUs. + DAWN_SUPPRESS_TEST_IF(IsApple() && + GetParam().mTextureFormat == wgpu::TextureFormat::Depth16Unorm); + uint32_t mipLevelCount = 3; uint32_t arrayLayerCount = 3; wgpu::TextureDescriptor texDesc = {}; diff --git a/src/dawn/tests/end2end/DepthStencilLoadOpTests.cpp b/src/dawn/tests/end2end/DepthStencilLoadOpTests.cpp index 837f8bec09..4558c9acaa 100644 --- a/src/dawn/tests/end2end/DepthStencilLoadOpTests.cpp +++ b/src/dawn/tests/end2end/DepthStencilLoadOpTests.cpp @@ -186,6 +186,9 @@ class DepthStencilLoadOpTests : public DawnTestWithParams