Stop treating test files as executable and fix encoding (dotnet/coreclr#11065)
authorYi Zhang (CLR) <yizhang82@users.noreply.github.com>
Wed, 19 Apr 2017 15:37:44 +0000 (08:37 -0700)
committerDan Moseley <danmose@microsoft.com>
Wed, 19 Apr 2017 15:37:44 +0000 (08:37 -0700)
* change encoding to UTF-8

* change line ending to UNIX

* remove executable attribute

Commit migrated from https://github.com/dotnet/coreclr/commit/e8414af792d6a2082d0cb1c5133344e9af0f2982

src/coreclr/tests/src/Interop/StringMarshalling/LPSTR/CMakeLists.txt [changed mode: 0755->0644]
src/coreclr/tests/src/Interop/StringMarshalling/LPSTR/LPSTRTest.cs [changed mode: 0755->0644]
src/coreclr/tests/src/Interop/StringMarshalling/LPSTR/LPSTRTest.csproj [changed mode: 0755->0644]
src/coreclr/tests/src/Interop/StringMarshalling/LPSTR/LPSTRTestNative.cpp [changed mode: 0755->0644]
src/coreclr/tests/src/Interop/StringMarshalling/LPSTR/PinvokeDef.cs [changed mode: 0755->0644]
src/coreclr/tests/src/Interop/StringMarshalling/LPTSTR/CMakeLists.txt [changed mode: 0755->0644]
src/coreclr/tests/src/Interop/StringMarshalling/LPTSTR/LPTSTRTest.cs [changed mode: 0755->0644]
src/coreclr/tests/src/Interop/StringMarshalling/LPTSTR/LPTSTRTestNative.cpp [changed mode: 0755->0644]
src/coreclr/tests/src/Interop/StringMarshalling/LPTSTR/LPTSTRTestPInvokeDef.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index aa3fd76..3d30d82
@@ -7,4 +7,4 @@ add_library (LPSTRTestNative SHARED ${SOURCES})
 target_link_libraries(LPSTRTestNative ${LINK_LIBRARIES_ADDITIONAL}) 
 
 # add the install targets
-install (TARGETS LPSTRTestNative DESTINATION bin)
\ No newline at end of file
+install (TARGETS LPSTRTestNative DESTINATION bin)
old mode 100755 (executable)
new mode 100644 (file)
index f704791..12cff70
Binary files a/src/coreclr/tests/src/Interop/StringMarshalling/LPSTR/LPSTRTest.cs and b/src/coreclr/tests/src/Interop/StringMarshalling/LPSTR/LPSTRTest.cs differ
old mode 100755 (executable)
new mode 100644 (file)
index 88a0330..d78ecb1
@@ -39,4 +39,4 @@
     </ProjectReference>
   </ItemGroup>
   <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
-</Project>
\ No newline at end of file
+</Project>
old mode 100755 (executable)
new mode 100644 (file)
index ce8455f..31d0eba
@@ -70,4 +70,4 @@ namespace NativeDefs
         [DllImport(NativeBinaryName)]
         public static extern bool ReverseP_MarshalStrB_Out(Del_MarshalStrB_Out d);
     }
-}
\ No newline at end of file
+}