summaryrefslogtreecommitdiff
path: root/tests/src/Interop
diff options
context:
space:
mode:
authorJiyoung Giuliana Yun <t2wish@gmail.com>2016-05-20 09:01:53 +0900
committerJan Kotas <jkotas@microsoft.com>2016-05-19 17:01:53 -0700
commitec5f215aff689ff4db698cfc11d9e48691398f67 (patch)
treebdd36858bfe503377850ba28956c81e816131dee /tests/src/Interop
parent9d7254efd6d1ef5d7c9aa8583eb1f6cccff6dfbc (diff)
downloadcoreclr-ec5f215aff689ff4db698cfc11d9e48691398f67.tar.gz
coreclr-ec5f215aff689ff4db698cfc11d9e48691398f67.tar.bz2
coreclr-ec5f215aff689ff4db698cfc11d9e48691398f67.zip
Fix case-sensitive issue on Linux (#5086)
Fix #5035 The file paths should be case-sensitive on Linux. Signed-off-by: Jiyoung Yun <jy910.yun@samsung.com>
Diffstat (limited to 'tests/src/Interop')
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/CopyByteArray.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/CopyCharArray.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/CopyDoubleArray.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/CopyInt16Array.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/CopyInt32Array.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/CopyInt64Array.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/CopyIntPtrArray.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Copy/CopySingleArray.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/FunctionPointer/FunctionPtrTest.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/GetExceptionForHR/GetExceptionForHR.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/GetNativeVariantForObject/GetNativeVariantForObject.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/GetObjectForNativeVariant.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/GetObjectsForNativeVariants.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/IUnknown/IUnknownTest.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Miscellaneous/AutoLayoutStructure.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/Miscellaneous/MarshalClassTests.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/String/StringMarshalingTest.csproj2
-rw-r--r--tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/UnsafeAddrOfPinnedArrayElement.csproj2
24 files changed, 24 insertions, 24 deletions
diff --git a/tests/src/Interop/MarshalAPI/Copy/CopyByteArray.csproj b/tests/src/Interop/MarshalAPI/Copy/CopyByteArray.csproj
index 3ffd008161..5fa4c00068 100644
--- a/tests/src/Interop/MarshalAPI/Copy/CopyByteArray.csproj
+++ b/tests/src/Interop/MarshalAPI/Copy/CopyByteArray.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CopyByteArray.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Copy/CopyCharArray.csproj b/tests/src/Interop/MarshalAPI/Copy/CopyCharArray.csproj
index 694e3d61ab..9238d5c466 100644
--- a/tests/src/Interop/MarshalAPI/Copy/CopyCharArray.csproj
+++ b/tests/src/Interop/MarshalAPI/Copy/CopyCharArray.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CopyCharArray.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Copy/CopyDoubleArray.csproj b/tests/src/Interop/MarshalAPI/Copy/CopyDoubleArray.csproj
index 11cd0eb138..264498b63a 100644
--- a/tests/src/Interop/MarshalAPI/Copy/CopyDoubleArray.csproj
+++ b/tests/src/Interop/MarshalAPI/Copy/CopyDoubleArray.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CopyDoubleArray.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Copy/CopyInt16Array.csproj b/tests/src/Interop/MarshalAPI/Copy/CopyInt16Array.csproj
index c2a8723ef8..19b6146277 100644
--- a/tests/src/Interop/MarshalAPI/Copy/CopyInt16Array.csproj
+++ b/tests/src/Interop/MarshalAPI/Copy/CopyInt16Array.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CopyInt16Array.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Copy/CopyInt32Array.csproj b/tests/src/Interop/MarshalAPI/Copy/CopyInt32Array.csproj
index 81c43e7133..5adbd72142 100644
--- a/tests/src/Interop/MarshalAPI/Copy/CopyInt32Array.csproj
+++ b/tests/src/Interop/MarshalAPI/Copy/CopyInt32Array.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CopyInt32Array.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Copy/CopyInt64Array.csproj b/tests/src/Interop/MarshalAPI/Copy/CopyInt64Array.csproj
index d0726d2735..e6e7575e2e 100644
--- a/tests/src/Interop/MarshalAPI/Copy/CopyInt64Array.csproj
+++ b/tests/src/Interop/MarshalAPI/Copy/CopyInt64Array.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CopyInt64Array.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Copy/CopyIntPtrArray.csproj b/tests/src/Interop/MarshalAPI/Copy/CopyIntPtrArray.csproj
index 2959a9937d..260783c4c9 100644
--- a/tests/src/Interop/MarshalAPI/Copy/CopyIntPtrArray.csproj
+++ b/tests/src/Interop/MarshalAPI/Copy/CopyIntPtrArray.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CopyIntPtrArray.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Copy/CopySingleArray.csproj b/tests/src/Interop/MarshalAPI/Copy/CopySingleArray.csproj
index 8ae20ac068..d9c40c0230 100644
--- a/tests/src/Interop/MarshalAPI/Copy/CopySingleArray.csproj
+++ b/tests/src/Interop/MarshalAPI/Copy/CopySingleArray.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CopySingleArray.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/FunctionPointer/FunctionPtrTest.csproj b/tests/src/Interop/MarshalAPI/FunctionPointer/FunctionPtrTest.csproj
index 1e326ae4ae..68c33515b0 100644
--- a/tests/src/Interop/MarshalAPI/FunctionPointer/FunctionPtrTest.csproj
+++ b/tests/src/Interop/MarshalAPI/FunctionPointer/FunctionPtrTest.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="*.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/GetExceptionForHR/GetExceptionForHR.csproj b/tests/src/Interop/MarshalAPI/GetExceptionForHR/GetExceptionForHR.csproj
index 20a1a077b4..69840800dd 100644
--- a/tests/src/Interop/MarshalAPI/GetExceptionForHR/GetExceptionForHR.csproj
+++ b/tests/src/Interop/MarshalAPI/GetExceptionForHR/GetExceptionForHR.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="*.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/GetNativeVariantForObject/GetNativeVariantForObject.csproj b/tests/src/Interop/MarshalAPI/GetNativeVariantForObject/GetNativeVariantForObject.csproj
index c470b76894..c4737801f3 100644
--- a/tests/src/Interop/MarshalAPI/GetNativeVariantForObject/GetNativeVariantForObject.csproj
+++ b/tests/src/Interop/MarshalAPI/GetNativeVariantForObject/GetNativeVariantForObject.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="*.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/GetObjectForNativeVariant.csproj b/tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/GetObjectForNativeVariant.csproj
index 5bf4fa6f52..edce7d7199 100644
--- a/tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/GetObjectForNativeVariant.csproj
+++ b/tests/src/Interop/MarshalAPI/GetObjectForNativeVariant/GetObjectForNativeVariant.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="*.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/GetObjectsForNativeVariants.csproj b/tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/GetObjectsForNativeVariants.csproj
index d4d7fc372b..13560bdec1 100644
--- a/tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/GetObjectsForNativeVariants.csproj
+++ b/tests/src/Interop/MarshalAPI/GetObjectsForNativeVariants/GetObjectsForNativeVariants.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="*.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/IUnknown/IUnknownTest.csproj b/tests/src/Interop/MarshalAPI/IUnknown/IUnknownTest.csproj
index dbf5fdfde0..391f5ed57b 100644
--- a/tests/src/Interop/MarshalAPI/IUnknown/IUnknownTest.csproj
+++ b/tests/src/Interop/MarshalAPI/IUnknown/IUnknownTest.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="*.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Miscellaneous/AutoLayoutStructure.csproj b/tests/src/Interop/MarshalAPI/Miscellaneous/AutoLayoutStructure.csproj
index 166c6d84d8..e92554398a 100644
--- a/tests/src/Interop/MarshalAPI/Miscellaneous/AutoLayoutStructure.csproj
+++ b/tests/src/Interop/MarshalAPI/Miscellaneous/AutoLayoutStructure.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="AutoLayoutStructure.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/Miscellaneous/MarshalClassTests.csproj b/tests/src/Interop/MarshalAPI/Miscellaneous/MarshalClassTests.csproj
index 1919b56077..b1f8120690 100644
--- a/tests/src/Interop/MarshalAPI/Miscellaneous/MarshalClassTests.csproj
+++ b/tests/src/Interop/MarshalAPI/Miscellaneous/MarshalClassTests.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="MarshalClassTests.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.csproj b/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.csproj
index b59cb3eba6..89a27dac54 100644
--- a/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.csproj
+++ b/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="*.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj
index d6ef04307a..2e4d243f28 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteByte.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="ReadWriteByte.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj
index 5985d8e622..edc29b80e7 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt16.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="ReadWriteInt16.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj
index eb98e042ae..45312d8a26 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt32.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="ReadWriteInt32.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj
index d9883d55f2..dc9efe246b 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteInt64.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="ReadWriteInt64.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj
index 1afed52338..5080c029c5 100644
--- a/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj
+++ b/tests/src/Interop/MarshalAPI/ReadWrite/ReadWriteIntPtr.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="ReadWriteIntPtr.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />
diff --git a/tests/src/Interop/MarshalAPI/String/StringMarshalingTest.csproj b/tests/src/Interop/MarshalAPI/String/StringMarshalingTest.csproj
index d4528a574c..af3dfa0386 100644
--- a/tests/src/Interop/MarshalAPI/String/StringMarshalingTest.csproj
+++ b/tests/src/Interop/MarshalAPI/String/StringMarshalingTest.csproj
@@ -45,4 +45,4 @@
</ProjectReference>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
-</Project> \ No newline at end of file
+</Project>
diff --git a/tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/UnsafeAddrOfPinnedArrayElement.csproj b/tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/UnsafeAddrOfPinnedArrayElement.csproj
index 969137e3f5..9ebc16dae7 100644
--- a/tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/UnsafeAddrOfPinnedArrayElement.csproj
+++ b/tests/src/Interop/MarshalAPI/UnsafeAddrOfPinnedArrayElement/UnsafeAddrOfPinnedArrayElement.csproj
@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="*.cs" />
- <Compile Include="..\..\Common\Assertion.cs" />
+ <Compile Include="..\..\common\Assertion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="project.json" />