Browse Source

Skip another allocation test on ARM64 .NET7

pull/2341/head
James Jackson-South 3 years ago
parent
commit
b158e0e2e6
  1. 8
      tests/ImageSharp.Tests/Memory/Allocators/UniformUnmanagedMemoryPoolTests.Trim.cs

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

@ -66,6 +66,14 @@ public partial class UniformUnmanagedMemoryPoolTests
return;
}
#if NET7_0_OR_GREATER
if (TestEnvironment.OSArchitecture == Architecture.Arm64)
{
// Skip on .NET7 ARM64: https://github.com/SixLabors/ImageSharp/issues/2342
return;
}
#endif
RemoteExecutor.Invoke(RunTest).Dispose();
static void RunTest()

Loading…
Cancel
Save