You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Failing the System.Tests.StringTests.InternTest System.Runtime test.
We could probably fix this by walking the frozen objects region, looking for all strings in it and adding them to the intern table on first String.Intern call.
The text was updated successfully, but these errors were encountered:
Should we fix the test so that it only checks for string.Empty and nothing else?
I just realized that this is probably CompilationRelaxations.NoStringInterning - the C# compiler puts that attribute by default so this is a legal optimization for any runtime to do.
Failing the System.Tests.StringTests.InternTest System.Runtime test.
We could probably fix this by walking the frozen objects region, looking for all strings in it and adding them to the intern table on first
String.Intern
call.The text was updated successfully, but these errors were encountered: