Disable BufferSetSubData.ManySetSubData on Metal
Disables ManySetSubData on Intel/Metal configurations, as it has started failing on Mac 10.14.6. Bug: dawn:228 Change-Id: Ia7d27a698deb9abc08cc04660903e5c6c93bbf50 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/11460 Commit-Queue: Kai Ninomiya <kainino@chromium.org> Reviewed-by: Kai Ninomiya <kainino@chromium.org>
This commit is contained in:
parent
38b295de38
commit
0c4d75931a
|
@ -217,6 +217,9 @@ TEST_P(BufferSetSubDataTests, ManySetSubData) {
|
||||||
|
|
||||||
// TODO (jiawei.shao@intel.com): find out why this test fails on Intel Vulkan Linux bots.
|
// TODO (jiawei.shao@intel.com): find out why this test fails on Intel Vulkan Linux bots.
|
||||||
DAWN_SKIP_TEST_IF(IsIntel() && IsVulkan() && IsLinux());
|
DAWN_SKIP_TEST_IF(IsIntel() && IsVulkan() && IsLinux());
|
||||||
|
// TODO(https://bugs.chromium.org/p/dawn/issues/detail?id=228): Re-enable
|
||||||
|
// once the issue with Metal on 10.14.6 is fixed.
|
||||||
|
DAWN_SKIP_TEST_IF(IsMacOS() && IsIntel() && IsMetal());
|
||||||
|
|
||||||
constexpr uint64_t kSize = 4000 * 1000;
|
constexpr uint64_t kSize = 4000 * 1000;
|
||||||
constexpr uint32_t kElements = 500 * 500;
|
constexpr uint32_t kElements = 500 * 500;
|
||||||
|
|
Loading…
Reference in New Issue