Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions eng/pipelines/libraries/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,10 @@ jobs:
- ${{ if eq(parameters.jobParameters.isFullMatrix, true) }}:
- OSX.1013.Amd64.Open
- OSX.1014.Amd64.Open
# The 10.15 machines aren't in the same configuration, see
# https://github.com/dotnet/runtime/issues/24736
#- OSX.1015.Amd64.Open
- OSX.1015.Amd64.Open
Comment thread
directhex marked this conversation as resolved.
- ${{ if eq(parameters.jobParameters.isFullMatrix, false) }}:
- OSX.1013.Amd64.Open
- OSX.1014.Amd64.Open
- OSX.1015.Amd64.Open

# Windows_NT x64
- ${{ if eq(parameters.platform, 'Windows_NT_x64') }}:
Expand Down
4 changes: 4 additions & 0 deletions src/libraries/System.Drawing.Common/tests/FontFamilyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ public void Equals_Object_ReturnsExpected(FontFamily fontFamily, object other, b
}
}

// This will fail on any platform we use libgdiplus, with any
// installed system fonts whose name is longer than 31 chars.
// macOS 10.15+ ships out of the box with a problem font
[ActiveIssue("https://github.com/dotnet/runtime/issues/40937", TestPlatforms.AnyUnix)]
[ConditionalFact(Helpers.IsDrawingSupported)]
public void Families_Get_ReturnsExpected()
{
Expand Down