Skip to content

Commit

Permalink
[iOS][Android] ActiveIssue tests that are failing on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Pfister committed Jan 19, 2023
1 parent 181ef2e commit 2a6a4c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/libraries/System.Memory/tests/Span/IndexOfAnyValues.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ static void Test<T>(ReadOnlySpan<T> needle, IndexOfAnyValues<T> values) where T

[Theory]
[MemberData(nameof(Values_MemberData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/80875", TestPlatforms.iOS | TestPlatforms.tvOS)]
public static void IndexOfAnyValues_GetValues(string needle, byte[] byteNeedle)
{
char[] charValuesActual = s_getValuesCharMethod(IndexOfAnyValues.Create(needle));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ public void Matrix4x4IndexerGetTest(float m11, float m12, float m13, float m14,
[InlineData(1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f)]
[InlineData(3.1434343f, 1.1234123f, 0.1234123f, -0.1234123f, 3.1434343f, 1.1234123f, 3.1434343f, 1.1234123f, 0.1234123f, -0.1234123f, 3.1434343f, 1.1234123f, 3.1434343f, 1.1234123f, 0.1234123f, -0.1234123f)]
[InlineData(1.0000001f, 0.0000001f, 2.0000001f, 0.0000002f, 1.0000001f, 0.0000001f, 1.0000001f, 0.0000001f, 2.0000001f, 0.0000002f, 1.0000001f, 0.0000001f, 1.0000001f, 0.0000001f, 2.0000001f, 0.0000002f)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/80876", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void Matrix4x4IndexerSetTest(float m11, float m12, float m13, float m14, float m21, float m22, float m23, float m24, float m31, float m32, float m33, float m34, float m41, float m42, float m43, float m44)
{
var matrix = new Matrix4x4(0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3072,6 +3072,7 @@ private static unsafe byte[] ObfuscateWithExtraData(byte[] unobfuscated, bool se
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/80863", TestPlatforms.Android | TestPlatforms.iOS | TestPlatforms.tvOS)]
public void GetAssemblyName()
{
AssertExtensions.Throws<ArgumentNullException>("assemblyFile", () => MetadataReader.GetAssemblyName(null));
Expand Down

0 comments on commit 2a6a4c4

Please sign in to comment.