Skip to content

Commit b158e0e

Browse files
Skip another allocation test on ARM64 .NET7
1 parent 4551f45 commit b158e0e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,14 @@ public void MultiplePoolInstances_TrimPeriodElapsed_AllAreTrimmed()
6666
return;
6767
}
6868

69+
#if NET7_0_OR_GREATER
70+
if (TestEnvironment.OSArchitecture == Architecture.Arm64)
71+
{
72+
// Skip on .NET7 ARM64: https://github.com/SixLabors/ImageSharp/issues/2342
73+
return;
74+
}
75+
#endif
76+
6977
RemoteExecutor.Invoke(RunTest).Dispose();
7078

7179
static void RunTest()

0 commit comments

Comments
 (0)