projects
/
platform
/
upstream
/
dotnet
/
runtime.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a75ea8b
)
Disable tests that are failing with JIT asserts on ARM64 (#60773)
author
Jeremy Koritzinsky
<jekoritz@microsoft.com>
Fri, 22 Oct 2021 20:33:46 +0000
(13:33 -0700)
committer
GitHub
<noreply@github.com>
Fri, 22 Oct 2021 20:33:46 +0000
(13:33 -0700)
src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/ArrayTests.cs
patch
|
blob
|
history
src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/SpanTests.cs
patch
|
blob
|
history
diff --git
a/src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/ArrayTests.cs
b/src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/ArrayTests.cs
index
fcdedc6
..
ff259ff
100644
(file)
--- a/
src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/ArrayTests.cs
+++ b/
src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/ArrayTests.cs
@@
-254,6
+254,7
@@
namespace DllImportGenerator.IntegrationTests
[Theory]
[InlineData(true)]
[InlineData(false)]
+ [ActiveIssue("https://github.com/dotnet/runtime/issues/60624", typeof(PlatformDetection), nameof(PlatformDetection.IsNotMonoRuntime), nameof(PlatformDetection.IsArm64Process))]
public void ArrayWithSimpleNonBlittableTypeMarshalling(bool result)
{
var boolValues = new[]
diff --git
a/src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/SpanTests.cs
b/src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/SpanTests.cs
index
ad61c89
..
a76d008
100644
(file)
--- a/
src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/SpanTests.cs
+++ b/
src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/SpanTests.cs
@@
-133,6
+133,7
@@
namespace DllImportGenerator.IntegrationTests
[Theory]
[InlineData(true)]
[InlineData(false)]
+ [ActiveIssue("https://github.com/dotnet/runtime/issues/60624", typeof(PlatformDetection), nameof(PlatformDetection.IsNotMonoRuntime), nameof(PlatformDetection.IsArm64Process))]
public void SpanWithSimpleNonBlittableTypeMarshalling(bool result)
{
var boolValues = new BoolStruct[]