summaryrefslogtreecommitdiff
path: root/src/coreclr/tests/src/Loader/binding/assemblies/assemblybugs/37910/Ii.csproj
diff options
context:
space:
mode:
authorMikhail Kurinnoi/AI Compiler Lab /SRR/Staff Engineer/Samsung Electronics <m.kurinnoi@samsung.com>2020-06-26 01:30:09 +0300
committerHyungju Lee <leee.lee@samsung.com>2020-10-07 07:23:06 +0900
commitcee50c8cfe92e940124e7c9bdb421e546842b483 (patch)
tree3d831ce90f534b1c85caee67ee758769e2a4985a /src/coreclr/tests/src/Loader/binding/assemblies/assemblybugs/37910/Ii.csproj
parentc9d9ed464fe145cbc17b3f752061994319a07c2b (diff)
downloadcoreclr-cee50c8cfe92e940124e7c9bdb421e546842b483.tar.gz
coreclr-cee50c8cfe92e940124e7c9bdb421e546842b483.tar.bz2
coreclr-cee50c8cfe92e940124e7c9bdb421e546842b483.zip
Fix TPA map hash calculation. (#288)submit/tizen_5.0_base/20210129.022026tizen_5.0_base
* Fix TPA map hash calculation. The point of issue is "the Turkish-I Problem". After locale changed, towupper() provide another result for "i" and different hash are calculated in case if file name have "i" letter. * Regression test for #37910
Diffstat (limited to 'src/coreclr/tests/src/Loader/binding/assemblies/assemblybugs/37910/Ii.csproj')
-rw-r--r--src/coreclr/tests/src/Loader/binding/assemblies/assemblybugs/37910/Ii.csproj12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/coreclr/tests/src/Loader/binding/assemblies/assemblybugs/37910/Ii.csproj b/src/coreclr/tests/src/Loader/binding/assemblies/assemblybugs/37910/Ii.csproj
new file mode 100644
index 0000000000..d1d1441426
--- /dev/null
+++ b/src/coreclr/tests/src/Loader/binding/assemblies/assemblybugs/37910/Ii.csproj
@@ -0,0 +1,12 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <CLRTestKind>BuildAndRun</CLRTestKind>
+ <CLRTestPriority>1</CLRTestPriority>
+ <!-- Test unsupported outside of linux -->
+ <CLRTestTargetUnsupported Condition="'$(TargetOS)' != 'Linux'">true</CLRTestTargetUnsupported>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="Ii.cs" />
+ </ItemGroup>
+</Project>