Skip to content

Commit

Permalink
Merge branch 'Arm'
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Aug 26, 2024
2 parents bc4fcc0 + 7d0ba90 commit d1241b0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions test/Base64DecodingTestsUTF16.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void DecodeBase64CasesScalarTUF16()
}

[Fact]
[Trait("Category", "SSE")]
[Trait("Category", "sse")]
public void DecodeBase64CasesSSETUF16()
{
DecodeBase64CasesUTF16(SimdBase64.SSE.Base64.DecodeFromBase64SSE);
Expand Down Expand Up @@ -192,7 +192,7 @@ public void MoreDecodeTestsScalarUTF16()


[FactOnSystemRequirementAttribute(TestSystemRequirements.X64Sse)]
[Trait("Category", "SSE")]
[Trait("Category", "sse")]
public void MoreDecodeTestsSSEUTF16()
{
MoreDecodeTestsUTF16(SimdBase64.SSE.Base64.DecodeFromBase64SSE, SimdBase64.Scalar.Base64.SafeBase64ToBinaryWithWhiteSpace);
Expand Down Expand Up @@ -307,7 +307,7 @@ public void RoundtripBase64SSEUtf16()
}

[FactOnSystemRequirementAttribute(TestSystemRequirements.Arm64)]
[Trait("Category", "ARM64")]
[Trait("Category", "arm64")]
public void RoundtripBase64ARMUtf16()
{
RoundtripBase64UTF16(SimdBase64.Arm.Base64.DecodeFromBase64ARM, SimdBase64.Scalar.Base64.SafeBase64ToBinaryWithWhiteSpace);
Expand Down Expand Up @@ -1412,13 +1412,13 @@ public void Issue511ScalarUTF16()
}


[Trait("Category", "SSE")]
[Trait("Category", "sse")]
[FactOnSystemRequirementAttribute(TestSystemRequirements.X64Sse)]
public void Issue511SSEUTF16()
{
Issue511UTF16(SimdBase64.SSE.Base64.DecodeFromBase64SSE);
}
[Trait("Category", "Arm64")]
[Trait("Category", "arm64")]
[FactOnSystemRequirementAttribute(TestSystemRequirements.Arm64)]
public void Issue511ARMUTF16()
{
Expand Down
10 changes: 5 additions & 5 deletions test/Base64DecodingTestsUTF8.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void DecodeBase64CasesSSE()
DecodeBase64CasesUTF8(SimdBase64.SSE.Base64.DecodeFromBase64SSE, SimdBase64.Scalar. Base64.MaximalBinaryLengthFromBase64Scalar);
}

[Trait("Category", "arm")]
[Trait("Category", "arm64")]
[FactOnSystemRequirementAttribute(TestSystemRequirements.Arm64)]
public void DecodeBase64CasesARM()
{
Expand Down Expand Up @@ -136,7 +136,7 @@ public void CompleteDecodeBase64CasesSSE()
CompleteDecodeBase64CasesUTF8(SimdBase64.SSE.Base64.DecodeFromBase64SSE, SimdBase64.Scalar.Base64.SafeBase64ToBinaryWithWhiteSpace, SimdBase64.Scalar. Base64.MaximalBinaryLengthFromBase64Scalar);
}

[Trait("Category", "arm")]
[Trait("Category", "arm64")]
[FactOnSystemRequirementAttribute(TestSystemRequirements.Arm64)]
public void CompleteDecodeBase64CasesARM()
{
Expand Down Expand Up @@ -229,14 +229,14 @@ public void Issue511ScalarUTF8()
}


[Trait("Category", "SSE")]
[Trait("Category", "sse")]
[FactOnSystemRequirementAttribute(TestSystemRequirements.X64Sse)]
public void Issue511SSEUTF8()
{
Issue511UTF8(SimdBase64.SSE.Base64.DecodeFromBase64SSE);
}

[Trait("Category", "ARM")]
[Trait("Category", "arm64")]
[FactOnSystemRequirementAttribute(TestSystemRequirements.Arm64)]
public void Issue511ARMUTF8()
{
Expand Down Expand Up @@ -312,7 +312,7 @@ public void MoreDecodeTestsUrlSSEUTF8()
MoreDecodeTestsUrlUTF8(SimdBase64.SSE.Base64.DecodeFromBase64SSE, SimdBase64.Scalar.Base64.SafeBase64ToBinaryWithWhiteSpace, SimdBase64.Scalar. Base64.MaximalBinaryLengthFromBase64Scalar);
}

[Trait("Category", "arm")]
[Trait("Category", "arm64")]
[FactOnSystemRequirementAttribute(TestSystemRequirements.Arm64)]
public void MoreDecodeTestsUrlARMUTF8()
{
Expand Down

0 comments on commit d1241b0

Please sign in to comment.