Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[iOS][Android] ActiveIssue tests that are failing on CI
  • Loading branch information
Steve Pfister committed Jan 19, 2023
commit 2a6a4c44462c7202e19129973a067141e86db2db
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