Suppress Mac Intel 12.4 failures
Suppresses failures found when switching from 11.5.2 to 12.4 on the Intel Mac Minis. Bug: dawn:1461, dawn:1462, dawn:1463, chromium:1334335 Change-Id: Ie0d42a1b4aa81f457145a53eebb1501a5eb77fbe Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/93308 Reviewed-by: Austin Eng <enga@chromium.org> Auto-Submit: Brian Sheedy <bsheedy@google.com> Commit-Queue: Brian Sheedy <bsheedy@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
This commit is contained in:
parent
1ab815dcaa
commit
67973e6706
|
@ -629,6 +629,9 @@ TEST_P(MultisampledRenderingTest, ResolveInto2DTextureWithEmptyFinalSampleMask)
|
||||||
// Test doing MSAA resolve into multiple resolve targets works correctly with a non-default sample
|
// Test doing MSAA resolve into multiple resolve targets works correctly with a non-default sample
|
||||||
// mask.
|
// mask.
|
||||||
TEST_P(MultisampledRenderingTest, ResolveIntoMultipleResolveTargetsWithSampleMask) {
|
TEST_P(MultisampledRenderingTest, ResolveIntoMultipleResolveTargetsWithSampleMask) {
|
||||||
|
// TODO(crbug.com/dawn/1462): Re-enable on Mac Intel 12.4.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsMetal() && IsIntel() && IsMacOS(12, 4));
|
||||||
|
|
||||||
wgpu::TextureView multisampledColorView2 =
|
wgpu::TextureView multisampledColorView2 =
|
||||||
CreateTextureForRenderAttachment(kColorFormat, kSampleCount).CreateView();
|
CreateTextureForRenderAttachment(kColorFormat, kSampleCount).CreateView();
|
||||||
wgpu::Texture resolveTexture2 = CreateTextureForRenderAttachment(kColorFormat, 1);
|
wgpu::Texture resolveTexture2 = CreateTextureForRenderAttachment(kColorFormat, 1);
|
||||||
|
@ -786,6 +789,9 @@ TEST_P(MultisampledRenderingTest, ResolveIntoMultipleResolveTargetsWithShaderOut
|
||||||
// supported on some platforms.
|
// supported on some platforms.
|
||||||
DAWN_TEST_UNSUPPORTED_IF(HasToggleEnabled("disable_sample_variables"));
|
DAWN_TEST_UNSUPPORTED_IF(HasToggleEnabled("disable_sample_variables"));
|
||||||
|
|
||||||
|
// TODO(crbug.com/dawn/1462): Re-enable on Mac Intel 12.4.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsMetal() && IsIntel() && IsMacOS(12, 4));
|
||||||
|
|
||||||
wgpu::TextureView multisampledColorView2 =
|
wgpu::TextureView multisampledColorView2 =
|
||||||
CreateTextureForRenderAttachment(kColorFormat, kSampleCount).CreateView();
|
CreateTextureForRenderAttachment(kColorFormat, kSampleCount).CreateView();
|
||||||
wgpu::Texture resolveTexture2 = CreateTextureForRenderAttachment(kColorFormat, 1);
|
wgpu::Texture resolveTexture2 = CreateTextureForRenderAttachment(kColorFormat, 1);
|
||||||
|
|
|
@ -246,6 +246,10 @@ TEST_P(RenderPassLoadOpTests, LoadOpClearIntegerFormatsToLargeValues) {
|
||||||
// TODO(crbug.com/dawn/1109): Re-enable once fixed on Mac Mini 8,1s w/ 11.5.
|
// TODO(crbug.com/dawn/1109): Re-enable once fixed on Mac Mini 8,1s w/ 11.5.
|
||||||
DAWN_SUPPRESS_TEST_IF(IsMetal() && IsIntel() && IsMacOS(11, 5));
|
DAWN_SUPPRESS_TEST_IF(IsMetal() && IsIntel() && IsMacOS(11, 5));
|
||||||
|
|
||||||
|
// TODO(crbug.com/dawn/1463): Re-enable, might be the same as above just on
|
||||||
|
// 12.4 instead of 11.5.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsMetal() && IsIntel() && IsMacOS(12, 4));
|
||||||
|
|
||||||
constexpr double kUint32MaxDouble = 4294967295.0;
|
constexpr double kUint32MaxDouble = 4294967295.0;
|
||||||
constexpr uint32_t kUint32Max = static_cast<uint32_t>(kUint32MaxDouble);
|
constexpr uint32_t kUint32Max = static_cast<uint32_t>(kUint32MaxDouble);
|
||||||
// RGBA32Uint for UINT32_MAX
|
// RGBA32Uint for UINT32_MAX
|
||||||
|
|
|
@ -299,6 +299,14 @@ crbug.com/tint/1502 webgpu:shader,validation,parse,literal:abstract_float:val="1
|
||||||
crbug.com/tint/1502 webgpu:shader,validation,parse,literal:abstract_float:val="2.4e-2h" [ Failure ]
|
crbug.com/tint/1502 webgpu:shader,validation,parse,literal:abstract_float:val="2.4e-2h" [ Failure ]
|
||||||
crbug.com/tint/1525 webgpu:shader,validation,parse,literal:u32:val="-2147483648" [ Failure ]
|
crbug.com/tint/1525 webgpu:shader,validation,parse,literal:u32:val="-2147483648" [ Failure ]
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Failures from upgrading Intel Mac Minis to 12.4
|
||||||
|
# KEEP
|
||||||
|
################################################################################
|
||||||
|
crbug.com/dawn/1461 [ monterey intel ] webgpu:api,operation,command_buffer,copyTextureToTexture:copy_depth_stencil:format="depth16unorm" [ Failure ]
|
||||||
|
crbug.com/dawn/1461 [ monterey intel ] webgpu:api,operation,command_buffer,copyTextureToTexture:copy_depth_stencil:format="depth24plus" [ Failure ]
|
||||||
|
crbug.com/dawn/1461 [ monterey intel ] webgpu:api,operation,command_buffer,copyTextureToTexture:copy_depth_stencil:format="depth24plus-stencil8" [ Failure ]
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# untriaged failures
|
# untriaged failures
|
||||||
# KEEP
|
# KEEP
|
||||||
|
|
Loading…
Reference in New Issue