Speculatively suppress RequiredBufferSizeInCopyTests on Win Intel x86

Bug: dawn:1375
Change-Id: Ieb218fc90e93734f2ccaacaf9a0dd22c57d93163
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/86866
Reviewed-by: Loko Kung <lokokung@google.com>
Commit-Queue: Austin Eng <enga@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
This commit is contained in:
Austin Eng 2022-04-15 22:19:51 +00:00 committed by Dawn LUCI CQ
parent d79cc5bd5b
commit 3199179167
1 changed files with 9 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#include "dawn/tests/DawnTest.h" #include "dawn/tests/DawnTest.h"
#include "dawn/common/Platform.h"
#include "dawn/utils/TestUtils.h" #include "dawn/utils/TestUtils.h"
#include "dawn/utils/WGPUHelpers.h" #include "dawn/utils/WGPUHelpers.h"
@ -71,6 +72,14 @@ namespace {
class RequiredBufferSizeInCopyTests class RequiredBufferSizeInCopyTests
: public DawnTestWithParams<RequiredBufferSizeInCopyTestsParams> { : public DawnTestWithParams<RequiredBufferSizeInCopyTestsParams> {
protected: protected:
void SetUp() override {
DawnTestWithParams<RequiredBufferSizeInCopyTestsParams>::SetUp();
#ifdef DAWN_PLATFORM_32_BIT
// Suspect causing flaky hangs or crashes. crbug.com/dawn/1375.
DAWN_SUPPRESS_TEST_IF(IsWindows() && IsIntel());
#endif
}
void DoTest(const uint64_t bufferSize) { void DoTest(const uint64_t bufferSize) {
wgpu::BufferDescriptor descriptor; wgpu::BufferDescriptor descriptor;
descriptor.size = bufferSize; descriptor.size = bufferSize;