-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable test that already fixed #70065
Conversation
Tagging subscribers to this area: @dotnet/area-system-reflection-emit Issue DetailsApparently the ModuleBuilder.GetType does not work with ignore case with certain unicode chars on Unix was fixed by Add support for invariant casing in PAL. Tested on Ubuntu, no failure Closes #18231
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM assuming CI is green
@@ -10,7 +10,7 @@ public class ModuleBuilderDefineType | |||
{ | |||
public static IEnumerable<object[]> TestData() | |||
{ | |||
foreach (string name in new string[] { "TestName", "testname", "class", "\uD800\uDC00", "a\0b\0c" }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Turns out it was failing on mono only for "a\0b\0c"
case and @GrabYourPitchforks suggested to remove it as it is not valid scenario to test
The failure is known issue it doesn't have any code change anyways, merging |
Apparently the ModuleBuilder.GetType does not work with ignore case with certain unicode chars on Unix was fixed by Add support for invariant casing in PAL.
Tested on Ubuntu
Closes #18231