Skip to content

Commit 4b187af

Browse files
authored
Disable tests that are failing with JIT asserts on ARM64 (dotnet#60773)
1 parent a75ea8b commit 4b187af

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/ArrayTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ public void ArrayByValueInOutParameter()
254254
[Theory]
255255
[InlineData(true)]
256256
[InlineData(false)]
257+
[ActiveIssue("https://github.com/dotnet/runtime/issues/60624", typeof(PlatformDetection), nameof(PlatformDetection.IsNotMonoRuntime), nameof(PlatformDetection.IsArm64Process))]
257258
public void ArrayWithSimpleNonBlittableTypeMarshalling(bool result)
258259
{
259260
var boolValues = new[]

src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/SpanTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ public void NullBlittableElementSpanReturnedFromNative()
133133
[Theory]
134134
[InlineData(true)]
135135
[InlineData(false)]
136+
[ActiveIssue("https://github.com/dotnet/runtime/issues/60624", typeof(PlatformDetection), nameof(PlatformDetection.IsNotMonoRuntime), nameof(PlatformDetection.IsArm64Process))]
136137
public void SpanWithSimpleNonBlittableTypeMarshalling(bool result)
137138
{
138139
var boolValues = new BoolStruct[]

0 commit comments

Comments
 (0)