Skip to content

Commit cb3896a

Browse files
Merge pull request #1970 from SixLabors/af/revert-bbbf687
Disable RentReturnRelease_SubsequentRentReturnsDifferentHandles on Mac again
2 parents aff08f7 + 6078c0e commit cb3896a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/ImageSharp.Tests/Memory/Allocators/UniformUnmanagedMemoryPoolTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,10 @@ public void Rent_MultiBuff_BelowCapacity_Succeeds(int initialRent, int attempt,
245245
cleanup.Register(b1);
246246
}
247247

248-
[Theory]
248+
public static readonly bool IsNotMacOS = !TestEnvironment.IsOSX;
249+
250+
// TODO: Investigate MacOS failures
251+
[ConditionalTheory(nameof(IsNotMacOS))]
249252
[InlineData(false)]
250253
[InlineData(true)]
251254
public void RentReturnRelease_SubsequentRentReturnsDifferentHandles(bool multiple)

0 commit comments

Comments
 (0)