Suppress an additional OOM allocation test on M1.
Bug: dawn:1506 Change-Id: I0ebd89c17284ff724a5cf8b875fbb01d2366f3e5 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/100703 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
parent
b4697b713c
commit
ef8b50f9d2
|
@ -821,6 +821,10 @@ TEST_P(BufferTests, CreateBufferOOM) {
|
|||
|
||||
// Test that a very large buffer mappedAtCreation fails gracefully.
|
||||
TEST_P(BufferTests, BufferMappedAtCreationOOM) {
|
||||
// TODO(crbug.com/dawn/1506): new (std::nothrow) crashes on OOM on Mac ARM64 because libunwind
|
||||
// doesn't see the previous catchall try-catch.
|
||||
DAWN_SUPPRESS_TEST_IF(DAWN_PLATFORM_IS(MACOS) && DAWN_PLATFORM_IS(ARM64));
|
||||
|
||||
// TODO(http://crbug.com/dawn/749): Missing support.
|
||||
DAWN_TEST_UNSUPPORTED_IF(IsOpenGL());
|
||||
DAWN_TEST_UNSUPPORTED_IF(IsOpenGLES());
|
||||
|
|
Loading…
Reference in New Issue