8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc99be commit 93a8c83Copy full SHA for 93a8c83
src/embed_tests/TestTypeManager.cs
@@ -54,12 +54,12 @@ public static void TestMemoryMapping()
54
// We can't use compiler flags because we compile with MONO_LINUX
55
// while running on the Microsoft .NET Core during continuous
56
// integration tests.
57
- if (System.Type.GetType ("Mono.Runtime") != null)
+ /* if (System.Type.GetType ("Mono.Runtime") != null)
58
{
59
// Mono throws NRE instead of AccessViolationException for some reason.
60
Assert.That(() => { Marshal.WriteInt64(page, 73); }, Throws.TypeOf<System.NullReferenceException>());
61
Assert.That(Marshal.ReadInt64(page), Is.EqualTo(17));
62
- }
+ } */
63
}
64
65
0 commit comments