Remove TextureView test suppressions for Mac AMD
The "Mac Pro FYI (AMD)" bot these were added for probably doesn't exist anymore, and this issue seemed to be fixed long ago, in macOS 10.13. Issue: dawn:58 Change-Id: I3490a39a32f6b80111574d123327a0e6865f2c25 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/91741 Reviewed-by: Austin Eng <enga@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Kai Ninomiya <kainino@chromium.org> Auto-Submit: Kai Ninomiya <kainino@chromium.org>
This commit is contained in:
parent
83aae9c16c
commit
ba7793b8f8
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue