Suppress GTX 1660 failures

Suppresses several failures in Dawn's C++ tests that were found on
Windows machines with GTX 1660s.

Bug: dawn:1216, dawn:1217

Change-Id: I1b9feddd742837d0f91118803103eecbaa9effc9
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/71560
Commit-Queue: Brian Sheedy <bsheedy@google.com>
Commit-Queue: Austin Eng <enga@chromium.org>
Auto-Submit: Brian Sheedy <bsheedy@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
Brian Sheedy 2021-12-02 01:28:26 +00:00 committed by Dawn LUCI CQ
parent ec5aa6e5df
commit b17ecc3835
2 changed files with 9 additions and 0 deletions

View File

@ -2214,6 +2214,8 @@ TEST_P(CopyTests_T2T, Texture3DTo2DArrayFull) {
// for src and/or dst texture, non-zero offset (copy origin), non-zero mip level.
TEST_P(CopyTests_T2T, Texture3DAnd2DArraySubRegion) {
DAWN_TEST_UNSUPPORTED_IF(IsANGLE()); // TODO(crbug.com/angleproject/5967)
// TODO(crbug.com/dawn/1216): Remove this suppression.
DAWN_TEST_UNSUPPORTED_IF(IsD3D12() && IsNvidia());
constexpr uint32_t kWidth = 8;
constexpr uint32_t kHeight = 4;
@ -2271,6 +2273,8 @@ TEST_P(CopyTests_T2T, Texture3DAnd2DArraySubRegion) {
// Test that copying whole 2D array to a 3D texture in one texture-to-texture-copy works.
TEST_P(CopyTests_T2T, Texture2DArrayTo3DFull) {
// TODO(crbug.com/dawn/1216): Remove this suppression.
DAWN_TEST_UNSUPPORTED_IF(IsD3D12() && IsNvidia());
constexpr uint32_t kWidth = 256;
constexpr uint32_t kHeight = 128;
constexpr uint32_t kDepth = 6u;
@ -2313,6 +2317,8 @@ TEST_P(CopyTests_T2T, Texture3DTo2DArraySubRegion) {
// works.
TEST_P(CopyTests_T2T, Texture2DArrayTo3DSubRegion) {
DAWN_TEST_UNSUPPORTED_IF(IsANGLE()); // TODO(crbug.com/angleproject/5967)
// TODO(crbug.com/dawn/1216): Remove this suppression.
DAWN_TEST_UNSUPPORTED_IF(IsD3D12() && IsNvidia());
constexpr uint32_t kWidth = 256;
constexpr uint32_t kHeight = 128;
constexpr uint32_t kDepth = 6u;

View File

@ -105,6 +105,9 @@ TEST_P(MaxLimitTests, MaxBufferBindingSize) {
// TODO(crbug.com/dawn/1172)
DAWN_SUPPRESS_TEST_IF(IsWindows() && IsVulkan() && IsIntel());
// TODO(crbug.com/dawn/1217): Remove this suppression.
DAWN_TEST_UNSUPPORTED_IF(IsWindows() && IsVulkan() && IsNvidia());
for (wgpu::BufferUsage usage : {wgpu::BufferUsage::Storage, wgpu::BufferUsage::Uniform}) {
uint64_t maxBufferBindingSize;
std::string shader;