Fix line endings (#17606)
authorSteve MacLean <sdmaclea.qdt@qualcommdatacenter.com>
Tue, 17 Apr 2018 15:42:13 +0000 (11:42 -0400)
committerJan Kotas <jkotas@microsoft.com>
Tue, 17 Apr 2018 15:42:13 +0000 (08:42 -0700)
tests/src/Interop/DllImportAttribute/FileExtensionProbe.cs

index df2090d..f1f7194 100644 (file)
@@ -1,95 +1,95 @@
-// Licensed to the .NET Foundation under one or more agreements.\r
-// The .NET Foundation licenses this file to you under the MIT license.\r
-// See the LICENSE file in the project root for more information.\r
-\r
-using System;\r
-using System.Text;\r
-using System.Security;\r
-using System.Runtime.InteropServices;\r
-using TestLibrary;\r
-\r
-public class FileExtensionProbe\r
-{\r
-    private static int s_failures = 0;\r
-\r
-    [DllImport("ExeFile.exe", CallingConvention = CallingConvention.Cdecl, EntryPoint = "Sum")]\r
-    public extern static int Exe_Sum(int a, int b);\r
-\r
-    [DllImport("DllFile.Probe", CallingConvention = CallingConvention.Cdecl, EntryPoint = "Sum")]\r
-    public extern static int FileNameContainDot_Sum(int a, int b);\r
-\r
-    [DllImport("DllFileProbe", CallingConvention = CallingConvention.Cdecl, EntryPoint = "Sum")]\r
-    public extern static int Simple_Sum(int a, int b);\r
-\r
-    private static void Simple()\r
-    {\r
-        try\r
-        {\r
-            if (5 != Simple_Sum(2, 3))\r
-            {\r
-                Console.WriteLine("Dll returns incorrectly result!");\r
-                s_failures++;\r
-            }\r
-        }\r
-        catch (Exception e)\r
-        {\r
-            Console.WriteLine("Dll throws unexpected exception: " + e.Message);\r
-            s_failures++;\r
-        }\r
-    }\r
-\r
-    private static void FileNameContainDot()\r
-    {\r
-        try\r
-        {\r
-            if (7 != FileNameContainDot_Sum(3, 4))\r
-            {\r
-                Console.WriteLine("FileNameContainDot returns incorrectly result!");\r
-                s_failures++;\r
-            }\r
-        }\r
-        catch (Exception e)\r
-        {\r
-            Console.WriteLine("FileNameContainDot throws unexpected exception: " + e.Message);\r
-            s_failures++;\r
-        }\r
-    }\r
-\r
-    private static void Exe()\r
-    {\r
-        try\r
-        {\r
-            if (9 != Exe_Sum(5, 4))\r
-            {\r
-                Console.WriteLine("Exe_Sum returns incorrectly result!");\r
-                s_failures++;\r
-            }\r
-        }\r
-        catch (Exception e)\r
-        {\r
-            Console.WriteLine("Exe_Sum throws unexpected exception: " + e.Message);\r
-            s_failures++;\r
-        }\r
-    }\r
-\r
-    public static int Main()\r
-    {\r
-        Simple();\r
-        FileNameContainDot();\r
-        if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))\r
-        {\r
-            Exe();\r
-        }\r
-\r
-        if (s_failures > 0)\r
-        {\r
-            Console.WriteLine("Failed!");\r
-            return 101;\r
-        }\r
-        else\r
-        {\r
-            Console.WriteLine("Succeed!");\r
-            return 100;\r
-        }\r
-    }\r
-}\r
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+using System.Text;
+using System.Security;
+using System.Runtime.InteropServices;
+using TestLibrary;
+
+public class FileExtensionProbe
+{
+    private static int s_failures = 0;
+
+    [DllImport("ExeFile.exe", CallingConvention = CallingConvention.Cdecl, EntryPoint = "Sum")]
+    public extern static int Exe_Sum(int a, int b);
+
+    [DllImport("DllFile.Probe", CallingConvention = CallingConvention.Cdecl, EntryPoint = "Sum")]
+    public extern static int FileNameContainDot_Sum(int a, int b);
+
+    [DllImport("DllFileProbe", CallingConvention = CallingConvention.Cdecl, EntryPoint = "Sum")]
+    public extern static int Simple_Sum(int a, int b);
+
+    private static void Simple()
+    {
+        try
+        {
+            if (5 != Simple_Sum(2, 3))
+            {
+                Console.WriteLine("Dll returns incorrectly result!");
+                s_failures++;
+            }
+        }
+        catch (Exception e)
+        {
+            Console.WriteLine("Dll throws unexpected exception: " + e.Message);
+            s_failures++;
+        }
+    }
+
+    private static void FileNameContainDot()
+    {
+        try
+        {
+            if (7 != FileNameContainDot_Sum(3, 4))
+            {
+                Console.WriteLine("FileNameContainDot returns incorrectly result!");
+                s_failures++;
+            }
+        }
+        catch (Exception e)
+        {
+            Console.WriteLine("FileNameContainDot throws unexpected exception: " + e.Message);
+            s_failures++;
+        }
+    }
+
+    private static void Exe()
+    {
+        try
+        {
+            if (9 != Exe_Sum(5, 4))
+            {
+                Console.WriteLine("Exe_Sum returns incorrectly result!");
+                s_failures++;
+            }
+        }
+        catch (Exception e)
+        {
+            Console.WriteLine("Exe_Sum throws unexpected exception: " + e.Message);
+            s_failures++;
+        }
+    }
+
+    public static int Main()
+    {
+        Simple();
+        FileNameContainDot();
+        if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
+        {
+            Exe();
+        }
+
+        if (s_failures > 0)
+        {
+            Console.WriteLine("Failed!");
+            return 101;
+        }
+        else
+        {
+            Console.WriteLine("Succeed!");
+            return 100;
+        }
+    }
+}