From da3adc5b29ef1a5f833df042c32900dd187b4129 Mon Sep 17 00:00:00 2001 From: Santiago Fernandez Madero Date: Tue, 9 Nov 2021 10:23:43 -0800 Subject: [PATCH] Disable a couple of pen tests on Windows (#60746) (#60789) --- src/libraries/System.Drawing.Common/tests/PenTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libraries/System.Drawing.Common/tests/PenTests.cs b/src/libraries/System.Drawing.Common/tests/PenTests.cs index 3b413bc0f0b9d..b5f39c4483855 100644 --- a/src/libraries/System.Drawing.Common/tests/PenTests.cs +++ b/src/libraries/System.Drawing.Common/tests/PenTests.cs @@ -46,6 +46,7 @@ public static IEnumerable Ctor_Brush_Width_TestData() yield return new object[] { new SolidBrush(Color.Red), float.MaxValue, PenType.SolidColor }; } + [ActiveIssue("https://github.com/dotnet/runtime/issues/60731", TestPlatforms.Windows)] [ConditionalTheory(Helpers.IsDrawingSupported)] [MemberData(nameof(Ctor_Brush_Width_TestData))] public void Ctor_Brush_Width(T brush, float width, PenType expectedPenType) where T : Brush @@ -96,6 +97,7 @@ public void Ctor_Color() } } + [ActiveIssue("https://github.com/dotnet/runtime/issues/60731", TestPlatforms.Windows)] [ConditionalTheory(Helpers.IsDrawingSupported)] [InlineData(-1)] [InlineData(0)]