From 0830301bf28d22ae783faf81fd06b2a1ab7c83d3 Mon Sep 17 00:00:00 2001 From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com> Date: Wed, 7 Feb 2024 15:14:03 +0000 Subject: [PATCH] Disabling tests failing on Firefox. --- .../DebuggerTestSuite/EvaluateOnCallFrame2Tests.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/mono/browser/debugger/DebuggerTestSuite/EvaluateOnCallFrame2Tests.cs b/src/mono/browser/debugger/DebuggerTestSuite/EvaluateOnCallFrame2Tests.cs index 1356f3a90e575e..8e0a68441d06cc 100644 --- a/src/mono/browser/debugger/DebuggerTestSuite/EvaluateOnCallFrame2Tests.cs +++ b/src/mono/browser/debugger/DebuggerTestSuite/EvaluateOnCallFrame2Tests.cs @@ -816,8 +816,9 @@ await EvaluateOnCallFrameAndCheck(id, ("mc.Method(instance2.propInt)", TNumber(12)) ); }); - - [Fact] + + // https://github.com/dotnet/runtime/issues/98086 + [ConditionalFact(nameof(RunningOnChrome))] public async Task EvaluateValueTypeWithFixedArrayAndMoreFields() => await CheckInspectLocalsAtBreakpointSite( "DebuggerTests.EvaluateValueTypeWithFixedArray", "run", 3, "DebuggerTests.EvaluateValueTypeWithFixedArray.run", "window.setTimeout(function() { invoke_static_method ('[debugger-test] DebuggerTests.EvaluateValueTypeWithFixedArray:run'); })", @@ -829,8 +830,9 @@ await RuntimeEvaluateAndCheck( ("myVar.myIntArray[1]", TNumber(2)), ("myVar.myCharArray[2]", TChar('a'))); }); - - [Fact] + + // https://github.com/dotnet/runtime/issues/98086 + [ConditionalFact(nameof(RunningOnChrome))] public async Task EvaluateValueTypeWithObjectValueType() => await CheckInspectLocalsAtBreakpointSite( "DebuggerTests.EvaluateValueTypeWithObjectValueType", "run", 3, "DebuggerTests.EvaluateValueTypeWithObjectValueType.run", "window.setTimeout(function() { invoke_static_method ('[debugger-test] DebuggerTests.EvaluateValueTypeWithObjectValueType:run'); })",