Browse Source
Merge branch 'master' into af/memory-diagnostics
pull/1969/head
James Jackson-South
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
tests/ImageSharp.Tests/Memory/Allocators/UniformUnmanagedMemoryPoolTests.cs
|
|
|
@ -245,7 +245,10 @@ namespace SixLabors.ImageSharp.Tests.Memory.Allocators |
|
|
|
cleanup.Register(b1); |
|
|
|
} |
|
|
|
|
|
|
|
[Theory] |
|
|
|
public static readonly bool IsNotMacOS = !TestEnvironment.IsOSX; |
|
|
|
|
|
|
|
// TODO: Investigate MacOS failures
|
|
|
|
[ConditionalTheory(nameof(IsNotMacOS))] |
|
|
|
[InlineData(false)] |
|
|
|
[InlineData(true)] |
|
|
|
public void RentReturnRelease_SubsequentRentReturnsDifferentHandles(bool multiple) |
|
|
|
|