Browse Source

Revert "attempt to re-enable RentReturnRelease_SubsequentRentReturnsDifferentHandles on Mac"

This reverts commit bbbf687477.
pull/1970/head
Anton Firszov 4 years ago
parent
commit
6078c0eb92
  1. 5
      tests/ImageSharp.Tests/Memory/Allocators/UniformUnmanagedMemoryPoolTests.cs

5
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)

Loading…
Cancel
Save