From 333005faadffd0bee68d386ec2a2c2bada18dfae Mon Sep 17 00:00:00 2001 From: duckdoom5 Date: Thu, 23 Jan 2025 00:42:28 +0100 Subject: [PATCH] Ignore crashing unit test in debug builds --- tests/dotnet/CSharp/CSharp.Tests.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/dotnet/CSharp/CSharp.Tests.cs b/tests/dotnet/CSharp/CSharp.Tests.cs index 9558ff10..2ede0591 100644 --- a/tests/dotnet/CSharp/CSharp.Tests.cs +++ b/tests/dotnet/CSharp/CSharp.Tests.cs @@ -1142,6 +1142,9 @@ public unsafe class CSharpTests } [Test] +#if !RELEASE + [Ignore("Crashes in debug builds")] +#endif public void TestStackOverflowOnVirtualCall() { using (var hasMissingObjectOnVirtualCall = new HasMissingObjectOnVirtualCall())