Skip to content

Commit e09114c

Browse files
committed
saving...
1 parent e7e063b commit e09114c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/UTF8ValidationTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ private static bool IsSystemSupported(TestSystemRequirements requiredSystems)
5050
switch (RuntimeInformation.ProcessArchitecture)
5151
{
5252
case Architecture.Arm64:
53-
return requiredSystems.HasFlag(TestSystemRequirements.Arm64);
53+
return requiredSystems.HasFlag(TestSystemRequirements.Arm64) && AdvSimd.Arm64.IsSupported && BitConverter.IsLittleEndian;
5454
case Architecture.X64:
5555
return (requiredSystems.HasFlag(TestSystemRequirements.X64Avx512) && Vector512.IsHardwareAccelerated && System.Runtime.Intrinsics.X86.Avx512F.IsSupported) ||
5656
(requiredSystems.HasFlag(TestSystemRequirements.X64Avx2) && System.Runtime.Intrinsics.X86.Avx2.IsSupported) ||

0 commit comments

Comments
 (0)