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:
parent
d79cc5bd5b
commit
3199179167
|
@ -14,6 +14,7 @@
|
|||
|
||||
#include "dawn/tests/DawnTest.h"
|
||||
|
||||
#include "dawn/common/Platform.h"
|
||||
#include "dawn/utils/TestUtils.h"
|
||||
#include "dawn/utils/WGPUHelpers.h"
|
||||
|
||||
|
@ -71,6 +72,14 @@ namespace {
|
|||
class RequiredBufferSizeInCopyTests
|
||||
: public DawnTestWithParams<RequiredBufferSizeInCopyTestsParams> {
|
||||
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) {
|
||||
wgpu::BufferDescriptor descriptor;
|
||||
descriptor.size = bufferSize;
|
||||
|
|
Loading…
Reference in New Issue