From: Santiago Fernandez Madero Date: Tue, 18 Jun 2019 18:44:55 +0000 (-0700) Subject: Disable System.Drawing.Common tests for RedHat6 (dotnet/corefx#38649) X-Git-Tag: submit/tizen/20210909.063632~11031^2~1257 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c64ae869b01643076de5cc99c5f41bebed94b68;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Disable System.Drawing.Common tests for RedHat6 (dotnet/corefx#38649) Commit migrated from https://github.com/dotnet/corefx/commit/a7e0c8d9e14a4f814a7e08ddfd0316353c37dd95 --- diff --git a/src/libraries/Common/tests/System/Drawing/Helpers.cs b/src/libraries/Common/tests/System/Drawing/Helpers.cs index 3f8001e..8a7098e 100644 --- a/src/libraries/Common/tests/System/Drawing/Helpers.cs +++ b/src/libraries/Common/tests/System/Drawing/Helpers.cs @@ -20,7 +20,7 @@ namespace System.Drawing public const string AnyInstalledPrinters = nameof(Helpers) + "." + nameof(IsAnyInstalledPrinters); public const string WindowsRS3OrEarlier = nameof(Helpers) + "." + nameof(IsWindowsRS3OrEarlier); - public static bool GetIsDrawingSupported() => PlatformDetection.IsDrawingSupported; + public static bool GetIsDrawingSupported() => /* ActiveIssue(24525) */ PlatformDetection.IsNotRedHatFamily6 && PlatformDetection.IsDrawingSupported; public static bool IsNotUnix => PlatformDetection.IsWindows;