We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7e063b commit e09114cCopy full SHA for e09114c
test/UTF8ValidationTests.cs
@@ -50,7 +50,7 @@ private static bool IsSystemSupported(TestSystemRequirements requiredSystems)
50
switch (RuntimeInformation.ProcessArchitecture)
51
{
52
case Architecture.Arm64:
53
- return requiredSystems.HasFlag(TestSystemRequirements.Arm64);
+ return requiredSystems.HasFlag(TestSystemRequirements.Arm64) && AdvSimd.Arm64.IsSupported && BitConverter.IsLittleEndian;
54
case Architecture.X64:
55
return (requiredSystems.HasFlag(TestSystemRequirements.X64Avx512) && Vector512.IsHardwareAccelerated && System.Runtime.Intrinsics.X86.Avx512F.IsSupported) ||
56
(requiredSystems.HasFlag(TestSystemRequirements.X64Avx2) && System.Runtime.Intrinsics.X86.Avx2.IsSupported) ||
0 commit comments