From eb4014db429845f9b2a9521747f7c4a9450440d6 Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Sun, 17 Sep 2017 20:34:01 +0300 Subject: [PATCH] Excluded the test for fixed arrays of primitive pointers on macOS. Signed-off-by: Dimitar Dobrev --- tests/CSharp/CSharp.Tests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CSharp/CSharp.Tests.cs b/tests/CSharp/CSharp.Tests.cs index a5a6adce..98a4e930 100644 --- a/tests/CSharp/CSharp.Tests.cs +++ b/tests/CSharp/CSharp.Tests.cs @@ -1072,7 +1072,7 @@ public unsafe class CSharpTests : GeneratorTestFixture } } - [Test] + [Test, Platform(Exclude = "MacOsX")] public void TestFixedArrayParams() { Foo[] pointers = { new Foo { A = 2 }, new Foo { A = 5 }, new Foo { A = 7 } };