Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public void Iri_UnicodePlane2()
EscapeUnescapeTestUnicodePlane(0x20000, 0x2FFFF);
}

[Fact]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.Is64BitProcess))]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Is 64-bit" is not really a good proxy for "has a lot of memory" anymore. Mobile devices (Android / iOS) are 64-bit but tend to be memory constrained anyway. See RunGetBitLengthTestsLarge as another such example.

Consider marking this OuterLoop as well.

public void Iri_UnicodePlane3_13()
{
EscapeUnescapeTestUnicodePlane(0x30000, 0xDFFFF);
Expand Down
Loading